F
Fisheye
Hi all,
I have a script that creates an instance of iexplore, making it a certain
height and width, without any menu bars, history or search panels displayed.
This works great on most IE's right up to IE7, has anyone seen how to make
it also work for IE?
The function is below.
Sub CreateIE()
Dim strIE
Set IE = CreateObject("InternetExplorer.Application")
strIE = "\\server\netlogon\logon.htm"
With IE
.navigate strIE
.resizable=0
.height=480
.width=285
.menubar=0
.toolbar=0
.statusBar=0
.visible=1
End With
Do while ie.Busy
' wait for page to load
Wscript.Sleep 100
Loop
End Sub
I have a script that creates an instance of iexplore, making it a certain
height and width, without any menu bars, history or search panels displayed.
This works great on most IE's right up to IE7, has anyone seen how to make
it also work for IE?
The function is below.
Sub CreateIE()
Dim strIE
Set IE = CreateObject("InternetExplorer.Application")
strIE = "\\server\netlogon\logon.htm"
With IE
.navigate strIE
.resizable=0
.height=480
.width=285
.menubar=0
.toolbar=0
.statusBar=0
.visible=1
End With
Do while ie.Busy
' wait for page to load
Wscript.Sleep 100
Loop
End Sub