i was wondering. How does the applications such as Microsoft Word, Excel etc, create a new form with blank inside it, it is like we create another new form.
I tried the code:
this.Hide();
Form2 secondaryForm = new Form2();
secondaryForm.ShowDialog();
this.Close();
The above code is to create a new blank form (new form), but that is limited time only. What i was wondering is, how does the applications can make a thousand new blank form (new form) in such a unlimited time?
Note: what i mean by Unlimited time is: we can create a new form, the form will always be created, no matter how many times we are click the "new" button
Thanks in advance!