Open a headless browser window.

I want to open a browser window that does not have a toolbar, menubar, etc...

I currently use the following code to open an html page:

Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler " + file);

How do i disable e.g. the toolbar in that page, without using javascript window.open()

which opens another page.

I need theinitial page to be headless. (I use frames)

Thanks in advance.

[473 byte] By [anestikasa] at [2007-10-3 4:16:21]
# 1
iexplore.exe -k will open IE in kiosk mode, but the only way for the user to close it down is via Ctrl+W or ALT+F4 (I think)
YoGeea at 2007-7-14 22:17:54 > top of Java-index,Java Essentials,Java Programming...
# 2
Thank you,it worked, but it also hides the titlebar.I need it to be able to drag the window.is there anything else i can do?
anestikasa at 2007-7-14 22:17:54 > top of Java-index,Java Essentials,Java Programming...
# 3
> is there anything else i can do?Anyhing but asking at a Java programming forum, I'd say. Did you ask Microsoft?
CeciNEstPasUnProgrammeura at 2007-7-14 22:17:54 > top of Java-index,Java Essentials,Java Programming...
# 4
I don't need to open specifically IE, just any (the default) browser using javamybe someone has done it...?
anestikasa at 2007-7-14 22:17:54 > top of Java-index,Java Essentials,Java Programming...
# 5
This really isn't a java specific question, as it's tied to the browser itself. How you get this to work in IE will be different in Firefox.
bckrispia at 2007-7-14 22:17:54 > top of Java-index,Java Essentials,Java Programming...
# 6
Ok, I get it. ;-)Thanks for the replies.
anestikasa at 2007-7-14 22:17:54 > top of Java-index,Java Essentials,Java Programming...