SetBrowserVisible

Description:
Set the Visible property of the Browser.

Format:
SetBrowserVisble (integer Session ID (optional), integer Top, integer Left)

Parameters:

Integer

Session ID (optional)

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

Boolean

Visible

Visible property of the Browser.
TRUE – Browser is Visible
FALSE – Browser is Invisible

Return Value:

Boolean

Success Ind

Success Indicator.
TRUE – Browser visible property was set
FALSE – Browser visible property was not set

Usage:
Use this function to make the Browser Visible or Invisible 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