#include "stdafx.h"
#include "Form2.h"
#include "Form1.h"
폼 1,2 가 있다고 할때 다음과 같이 띄울수가 있다.
System::Void button11_Click(System::Object^ sender, System::EventArgs^ e) {
Form2^ frm = gcnew Form2;
frm->Show(this);
}
'Coding > C++' 카테고리의 다른 글
C++ 링크라벨 (LinkLabel) 밑줄(Underline) 없애기 (0) | 2016.11.28 |
---|---|
C++ Visual Studio 2015 콘솔 실행시 창이 꺼질때 (2) | 2016.11.26 |