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