need help controlling IE from Excel...

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
***********************************************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top