The easiest way to retrieve Web page source code.
The easiest way to retrieve Web page source code.
Rate The easiest way to retrieve Web page source code.
(1(1 Vote))
'and a Command button
'Name the Textbox "txtLink" (this is for entering the URL)
'If txtLink <> "" then get source code
Dim Source, Source1
Source1 = Inet1.OpenURL(Me.txtLink.Text)
If Source1 <> "" Then
RichTextBox1.Text = Source1
Me.Inet1.Cancel
Else
Source = MsgBox("Source code is not available.", vbInformation, "Source Code")
End If
The easiest way to retrieve Web page source code. Comments
No comments yet — be the first to post one!
Post a Comment