phreaky
Regular
How do I Unenable an active form?, I mean, there's a Form (Form1) active and when I open another Form(Form2) by an event I want to keep Form1 showed but unclickeable until Form2 has dissapeared.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim frm As New Form2()
frm.ShowDialog(Me)
End Sub