How I can create multiple forms?

Hello.How I can add multiple forms in my application and when the application is started to see 2 forms

Answer this question

How I can create multiple forms?

  • Virmundi

    In the OnLoad event of the first form, allocate a new instance of the second form and call its Show method and store it in a member variable. In the OnClose event, close the second form.

  • How I can create multiple forms?