Please help. I have never used vbscript and I'm trying to find the equivalent to the javascript window.find method that will work in an ie browswer window. I need to allow the user to click a button that will bring up the browser find window. Is this possible with vbscript? Any input would be appreciated. Thanks.
I don't believe its possible in VBScript without using the SendKeys method (which would reguire an .HTA). IE doesn;t support window.find. JavaScript does support the Text Range object that could be used. But a vbscript equivalent is currently beyond me. (vbscript is my second language)
as TNO pointed out, the TextRange object can be used to search the text of the page. If you want to use this method - instead of trying to call the browser's find window - this code