Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. #include "Auto.h"
  2. #include "Send.h"
  3. #include "Saved.h"
  4.  
  5. using namespace NPE;
  6.  
  7.  
  8. void StartUpOtherWindows()
  9. {
  10.     using namespace NPE;
  11.     Application::EnableVisualStyles();
  12.     Application::SetCompatibleTextRenderingDefault(false);
  13.     Application::Run(gcnew Auto);
  14.     Application::Exit();
  15.  
  16.     Saved ^FormSaved;
  17.     Send ^FormSend;
  18.     FormSend = gcnew Send;
  19.     FormSaved = gcnew Saved;
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement