0
I’m in the middle of designing for college and I’m having a hard time.
The system has a Form
main and when I call the second Form
the main remains visible. How do I hide the form
main while the second is open?
The code to call the second form
and that:
F_CalcSimples F_CalcSimples = new F_CalcSimples();
F_CalcSimples.ShowDialog();
If anyone can help, thank you very much!
novo.ShowDialog();
and inseguida this.Show();
.– Augusto Vasques