The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
CBClay 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
VBVipul BhattJune 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.