SetBrowserBars

Description:
Set which Browser Tool/Menu/Status Bars are visible in the Browser Window.

Format:
SetBrowserBars (integer Session ID, boolean MenuBar, boolean ToolBar, boolean StatusBar)

Parameters:

Integer

Session ID (optional)

Browser Occurrence Number.
First Browser occurrence is 1
Default value is 1

Boolean

MenuBar

Display Menu Bar.
TRUE – Display the Menu
FALSE – Do not display the Menu

Boolean

ToolBar

Display Tool Bar.
TRUE – Display the Menu
FALSE – Do not display the Menu

Boolean

StatusBar

Display Status Bar.
TRUE – Display the Menu
FALSE – Do not display the Menu

Return Value:

Boolean

Success Ind

Success Indicator.
TRUE – Browser Bars were set
FALSE – Browser Bars were not set

Usage:
Use this function to manage which bars are displayed in the Browser window for the specified Browser Occurence.

Example 1:
Open a Browser as invisible, Turn off the Menu and Tool Bars, position the Browser to the top, left, size the Browser, and make the Browser visible.

Integer intSess

IntSess = OpenBrowser(FALSE)
SetBrowserBars (intSess, FALSE, FALSE, TRUE)
SetBrowserPosition (intSess, 1, 1)
SetBrowserSize (intSess, 800, 1200)
SetBrowserVisible (intSess, TRUE)

Hosted by www.Geocities.ws

1