HI all,
I am trying to create a window scheduler script for testing browser application. I Create a .vbs file & on clicking it , the browser is invoked & executes the script. but There is some error"Type Mismatch error 800A000D " in the script, which iam not able to debug it. Any input please.
The code is show below:
set ls_browser=createobject("internetexplorer.application")
ls_browser.visible=TRUE
ls_browser.navigate("www.gmail.com")
a=ls_browser.HWND
'msgbox a
Window("hwnd:="&a).Activate 'error in this line.
Window("hwnd:="&a).Minimize

ls_browser=NULL

Thanks in Advance