none of this code is really working for me. I'm using VB through MS Access. I can bring up a webpage using this:

Code:
Public Sub Command0_Click()
Dim webBrowser1 As WebBrowser

    Set webBrowser1 = New WebBrowser
    Set webBrowser1 = CreateObject("InternetExplorer.Application")

    webBrowser1.Navigate "http://www.mywebpage.com"
    webBrowser1.Visible = True

End Sub
but i have no clue how to manipulate the data on the webpages. I want to be able to fill in forms and click buttons. I've tried using some of the codes from this thread but keep getting error messages. Can anyone help?