Connecting Tech Pros Worldwide Forums | Help | Site Map

On-Click

Newbie
 
Join Date: Aug 2007
Posts: 3
#1: Aug 20 '07
Is there a way to open a web page,
select from three dynamic drop down menus,
check one checkbox and click go
with Vbscript?

kadghar's Avatar
Expert
 
Join Date: Apr 2007
Location: Mexico City
Posts: 1,155
#2: Aug 20 '07

re: On-Click


hi,

there are many ways, try with "CreateObject", something like:

Expand|Select|Wrap|Line Numbers
  1. Sub OpenTheScripts()
  2. Dim obj1 As Object
  3. Set obj1 = CreateObject("internetexplorer.application")
  4. obj1.Visible = True
  5. obj1.navigate "http://www.thescripts.com"
  6. End Sub
hope that helps
Reply