BBInvoker::runBrowser

Description

In BBj 9.0 and higher, this method runs the default browser asynchronously on the client machine.

Syntax

Return Value

Method

int

runBrowser(string url)

Parameters

Variable

Description

url

Specifies the URL to invoke.

Return Value

Returns the system return code.

Remarks

None.

Example

rem 'Demo on how to use the BBInvoker runBrowser method

use ::bbinvoker.bbj::BBInvoker
declare BBjNumber returnCode
declare BBjString url$
url$ = "https://www.basis.cloud"
returnCode = BBInvoker.runBrowser(url$)

See Also

BBj Object Syntax