FndMessageBox Show Method (String, MessageBoxButtons, MessageBoxIcon, MessageBoxDefaultButton, String, Boolean , Int32).net Access Provider Documentation
Displays a message box with the specified text, caption, buttons, icon, and default button. It also displays a checkbox for which you can set and get the checked value. You can also specify a timeout value (in seconds). When the timeout occurs the default button (if set) is pressed.

Namespace: Ifs.Fnd.Windows.Forms
Assembly: Ifs.Fnd.Core (in Ifs.Fnd.Core.dll) Version: 4.0.0.0 (4.80.18.0)
Syntax

public static DialogResult Show(
	string message,
	MessageBoxButtons buttons,
	MessageBoxIcon icon,
	MessageBoxDefaultButton defaultButton,
	string checkBoxMessage,
	ref bool checkedValue,
	int timeout
)

Parameters

message
Type: OnlineSystem String
The message to display in the message box.
buttons
Type: OnlineSystem.Windows.Forms MessageBoxButtons
One of the System.Windows.Forms.MessageBoxButtons values that specifies which buttons to display in the message box.
icon
Type: OnlineSystem.Windows.Forms MessageBoxIcon
One of the System.Windows.Forms.MessageBoxIcon values that specifies which icon to display in the message box.
defaultButton
Type: OnlineSystem.Windows.Forms MessageBoxDefaultButton
One of the System.Windows.Forms.MessageBoxDefaultButton values that specifies the default button for the message box.
checkBoxMessage
Type: OnlineSystem String
The text to display in the checkbox of the message box.
checkedValue
Type: OnlineSystem Boolean 
A boolean, passed by reference, to set and get the value of the checkbox.
timeout
Type: OnlineSystem Int32
Value in seconds until the Acceptbutton (if set) is pressed automatically

Return Value

Type: OnlineDialogResult
One of the System.Windows.Forms.DialogResult values.
See Also