E
Ernie
I have the following code in VB6:
(Form1)
Private Sub Command1_Click()
Form2.Show 1
End Sub
(Form2)
Private Sub Command1_Click()
Form2.Hide
End Sub
What is the .NET equivalent of this in C#.NET or VB.NET
Thank you in advance
Ernie
(Form1)
Private Sub Command1_Click()
Form2.Show 1
End Sub
(Form2)
Private Sub Command1_Click()
Form2.Hide
End Sub
What is the .NET equivalent of this in C#.NET or VB.NET
Thank you in advance
Ernie