SetBrowserSize

Description:
Set the size of the Browser on the desktop.

Format:
SetBrowserSize (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

Integer

Height

Height of the Browser.

Integer

Width

Width of the Browser.

Return Value:

Boolean

Success Ind

Success Indicator.
TRUE – Browser size was set
FALSE – Browser size was not set

Usage:
Use this function to size the Browser on the Desktop 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