Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Customizing New Browser Window Settings

Status
Not open for further replies.

Badd

Programmer
Aug 11, 2001
1
US
I am trying to make a window pop up with only cetrtain parts of the web browser window.
I know how to make the new window...and I have seen browser window customizations with other programming languages.
I would just like to know how and what the syntax is to customize the new browser window to include only parts of the standard browser.

an example of another programming language is:

<script><!--
//hide code from older Browsers
function vote () {vote=window.open('url goes here', '_blank', 'location=yes,menubar=yes,status=yes,resizable=yes,scrollbars=yes,toolbar=yes'[/red])} function cancel () {}if (confirm(&quot;message here&quot;)) {vote();} else cancel()
//end Hide code
//--></script>


I am trying to make something like the location not show..but the scroll bars will show...and I would like to do it with VBScript

Any help would be appreciated
 
here some code to help u...

<script language=&quot;vbscript&quot;>
function vote
vote = window.open (&quot;url goes here&quot;, &quot;_blank&quot;, &quot;location=yes,menubar=yes,status=yes,resizable=yes,scrollbars=yes,toolbar=yes&quot;)
end function
function calncel
'code here
end function

function confirm(msg)
dim vbOKCancel
vbOKCancel=1
response=msgbox(msg,vbOKCancel,&quot;put title here&quot;)
if response=1 then confirm=true 'if press ok
if response=2 then confirm=false 'if press cancel
end function

if confirm(&quot;message here&quot;)then
vote
else
cancel
end if

</script> ________

George
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top