I have two forms in my project: frmMain (the first default form) and frmStoreDetails.
From the starting form i go to the other one by executing the following code:
frmMain.hide
frmStoreDetails.Show
When i want to go back to the first form i execute the reverse code:
frmStoreDetails.Hide
frmMain.Show
The frmStoreDetails form becomes hidden but the frmMain form is not shown.
Why?
From the starting form i go to the other one by executing the following code:
frmMain.hide
frmStoreDetails.Show
When i want to go back to the first form i execute the reverse code:
frmStoreDetails.Hide
frmMain.Show
The frmStoreDetails form becomes hidden but the frmMain form is not shown.
Why?