How to switch between form in runtime
How to switch between form in runtime
Collapse
X
-
Tags: None
-
I have two forms when i debug first form opens and at that i can't access second form without closing
so i asked how to access between form in running timeComment
-
That was what I was going to say...Originally posted by FrinnyAdd a button to Form1 that opens Form2?
I also commonly put in a "diagnostic " menu option for all those types of choices. The diagnostic menu is only visible if the PC logged in use is my log in, that way it doesn't show on the client PC, but if I absolutely need it I can make a user for myself during on-site installation, do what I need to, then delete the user.Comment
-
as Frinny said....
Add a button in form 1 that opens the child form or a dialog form..with code something like this....
Form2.Show()Comment
Comment