i want to know how we can swap two forms in vb????????
how to swap forms
Collapse
X
-
This will open up a new form called frmMyForm (replace that with your forms name)Originally posted by arundhutii want to know how we can swap two forms in vb????????
if you want to close the current form, THEN open the new one it would be:Code:Dim newform As New frmMyForm newForm.Show()
Hope that helpsCode:Dim newform As New frmMyForm Me.Close() Me.Dispose(True) newForm.Show()
Mark -
pls explain the Q in detailOriginally posted by arundhutii want to know how we can swap two forms in vb????????Comment
Comment