I have 2 forms right now Form1 and Form2 the default setting start up is Form2. Inside Form 2 there was a button that will release the Form1 button using Form1.Show().
I have now the problem. What I want to do now is to close the Form2 without closing the Form1.
inside Form2 button:
Button_Click....
Form1.Show()
'End
End sub
is there any way that solves my problem?