S
sgroenen
Guest
I'm programming a database programma.
Program have a main window with a menu. If they choose one window item then a new form will be open. Now I want that if that form is open they can not go back to the main form until they close the form where they work on. Can someone give me some ide how I can do that.
Private Sub SIPToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles SIPToolStripMenuItem.Click
SSP_FM.ShowDialog()
End Sub
For the moment I use this to open that new form. I want also that I get the focus on this and can't go back until SSP_FM is closed
thanks for the help
Continue reading...
Program have a main window with a menu. If they choose one window item then a new form will be open. Now I want that if that form is open they can not go back to the main form until they close the form where they work on. Can someone give me some ide how I can do that.
Private Sub SIPToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles SIPToolStripMenuItem.Click
SSP_FM.ShowDialog()
End Sub
For the moment I use this to open that new form. I want also that I get the focus on this and can't go back until SSP_FM is closed
thanks for the help
Continue reading...