CB
Clay Burch
Syncfusion Team
June 28, 2002 08:33 AM UTC
You use the ShowDialog methon of the Form class. The online help has this code snippet showing how you can use this methods....
Dim testDialog As New Form2()
' Show testDialog as a modal dialog and determine if DialogResult = OK.
If testDialog.ShowDialog(Me) = System.Windows.Forms.DialogResult.OK Then
' Read the contents of testDialog's TextBox.
result.Text = testDialog.TextBox1.Text
Else
result.Text = "Cancelled"
End If
VB
Vipul Bhatt
June 28, 2002 09:34 AM UTC
> You use the ShowDialog methon of the Form class. The online help has this code snippet showing how you can use this methods....
>
>
> Dim testDialog As New Form2()
>
> ' Show testDialog as a modal dialog and determine if DialogResult = OK.
> If testDialog.ShowDialog(Me) = System.Windows.Forms.DialogResult.OK Then
> ' Read the contents of testDialog's TextBox.
> result.Text = testDialog.TextBox1.Text
> Else
> result.Text = "Cancelled"
> End If
>
Yes got it.
Thanx Clay.