home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 February / Chip_2004-02_cd1.bin / program / delphi / navody / d56 / ec1vr2.exe / #setuppath# / CB6 / 2DTable / Main.h < prev    next >
Encoding:
C/C++ Source or Header  |  2003-12-09  |  2.2 KB  |  68 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef MainH
  3. #define MainH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\sysutils.hpp>
  6. #include <vcl\windows.hpp>
  7. #include <vcl\messages.hpp>
  8. #include <vcl\sysutils.hpp>
  9. #include <vcl\classes.hpp>
  10. #include <vcl\graphics.hpp>
  11. #include <vcl\controls.hpp>
  12. #include <vcl\forms.hpp>
  13. #include <vcl\dialogs.hpp>
  14. #include <vcl\stdctrls.hpp>
  15. #include <vcl\buttons.hpp>
  16. #include <vcl\extctrls.hpp>
  17. #include <vcl\menus.hpp>
  18. #include <Buttons.hpp>
  19. #include <Classes.hpp>
  20. #include <Controls.hpp>
  21. #include <ExtCtrls.hpp>
  22. #include <Menus.hpp>
  23. #include <DBGrids.hpp>
  24. #include <Grids.hpp>
  25. #include <DBCtrls.hpp>
  26. #include <StdCtrls.hpp>
  27. #include "Vrprev.h"
  28. #include "Vrprogr.h"
  29. #include "VRPROGR.h"
  30. //---------------------------------------------------------------------------
  31. class TMainForm : public TForm
  32. {
  33. __published:   
  34.     TMainMenu *MainMenu;
  35.     TMenuItem *PrintItem;
  36.     TMenuItem *PrintSetupItem;
  37.     TMenuItem *ExitItem;
  38.     TMenuItem *AboutItem;
  39.     TPanel *SpeedBar;
  40.     TSpeedButton *SpeedButton1;  // &Print...
  41.     TSpeedButton *SpeedButton2;  // P&rint Setup...
  42.     TSpeedButton *SpeedButton3;  // E&xit
  43.     TSpeedButton *SpeedButton4;  // &About...
  44.     TMenuItem *PrintPreviewItem;
  45.     TSpeedButton *SpeedButton5;
  46.     TPanel *CustPanel;
  47.     TLabel *CustLabel;
  48.     TDBGrid *CustGrid;
  49.     TSplitter *Splitter1;
  50.         TPanel *MethodsPanel;
  51.         TLabel *MethodsLabel;
  52.         TDBGrid *MethodsGrid;
  53.     TVRPreview *VRPreview;
  54.     TVRPrintProgress *VRPrintProgress;
  55.     void __fastcall PrintSetup(TObject *Sender);
  56.     void __fastcall Exit(TObject *Sender);
  57.     void __fastcall About(TObject *Sender);
  58.         void __fastcall PrintPreviewItemClick(TObject *Sender);
  59.         void __fastcall PrintItemClick(TObject *Sender);
  60. private:        // private user declarations
  61. public:         // public user declarations
  62.     virtual __fastcall TMainForm(TComponent* Owner);
  63. };
  64. //---------------------------------------------------------------------------
  65. extern PACKAGE TMainForm *MainForm;
  66. //---------------------------------------------------------------------------
  67. #endif
  68.