home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / zkuste / vbasic / Data / Utils / XZipComp.exe / XceedZip.Cab / F112437_CompressApp.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2000-03-24  |  642 b   |  22 lines

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