0

I am looking to fill some online form at the work. Currently i have this code but my question is how do i get the Data from the table to the web form.

Sub ninja()


Dim ie As Object
Set ie = CreateObject("internetexplorer.application")

ie.Visible = True

ie.Navigate "https://www.google.com/"

         While ie.Busy
            DoEvents
         Wend
' ESte Codigo abajo sirve para escribir en los blanco

ie.Document.getElementById("txtUserId").Value = Form![Alien]<---- Here

End Sub
Martijn Pieters
  • 1,048,767
  • 296
  • 4,058
  • 3,343

1 Answers1

0

MS Access is vba, so any vba-code to fill online form should be easy to modify to your needs:

VBA to Enter Data Online and Submit Form

Community
  • 1
  • 1
Ove Halseth
  • 431
  • 5
  • 13