I have Form1 and Form2 in my project. Form2 is just a form with settings for Form1. What is the command to open the Form2 from the Form1 and also what’s the command to close it please?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to handle an event on Form1 that is raised as a result of user interaction. For example, if you have a “Settings” button that the user clicks in order to show the settings form (Form2), you should handle the
Clickevent for that button:In addition to the
Showmethod, you could also choose to use theShowDialogmethod. The difference is that the latter shows the form as a modal dialog, meaning that the user cannot interact with the other forms in your application until they close the modal form. This is the same way that a message box works. TheShowDialogmethod also returns a value indicating how the form was closed.When the user closes the settings form (by clicking the “X” in the title bar, for example), Windows will automatically take care of closing it.
If you want to close it yourself before the user asks to close it, you can call the form’s
Closemethod: