InfoDialog

Note: This page includes content based on the F1 documentation for Centura development. It may be partially converted to support APF development, but should be regarded to be of uncertain actuality. It is provided as is. Eventually, it should be replaced by documentation available from within Visual Studio.

SalBoolean InfoDialog(SalString sTitle, SalString sMsg)

The InfoDialog method displays an information dialog where the user can view and copy the text, but not edit it.

Parameters

Name Description
SalString sTitle Window title of the dialog. This parameter should be a translatable constant.
SalString sMsg Text to be shown in the dialog.

Returns

The return value is Sys.IDOK.

Example

Constants
   String: TEXT_ShowHelpTitle = 'TEXT_ShowHelpTitle: Help Info'     
Actions
   ! Show the help text for this quick report
   Call InfoDialog( TEXT_ShowHelpTitle, sHelpText )
C# code
Int.InfoDialog(Int.TranslateConstant(Const.__FNDINF_ReportConditions), lsTmp);