home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 May / PCPlus May 1998=disk A.iso / full / CBUILDER / SAMS / SAMPLES / CHAP08 / COMBOTST.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-12  |  642 b   |  18 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl\vcl.h>
  3. #pragma hdrstop
  4. //---------------------------------------------------------------------------
  5. USEFORM("CTMain.cpp", MainForm);
  6. USERES("ComboTst.res");
  7. //---------------------------------------------------------------------
  8. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  9. {
  10.     Application->Initialize();
  11.     Application->Title = "ComboBox Test";
  12.   Application->CreateForm(__classid(TMainForm), &MainForm);
  13.     Application->Run();
  14.  
  15.     return 0;
  16. }
  17. //---------------------------------------------------------------------------
  18.