VBA test macro

M

Mr. Bluemaxx

I am looking for help for the active page which loads after the submit button as need to enter the next data but its not working------------Option Explicit Const sSiteName = "https://www.help.com/" Private Sub CommandButton1_Click() Dim oIE As Object Dim oHDoc As HTMLDocument Set oIE = CreateObject("InternetExplorer.Application") ' Open Internet Explorer Browser and keep it visible. With oIE .Visible = True .Navigate sSiteName End With While oIE.ReadyState <> 4 DoEvents Wend Set o

Continue reading...
 

Similar threads

M
Replies
0
Views
74
Mr. Bluemaxx
M
M
Replies
0
Views
77
Mr. Bluemaxx
M
M
Replies
0
Views
69
Mr. Bluemaxx
M
Back
Top Bottom