I am wondering what the best practice is for closing one form and viewing another in a Windows Form app. I have been using Me.Hide() to close the form and SomeForm.Show() but I'm wondering if this is a good practice. Since there is data being changed that is linked to DataGridViews, if I just hide a form and then eventually Show it later on will the data be up to date? Does just hiding/showing really refresh a form
I'm also wondering in general how I can pass the screen location coordinates from one form to another so that the windows
My app is similar in function to a basic Windows Wizard, so you hit Next and one form goes away and another appears.
Start Free Trial