home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / chplus / cpp / 3 / hra1.exe / earthpng.cpp < prev    next >
C/C++ Source or Header  |  1998-02-09  |  596b  |  22 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. USEFORM("EP.cpp", Form1);
  5. USERES("EarthPng.res");
  6. //---------------------------------------------------------------------------
  7. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  8. {
  9.     try
  10.     {
  11.         Application->Initialize();
  12.         Application->CreateForm(__classid(TForm1), &Form1);
  13.         Application->Run();
  14.     }
  15.     catch (Exception &exception)
  16.     {
  17.         Application->ShowException(&exception);
  18.     }
  19.     return 0;
  20. }
  21. //---------------------------------------------------------------------------
  22.