On-Click

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rpeterson84
    New Member
    • Aug 2007
    • 3

    On-Click

    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
    Recognized Expert Top Contributor
    • Apr 2007
    • 1302

    #2
    hi,

    there are many ways, try with "CreateObje ct", something like:

    [CODE=vb]Sub OpenTheScripts( )
    Dim obj1 As Object
    Set obj1 = CreateObject("i nternetexplorer .application")
    obj1.Visible = True
    obj1.navigate "http://www.thescripts. com"
    End Sub[/CODE]
    hope that helps

    Comment

    Working...