home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / VARARRAY.CPP < prev    next >
C/C++ Source or Header  |  1997-02-14  |  1KB  |  24 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //-----------------------------------------------------------------------
  6. //Borland C++Builder
  7. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  8. //---------------------------------------------------------------------------
  9. #include <vcl\vcl.h>
  10. #pragma hdrstop
  11. //---------------------------------------------------------------------------
  12. USERES("VARARRAY.res");
  13. USEFORM("MAIN.cpp", VariantArrayForm);
  14. //---------------------------------------------------------------------
  15. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  16. {
  17.     Application->Initialize();
  18.     Application->CreateForm(__classid(TVariantArrayForm), &VariantArrayForm);
  19.     Application->Run();
  20.  
  21.     return 0;
  22. }
  23. //---------------------------------------------------------------------------
  24.