SetBrowserBars
Description:
Format:
SetBrowserBars (integer Session ID, boolean MenuBar, boolean ToolBar, boolean StatusBar)
|
Parameters: |
Integer |
Session ID (optional) |
Browser Occurrence Number. |
|
Boolean |
MenuBar |
Display Menu Bar. |
|
|
Boolean |
ToolBar |
Display Tool Bar. |
|
|
Boolean |
StatusBar |
Display Status Bar. |
|
|
Return Value: |
Boolean |
Success Ind |
Success Indicator. |
Usage:
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)