home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / form1.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2004-07-15  |  1.1 KB  |  27 lines

  1. //******************************************************************'
  2. //*                                                                *'
  3. //*                      TurboCAD for Windows                      *'
  4. //*                   Copyright (c) 1993 - 2004                    *'
  5. //*             International Microcomputer Software, Inc.         *'
  6. //*                            (IMSI)                              *'
  7. //*                      All rights reserved.                      *'
  8. //*                                                                *'
  9. //******************************************************************'
  10. #include "stdafx.h"
  11. #include "Form1.h"
  12. #include <windows.h>
  13.  
  14. using namespace TcGeometryVC_Net;
  15.  
  16. int APIENTRY _tWinMain(HINSTANCE hInstance,
  17.                      HINSTANCE hPrevInstance,
  18.                      LPTSTR    lpCmdLine,
  19.                      int       nCmdShow)
  20. {
  21.     System::Threading::Thread::CurrentThread->ApartmentState = System::Threading::ApartmentState::STA;
  22.     //Application::Run(new Form1());
  23.     System::Windows::Forms ::Application ::Run (new Form1());
  24.     //Run(new Form1());
  25.     return 0;
  26. }
  27.