N
nisgore
I'm trying to develop a macro that will let me log onto a website and
allow me to check several boxes on a form then submit it... having lots
of problems trying to figure out how to do simple things like set the
name into the username textbox, submit, or check checkboxes because I
can't really access the internet explorer objects... anyone know how to
do this????? Here's what I have so far... any help is much
appreciated, thanks.
references must be set to Microsoft Internet Controls
***********************************************************************
Sub Macro1()
Dim IExp As Object
Set IExp = CreateObject("InternetExplorer.Application")
IExp.Visible = True
IExp.navigate "http://www.salesgenie.com/"
IExp.Quit
End Sub
********************************************************************
allow me to check several boxes on a form then submit it... having lots
of problems trying to figure out how to do simple things like set the
name into the username textbox, submit, or check checkboxes because I
can't really access the internet explorer objects... anyone know how to
do this????? Here's what I have so far... any help is much
appreciated, thanks.
references must be set to Microsoft Internet Controls
***********************************************************************
Sub Macro1()
Dim IExp As Object
Set IExp = CreateObject("InternetExplorer.Application")
IExp.Visible = True
IExp.navigate "http://www.salesgenie.com/"
IExp.Quit
End Sub
********************************************************************