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

Usage

Visual Basic
Dim console As Console
Dim dialog As Form
Dim returnValue As DialogResult

returnValue = DialogHelper.ShowDialog(console, dialog)

Syntax

Visual Basic
Public Shared Function ShowDialog ( _
		console As Console, _
		dialog As Form _
) As DialogResult
C#
public static DialogResult ShowDialog (
		Console console,
		Form dialog
)
C++
public:
static DialogResult ShowDialog (
		Console^ console, 
		Form^ dialog
)
J#
public static DialogResult ShowDialog (
		Console console, 
		Form dialog
)
JScript
public static function ShowDialog (
		console : Console, 
		dialog : Form
) : DialogResult

Parameters

console
dialog

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