BBjApplication::getShowBrowserWarning

Description

In BBj 12.0 and higher, this method returns whether to display a browser warning 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 ' BBjApplication::getShowBrowserWarning

admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
vector! = appServer!.getAllAppNames()
if (vector!.size()) then
    for i = 0 to vector!.size() - 1
        appName$ = vector!.get(i)
        app! = appServer!.getApplication(appName$)
        print appName$," getShowBrowserWarning: ",
        print app!.getShowBrowserWarning()
    next i
endif

See Also

BBjAPI

BBjAppConfig

BBjAppServer

BBjApplication

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