Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

IE CreateObject ActiveX Download

Status
Not open for further replies.

pshelfo

IS-IT--Management
Apr 27, 2004
16
US
I have my IE 6 configured to automatically download signed activex controls without prompting the user. I have created the following script which launchs an internal HTML web site in a scaled back IE window. When the application is running in the IE window created by vbscript the ActiveX download does not occur. Anyone know why? Is the CreateObject function different?

' Vbscript to Load Prototype Application

'Variables
Dim objIE
Set objIE = WScript.CreateObject("InternetExplorer.Application")

'Internet Explorer Settings
objIE.AddressBar = False
objIE.FullScreen = False
objIE.MenuBar = False
objIE.Resizable = True
objIE.Silent = True
objIE.StatusBar = False
objIE.TheaterMode = False
objIE.ToolBar = True
objIE.Visible = 100
objIE.Visible = True

'Load Prototype
objIE.Navigate "
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top