
MyForm.cpp
By:
GGMethos on
Mar 7th, 2014 | syntax:
C++ | size: 0.27 KB | hits: 31 | expires: Never
#include "MyForm.h"
using namespace System;
using namespace System::Windows::Forms;
[STAThread]
int main(array<String^>^args){
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
Lab3::MyForm form;
Application::Run(%form);
}