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 navigation bar

Status
Not open for further replies.

leyann

IS-IT--Management
Sep 16, 2002
29
FR
Hello,

Does anyone know how I could hide the right navigation bar of IE in an activeX control ?
I do something like that to retrieve the IE object and the set it in full screen mode.
But there is always a rigth navigation bar... I can't manage to hide it !



Dim WithEvents SWObj As SHDocVw.ShellWindows
Dim IEContainer As SHDocVw.InternetExplorer
Dim Obj As SHDocVw.InternetExplorer

Set SWObj = New SHDocVw.ShellWindows
For Each Obj In liste_windows_IE
...some test to retrieve the wanted object...
IEContainer = Obj
Next Obj

IEContainer.FullScreen = True
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top