Pastebin launched a little side project called HostCabi.net, check it out ;-)Don't like ads? PRO users don't see any ads ;-)

MyForm.cpp

By: GGMethos on Mar 7th, 2014  |  syntax: C++  |  size: 0.27 KB  |  hits: 31  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #include "MyForm.h"
  2.  
  3. using namespace System;
  4. using namespace System::Windows::Forms;
  5. [STAThread]
  6. int main(array<String^>^args){
  7.         Application::EnableVisualStyles();
  8.         Application::SetCompatibleTextRenderingDefault(false);
  9.         Lab3::MyForm form;
  10.         Application::Run(%form);
  11. }