BBjAppConfig::setBBjApplicationName

Description

In BBj 12.0 and higher, this method sets the application name, which corresponds to the BBj -a parameter.

Syntax

Return Value

Method

void

setBBjApplicationName(string name)

Parameters

Variable

Description

name

The application name.

Return Values

None.

Remarks

This parameter sets the initial browser title. In a running BUI application, the browser title always reflects the active top level BBjWindow.

Example

rem ' BBjAppConfig::setBBjApplicationName

rem ' This sets the initial browser title.
rem ' The browser title is also set from BBjWindows.
admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
appConfig! = appServer!.makeEmptyAppConfig()
appConfig!.setBBjApplicationName("BUI Sample")
print "setBBjApplicationName: ",
print appConfig!.getBBjApplicationName()

See Also

BBjAPI

BBjAppConfig

BBjAppConfig::setBBjApplicationName

BBjAppServer

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.