How do i close a form so that it cannot be seen or used, all textboxes etc. are returned to their default values and it can be opened with Dim ... As New declaration. I tried this code:
but this only brought up the second form without closing the first. Help please anyone.
Nicko101
VB.NET:
Dim form1 As New Form1()
form1.Show()
Me.Close()
but this only brought up the second form without closing the first. Help please anyone.
Nicko101