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

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