BBjAppConfig::getShowBrowserWarning

Description

In BBj 12.0 and higher, this method returns a boolean indicating whether a browser warning page should be shown the first time the user attempts to run a BUI application in Internet Explorer 8. The default value is true.

Syntax

Return Value

Method

boolean

getShowBrowserWarning()

Parameters

None.

Return Values

Returns a boolean indicating whether a browser warning page should be shown the first time the user attempts to load a BUI application in Internet Explorer 8.

Remarks

None.

Example

rem ' BBjAppConfig::getShowBrowserWarning

admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
appConfig! = appServer!.makeEmptyAppConfig()
print "getShowBrowserWarning: ",
print appConfig!.getShowBrowserWarning()
print "setShowBrowserWarning(false)"
appConfig!.setShowBrowserWarning(0)
print "getShowBrowserWarning: ",
print appConfig!.getShowBrowserWarning()
print "clearShowBrowserWarning()"
appConfig!.clearShowBrowserWarning()
print "getShowBrowserWarning: ",
print appConfig!.getShowBrowserWarning()

See Also

BBjAPI

BBjAppConfig

BBjAppConfig::setShowBrowserWarning

BBjAppServer

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