123456 vba

M

Mr. Bluemaxx

I follow this code, but data should be from excel, as input, help... Option Explicit Const sSiteName = "Create a simple Contact form in HTML and CSS" 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 oHDoc = oIE.Document

Continue reading...
 

Similar threads

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