Hi.
Yes, this should be possible as I have done it using the following code:
Code:
Dim ie As Object, i_URL As String, GetNow As Date, WebAddress As String
Set ie = CreateObject("InternetExplorer.application")
If InStr(Me!ConsulteeID.Column(1), "www") > 1 Then
WebAddress = GetWebAddress
ie.Visible = True
ie.Navigate WebAddress
Do Until ie.ReadyState = 4
Loop
ie.Document.getElementById("email").Value = GetEmail
End If
NB: The 'Document.getElementById("email")' bit refers to a control on the web form called "email" so add any controls as required. Aslo, don't forget to add the correct webaddress.
NB: You will need to add the web address and the any control names with the req