0
How to attach two windows?
In visual studio, I've made a 2 window form using c++ and I want the secoed form appear when I click a button, anyone can help?
2 Réponses
0
Try:
#include "nameofform.h"
nameofform f2 = new form();
F2.showdialog();
0
A Azi A It didn't work unfortunately