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

  1. //----------------------------------------------------------------------------
  2. #ifndef TabPgDlgH
  3. #define TabPgDlgH
  4. //----------------------------------------------------------------------------
  5. #include <vcl\ExtCtrls.hpp>
  6. #include <vcl\ComCtrls.hpp>
  7. #include <vcl\Buttons.hpp>
  8. #include <vcl\StdCtrls.hpp>
  9. #include <vcl\Controls.hpp>
  10. #include <vcl\Forms.hpp>
  11. #include <vcl\Graphics.hpp>
  12. #include <vcl\Classes.hpp>
  13. #include <vcl\SysUtils.hpp>
  14. #include <vcl\Windows.hpp>
  15. #include <vcl\System.hpp>
  16. //----------------------------------------------------------------------------
  17. class TPagesDlg : public TForm
  18. {
  19. __published:
  20.     TPanel *Panel1;
  21.     TPanel *Panel2;
  22.     TPageControl *PageControl1;
  23.     TTabSheet *TabSheet1;
  24.     TTabSheet *TabSheet2;
  25.     TTabSheet *TabSheet3;
  26.     TButton *OKBtn;
  27.     TButton *CancelBtn;
  28.     TButton *HelpBtn;
  29. private:
  30. public:
  31.     virtual __fastcall TPagesDlg(TComponent* AOwner);
  32. };
  33. //----------------------------------------------------------------------------
  34. extern TPagesDlg *PagesDlg;
  35. //----------------------------------------------------------------------------
  36. #endif    
  37.