I have 2 forms in my project but when i run my app and call the other window i can't go back to my origional window before closing the one that was called. How to i make it so i can switch between them?
Printable View
I have 2 forms in my project but when i run my app and call the other window i can't go back to my origional window before closing the one that was called. How to i make it so i can switch between them?
It sounds like you are calling the second window as a modal window.
VB Code:
'Instead of calling Form2.ShowDialog 'Do this Form2.Show
probably because you used showdialog, and not show.
Thanks.