See also:
NTier Windows Forms Framework Home
NTier Framework API reference

Show the form on a new thread, so that the progress animation is responsive. The returned form's Dispose is thread safe.

Namespace: NTier.Designer.Forms
Assembly: NTier.Designer.Forms (in NTier.Designer.Forms.dll) Version: 1.0.0.0

Syntax

C#
public static ProgressDialog ShowDialogOnNewThread(
	IWin32Window owner,
	string title,
	string caption
)
Visual Basic
Public Shared Function ShowDialogOnNewThread ( 
	owner As IWin32Window,
	title As String,
	caption As String
) As ProgressDialog
Visual C++
public:
static ProgressDialog^ ShowDialogOnNewThread(
	IWin32Window^ owner, 
	String^ title, 
	String^ caption
)

Parameters

owner
Type: System.Windows.Forms..::..IWin32Window
The window that owns the modal dialog box.
title
Type: System..::..String
The title to show in the border of the form.
caption
Type: System..::..String
The caption to show near the top of the form.

Return Value

Type: ProgressDialog
The progress dialog form that is shown from a new thread.

See Also