nikki85
8 years agoContributor
how to create com component object
VBscript:
set Object=Wscript.CreateObject("Ade.Application.50")
Throw error: object required :"Wscript"
how to create com component object
thanks
Use Sys.OleObject:
set Object = Sys.OleObject("Ade.Application.50")
Hi nikki85,
Instead of using WScript.CreateObject modify your script to
set Object = CreateObject ("Ade.Application.50")
Hope this might help.
Regards,
Sanjay