guys. This is a VBS script that opens google, fills a form, and clicks a search button.

set ie = CreateObject("InternetExplorer.Application")

ie.navigate("www.google.com")

ie.visible = true

while ie.readystate <> 4
    wscript.sleep 100
WEnd

set fields = ie.document.getelementsbyname("q")
set buttons = ie.document.getelementsbyname("btnG")

fields(0).value = "some query"
buttons(0).click

ie.quit

Sub OnClickSub()
    MsgBox  "button clicked!", 0
End Sub

Obviously, buttons(0).click fires an onclick event of the button, which I somehow need to catch in my script, and provide it with some processing like launching OnClickSub().

Has anyone got any ideas how this should be done?

link|improve this question

I don't believe it is possible to attach a VBS Function/Sub to the click event of a button in a web page, I believe the best you can do is invoke whatever is attached to the click of that button. – Nate Mar 19 '10 at 17:26
feedback

1 Answer

up vote 1 down vote accepted

Use the GetRef function to obtain a pointer to your event handler and bind it to the onclick event, like this:

buttons(0).onclick = GetRef("OnClickSub")

(Apparently, attachEvent doesn't work when called from outside the web page.)

link|improve this answer
Thanks, that seems to work fine. – be here now Mar 20 '10 at 4:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.