Displays a message box that is modal to the console. Namespace: Microsoft.ConfigurationManagement.AdminConsole
Assembly: Microsoft.ConfigurationManagement (in microsoft.configurationmanagement.dll)

Usage

Visual Basic
Dim console As Console
Dim text As String
Dim caption As String
Dim buttons As MessageBoxButtons
Dim icon As MessageBoxIcon
Dim defaultButton As MessageBoxDefaultButton
Dim options As MessageBoxOptions
Dim helpFilePath As String
Dim helpNavigator As HelpNavigator
Dim returnValue As DialogResult

returnValue = DialogHelper.ShowMessageBox(console, text, caption, buttons, icon, defaultButton, options, helpFilePath, helpNavigator)

Syntax

Visual Basic
Public Shared Function ShowMessageBox ( _
		console As Console, _
		text As String, _
		caption As String, _
		buttons As MessageBoxButtons, _
		icon As MessageBoxIcon, _
		defaultButton As MessageBoxDefaultButton, _
		options As MessageBoxOptions, _
		helpFilePath As String, _
		helpNavigator As HelpNavigator _
) As DialogResult
C#
public static DialogResult ShowMessageBox (
		Console console,
		string text,
		string caption,
		MessageBoxButtons buttons,
		MessageBoxIcon icon,
		MessageBoxDefaultButton defaultButton,
		MessageBoxOptions options,
		string helpFilePath,
		HelpNavigator helpNavigator
)
C++
public:
static DialogResult ShowMessageBox (
		Console^ console, 
		String^ text, 
		String^ caption, 
		MessageBoxButtons buttons, 
		MessageBoxIcon icon, 
		MessageBoxDefaultButton defaultButton, 
		MessageBoxOptions options, 
		String^ helpFilePath, 
		HelpNavigator helpNavigator
)
J#
public static DialogResult ShowMessageBox (
		Console console, 
		String text, 
		String caption, 
		MessageBoxButtons buttons, 
		MessageBoxIcon icon, 
		MessageBoxDefaultButton defaultButton, 
		MessageBoxOptions options, 
		String helpFilePath, 
		HelpNavigator helpNavigator
)
JScript
public static function ShowMessageBox (
		console : Console, 
		text : String, 
		caption : String, 
		buttons : MessageBoxButtons, 
		icon : MessageBoxIcon, 
		defaultButton : MessageBoxDefaultButton, 
		options : MessageBoxOptions, 
		helpFilePath : String, 
		helpNavigator : HelpNavigator
) : DialogResult

Parameters

console

[in] Microsoft.ManagementConsole.Advanced.Console object.

text

[in] Message box text.

caption

[in] Message box caption.

buttons

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

icon

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

defaultButton

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

options

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

helpFilePath

[in] Path to the Help file. See the HelpFilePath property.

helpNavigator

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

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