Advertisement
KoopaGaming

VS 2015 Form Application Code

Jun 20th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include "MyForm.h"
  2.  
  3. using namespace System;
  4. using namespace System::Windows::Forms;
  5.  
  6. [STAThread]//leave this as is
  7. void main(array<String^>^ args) {
  8. Application::EnableVisualStyles();
  9. Application::SetCompatibleTextRenderingDefault(false);
  10. Application::Run(gcnew EncryptDeccyptV3::MyForm);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement