mstoyanov7

cpp driver

Oct 9th, 2021
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #include "MyForm.h"
  2.  
  3.  
  4. using namespace System;
  5. using namespace System::Windows::Forms;
  6.  
  7. [STAThreadAttribute]
  8. void main(array<String^>^ args) {
  9.     Application::EnableVisualStyles();
  10.     Application::SetCompatibleTextRenderingDefault(false);
  11.     ProjectActivator::MyForm form;
  12.     Application::Run(% form);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment