FndMessageBox Show Method (String, MessageBoxButtons, MessageBoxIcon, MessageBoxDefaultButton, String, Boolean ).net Access Provider Documentation
Displays a message box with the specified text, buttons, icon, and default button. It also displays a checkbox for which you can set and get the checked value.

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
)

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.

Return Value

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