Jul 17, 2003 #1 Pushkin Programmer May 28, 2002 22 BE How can I open a window directly without toolbars. It must open without toolbars right after clicking the link. So, my homepage (by matter of speach) must open without toolbars. Thanks, Pushkin
How can I open a window directly without toolbars. It must open without toolbars right after clicking the link. So, my homepage (by matter of speach) must open without toolbars. Thanks, Pushkin
Jul 17, 2003 #2 PradeepChauhan Programmer Feb 9, 2003 1 IN Hi, I hope following example will help you. sFeatures = "left=0, " sFeatures = sFeatures & "top=0, " sFeatures = sFeatures & "height=" & window.screen.availHeight - 29 & "," sFeatures = sFeatures & "width=" & window.screen.availWidth - 10 & "," sFeatures = sFeatures & "status=no,toolbar=no,menubar=no,location=no" window.open "wcSplash.asp", "E2K", sFeatures Upvote 0 Downvote
Hi, I hope following example will help you. sFeatures = "left=0, " sFeatures = sFeatures & "top=0, " sFeatures = sFeatures & "height=" & window.screen.availHeight - 29 & "," sFeatures = sFeatures & "width=" & window.screen.availWidth - 10 & "," sFeatures = sFeatures & "status=no,toolbar=no,menubar=no,location=no" window.open "wcSplash.asp", "E2K", sFeatures
Jul 17, 2003 Thread starter #3 Pushkin Programmer May 28, 2002 22 BE Where do I put this? In the head section or someplace else? I've really no idea When I put it in a link on another page (which redirects to my homepage) it opens a new window without toolbars. But I want it to open directly without toolbars (also when you enter the URL in your browser) Thanks Upvote 0 Downvote
Where do I put this? In the head section or someplace else? I've really no idea When I put it in a link on another page (which redirects to my homepage) it opens a new window without toolbars. But I want it to open directly without toolbars (also when you enter the URL in your browser) Thanks
Jul 17, 2003 #4 mrmovie Technical User Oct 2, 2002 3,094 GB Set appIE = CreateObject("InternetExplorer.Application" appIE.Visible = True appIE.Toolbar = 0 appIE.StatusBar = 0 appIE.navigate ("http://my.fsc.net/PortalB/DesktopDefault.aspx?tabid=8410&DatalistSI=-1&tabindex=7&mid=2174") Set appIE = Nothing in vbscript thats how you load ie without toolbars etc Upvote 0 Downvote
Set appIE = CreateObject("InternetExplorer.Application" appIE.Visible = True appIE.Toolbar = 0 appIE.StatusBar = 0 appIE.navigate ("http://my.fsc.net/PortalB/DesktopDefault.aspx?tabid=8410&DatalistSI=-1&tabindex=7&mid=2174") Set appIE = Nothing in vbscript thats how you load ie without toolbars etc
Jul 18, 2003 Thread starter #5 Pushkin Programmer May 28, 2002 22 BE Ok, thanks, Can I just put in the head-section of the html-script or not? Thanks Upvote 0 Downvote