G
Guest
I need to pass several values from a .NET Windows app into an EXISTING, OPEN
IE form.
I found the following code snipped for VB6 elsewhere on the forums--it's
close:
Dim IE As Object
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.navigate "http://www.kbb.com"
Do Until IE.readyState = 4
DoEvents
Loop
IE.Document.emailsignup.email.Value = "MYEMAIL"
But...
* I need to do with a .NET Windows app, not VB6
* The IE window will already be open (the user must sign on and display it
first--code cann't do that)
* Once items on the IE form have been filled, the IE Window needs to be
brought in focus so the user can fill in other form elements before
submitting.
Ideas?
THANKS!
IE form.
I found the following code snipped for VB6 elsewhere on the forums--it's
close:
Dim IE As Object
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.navigate "http://www.kbb.com"
Do Until IE.readyState = 4
DoEvents
Loop
IE.Document.emailsignup.email.Value = "MYEMAIL"
But...
* I need to do with a .NET Windows app, not VB6
* The IE window will already be open (the user must sign on and display it
first--code cann't do that)
* Once items on the IE form have been filled, the IE Window needs to be
brought in focus so the user can fill in other form elements before
submitting.
Ideas?
THANKS!