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...
Continue reading...