Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Command1_Click()
Dim doc As Object
WebBrowser7.Navigate url:=Text1.Value
Do
DoEvents
Loop Until Not WebBrowser7.Busy
Set doc = WebBrowser7.Document
Text3.Value = doc.All(0).innerHTML
End Sub