Project1.cpp
上传用户:lhxd_sz
上传日期:2014-10-02
资源大小:38814k
文件大小:1k
源码类别:

VC书籍

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. USERES("Project1.res");
  5. USEFORM("Unit1.cpp", Form1);
  6. //---------------------------------------------------------------------------
  7. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  8. {
  9.   try
  10.   {
  11.     Application->Initialize();
  12.     Application->Title="我的测试程序";
  13.     CreateMutex(NULL,False,"我的测试程序");
  14.     if(GetLastError()==ERROR_ALREADY_EXISTS)return 0;
  15.     Application->CreateForm(__classid(TForm1), &Form1);
  16.     Application->Run();
  17.   }
  18.   catch (Exception &exception)
  19.   {
  20.     Application->ShowException(&exception);
  21.   }
  22.   return 0;
  23. }
  24. //---------------------------------------------------------------------------