M
Mike Edgewood
Check this out: [VS 2005 .NET 2.0]
Start a new project, drop a button on form1. Add a form (form2). In
the button1 click event on form1, add the following...
........
If My.Forms.Form2 Is Nothing Then
My.Forms.Form2.Show()
End If
........
Taken directly from sample code. This will only run once and Form2 can
never be shown again.
I like the idea here, but how do I get it to behave correctly?
Start a new project, drop a button on form1. Add a form (form2). In
the button1 click event on form1, add the following...
........
If My.Forms.Form2 Is Nothing Then
My.Forms.Form2.Show()
End If
........
Taken directly from sample code. This will only run once and Form2 can
never be shown again.
I like the idea here, but how do I get it to behave correctly?