BBjAppConfig::clearShowBrowserWarning

Description

In BBj 12.0 and higher, this method clears any application-specific setting and uses the server's default setting for whether to show a browser warning the first time the user attempts to run a BUI application in Internet Explorer 8.

Syntax

Return Value

Method

void

clearShowBrowserWarning()

Parameters

None.

Return Values

None.

Remarks

None.

Example

rem ' BBjAppConfig::clearShowBrowserWarning

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::getShowBrowserWarning

BBjAppConfig::setShowBrowserWarning

BBjAppServer

BBjAppServer::getShowBrowserWarning

BBjAppServer::setShowBrowserWarning

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