ASP configuration changes programatically
Is it possible to programatically disable the STANDARD TOOL BAR items from IE. I am trying to load a very big active X and was looking into increasing my real estate by removing the standard tool bar on the top of IE browser. Any feedback would be of great help.
Thank you
[281 byte] By [
vbquest] at [2007-11-15 17:38:06]

# 1 Re: ASP configuration changes programatically
Hi, this can be done easily with Javascript. Just use:
function OpenMe() {
OpenWin = this.open('http://www.dev-archive.com/', 'MyWindow', 'toolbar=0,menubar=0,directories=0,location=0,scrollbars=0,status=0,resizable=0,width=640,height=480,left=0,top=0');
}
This will turn off everything in ie, and leaves the control box on Netscape and Opera. Just put a "1" on whatever you want on. Note if you copy this code, there is no line wraping on the openwin line!!
Hope this helps!