Displays a non-modal message box. Namespace: Microsoft.ConfigurationManagement.AdminConsole
Assembly: Microsoft.ConfigurationManagement (in microsoft.configurationmanagement.dll)

Usage

Visual Basic
Dim text As String
Dim buttons As MessageBoxButtons
Dim icon As MessageBoxIcon
Dim defaultButton As MessageBoxDefaultButton
Dim helpTopicId As String
Dim returnValue As DialogResult

returnValue = DialogHelper.ShowMessageBox(text, buttons, icon, defaultButton, helpTopicId)

Syntax

Visual Basic
Public Shared Function ShowMessageBox ( _
		text As String, _
		buttons As MessageBoxButtons, _
		icon As MessageBoxIcon, _
		defaultButton As MessageBoxDefaultButton, _
		helpTopicId As String _
) As DialogResult
C#
public static DialogResult ShowMessageBox (
		string text,
		MessageBoxButtons buttons,
		MessageBoxIcon icon,
		MessageBoxDefaultButton defaultButton,
		string helpTopicId
)
C++
public:
static DialogResult ShowMessageBox (
		String^ text, 
		MessageBoxButtons buttons, 
		MessageBoxIcon icon, 
		MessageBoxDefaultButton defaultButton, 
		String^ helpTopicId
)
J#
public static DialogResult ShowMessageBox (
		String text, 
		MessageBoxButtons buttons, 
		MessageBoxIcon icon, 
		MessageBoxDefaultButton defaultButton, 
		String helpTopicId
)
JScript
public static function ShowMessageBox (
		text : String, 
		buttons : MessageBoxButtons, 
		icon : MessageBoxIcon, 
		defaultButton : MessageBoxDefaultButton, 
		helpTopicId : String
) : DialogResult

Parameters

text

[in] Message box text.

buttons

[in] System.Windows.Forms.MessageBoxButtons object.

icon

[in] System.Windows.Forms.MessageBoxIcon object.

defaultButton

[in] System.Windows.Forms.MessageBoxDefaultButton object.

helpTopicId

[in] Help topic ID.

Return Value

System.Windows.Forms.DialogResult enumeration value.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2003,Windows Vista

See Also