I have put the code for : About^ about_form = gcnew About();
about_form->ShowDialog(this);
but I don't know how to bind it to the other form and I don't know where to create the new form so it opens a new window when I press the menu button. Gonna test the filter later though. Thanks for the reply.
I assume you have a main form with a menu or is it just a button? Anyway when you double click it VS will create an event handler. In this handler you create and show the second form as I showed above.
In the main form you also need to include About.h or however the second form is called.