Hi,
I created the script for opening the IE and launching the required website, I used VBSCRIPT which is as below
sub objectIE(URL)
dim IE
set IE=CreateObject("InternetExplorer.Application")
IE.visible=1
IE.navigate URL
do while IE.busy
loop
end sub
Passing the required URL through script,
The script was running fine for sometime and now it started giving the error which shows
"ActiveX component cant create object: " INternet Explorer application"
Iam unable to run the script now.
Can u give some soggestions to overcome it.
Thanking yoou.
Regards
Ashok