Opening IE without menus or address bar

mellomel70

Member
Joined
May 10, 2010
Messages
8
Programming Experience
10+
Does anyone know how to open IE7 from within a VB.Net Windows Application without menus or an address bar? I'm currently opening IE like this:

VB.NET:
Dim myProcess As New Process()
myProcess.StartInfo.FileName = "iexplore.exe"
myProcess.StartInfo.Arguments = "http://kronos/wfc/logon"
myProcess.Start()

I've tried myProcess.StartInfo.WindowStyle, but that just has options for Maximized, Minimized, etc., nothing as granular as opening without address bars or menus. I'm looking for something along the lines of the javascript command

VB.NET:
window.open("http://mysite",toolbar=no,menubar=no);

Thanks much!
 
Yes, thanks, I know about Kiosk mode, but I don't want to open in Kiosk mode. My users would freak out. I need a window that allows you to close it easily, but that doesn't have menus or an address bar.

Thanks, though!
 
Just make a form and put a web browser control on it, the web browser control uses IE anyway, and then you can make the window however you like.
 
Back
Top