-2
Option Explicit
Public Sub save_url_contents_as_text()
Dim MyUrl As String
Dim MyFile As Object 'store the text file here
Dim tempstring As String
MyUrl = "www.AnythingIWantToPutHere"
'I want your help here. Something Like a function
tempstring = geturltext(MyUrl)
'I want to save the URL text contents here
MyFile = tempstring
End Sub
こんにちはみんな、私はほとんどのためのVBプログラミングにしてきました私は現在作業している場所のニーズのために、私はいつも私がstackoverflowで求めている最高の答えを見つけることができました。あなたの助けに喜んで。 – KoyKoy
このコードスニペットの使用目的を指定してください。あなたが直面している正確な問題は何かを達成しようとしているものです。 – Bamieh
[URLコンテンツを直接ディスクに保存せずに文字列(VB6)にダウンロード]の可能な複製(http://stackoverflow.com/questions/10968946/download-url-contents-directly-into-string-vb6-without-saving- – OldBoyCoder