I have Created a Form1. On this Form I have a button that opens Form2 like this:
Form2 ^form2 = gcnew Form2;
form2->Show();
Now if I click on Form1, Form2 will "dissapear" under Form1.
What I wonder is, if it is possible to click on Form1, but stil,l Form2 will be seen.
Example will be if I have some buttons on Form1, I don´t want Form2 to "dissapear" under Form1 if I press these buttons.