Not a Member Yet,
Click here to Register

ID: 370
Viewed: 3510
Added: Aug 19, 2002
Version:
Snippet uploaded by: snippet
Written By: Unknown
Demo: Sorry, no demo



User Rated at: 0 Stars
Rate This:

Thank you for your vote. Please wait...

It appears you already voted for this snippet

It appears your vote value was empty

how to save a webpage and put it in a text box.

Highlight all by clicking in box
<!---Declaration--->
none

Highlight All
<!---Code--->
'here I copy it to a file and then display it in a textbox to boot

Private Sub Command1_Click()

Dim myFile As String
myFile = "C:my documentsmyfile.txt"
Dim myString As String

'surf to the webpage and read it's content into myString
Open myFile For Output As #1

myString = Inet1.OpenURL("http://forums.vb-world.net/showthread.php?s=&threadid=74797", icString)
ReturnStr = Inet1.GetChunk(2048, icString)

Do While Len(ReturnStr) <> 0
DoEvents
myString = myString & ReturnStr
ReturnStr = Inet1.GetChunk(2048, icString)
Loop

'save the content of the webpage source to "C:my documentsmyfile.txt"
Write #1, myString


'clear the textbox
Text1.Text = ""

Text1 = myString

End Sub;


No Comments to show

Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Replying to a Comment...


Adding your comment. Please wait...

Thanks for adding your comment!. After further review it will be added.

There was a problem adding your comment. Please try again.

Please complete all the fields in the form before sending.

© 2002 - 2024 snippetlibrary.com All Rights Reserved. Conditions
Do NOT follow this link or you will be banned from the site!