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

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //----------------------------------------------------------------------------
  6. #ifndef CustViewHPP
  7. #define CustViewHPP
  8. //----------------------------------------------------------------------------
  9. #ifndef MenusHPP
  10. #include <Menus.hpp>
  11. #include <vcl\StdCtrls.hpp>
  12. #include <vcl\Controls.hpp>
  13. #include <vcl\Classes.hpp>
  14. #include <vcl\Buttons.hpp>
  15. #include <vcl\ComCtrls.hpp>
  16. #include <vcl\DBGrids.hpp>
  17. #include <vcl\Grids.hpp>
  18. #include <vcl\DBCtrls.hpp>
  19. #include <vcl\ExtCtrls.hpp>
  20. #endif
  21.  
  22. #ifndef ButtonsHPP
  23. #include <Buttons.hpp>
  24. #endif
  25.  
  26. #ifndef MaskHPP
  27. #include <Mask.hpp>
  28. #endif
  29.  
  30. #ifndef StdCtrlsHPP
  31. #include <StdCtrls.hpp>
  32. #endif
  33.  
  34. #ifndef ComCtrlsHPP
  35. #include <ComCtrls.hpp>
  36. #endif
  37.  
  38. #ifndef DBGridsHPP
  39. #include <DBGrids.hpp>
  40. #endif
  41.  
  42. #ifndef GridsHPP
  43. #include <Grids.hpp>
  44. #endif
  45.  
  46. #ifndef DBCtrlsHPP
  47. #include <DBCtrls.hpp>
  48. #endif
  49.  
  50. #ifndef ExtCtrlsHPP
  51. #include <ExtCtrls.hpp>
  52. #endif
  53.  
  54. #ifndef DialogsHPP
  55. #include <Dialogs.hpp>
  56. #endif
  57.  
  58. #ifndef FormsHPP
  59. #include <Forms.hpp>
  60. #endif
  61.  
  62. #ifndef ControlsHPP
  63. #include <Controls.hpp>
  64. #endif
  65.  
  66. #ifndef GraphicsHPP
  67. #include <Graphics.hpp>
  68. #endif
  69.  
  70. #ifndef ClassesHPP
  71. #include <Classes.hpp>
  72. #endif
  73.  
  74. #ifndef SysUtilsHPP
  75. #include <SysUtils.hpp>
  76. #endif
  77.  
  78. #ifndef MessagesHPP
  79. #include <Messages.hpp>
  80. #endif
  81.  
  82. #ifndef WindowsHPP
  83. #include <Windows.hpp>
  84. #endif
  85.  
  86. #ifndef SystemHPP
  87. #include <System.hpp>
  88. #endif
  89.  
  90. //-- type declarations -------------------------------------------------------
  91. class __declspec(delphiclass) TfmCustView;
  92. class TfmCustView : public TForm
  93. {
  94.     typedef TfmCustView ThisClass;
  95.     typedef TForm inherited;
  96.     
  97. __published:
  98.     TStatusBar *StatusBar1;
  99.     TDBGrid *DBGrid2;
  100.     TLabel *Label3;
  101.     TMainMenu *MainMenu1;
  102.     TMenuItem *About1;
  103.     TDBNavigator *DBNavigator1;
  104.     TLabel *Label2;
  105.     TRadioGroup *rgDataSet;
  106.     TSpeedButton *SpeedButton1;
  107.     TDBGrid *DBGrid1;
  108.     TGroupBox *GroupBox1;
  109.     TCheckBox *cbFilterOrders;
  110.     TLabel *Label1;
  111.     TEdit *Edit1;
  112.     void __fastcall rgDataSetClick(TObject *Sender);
  113.     void __fastcall SpeedButton1Click(TObject *Sender);
  114.     void __fastcall cbFilterOrdersClick(TObject *Sender);
  115.     void __fastcall About1Click(TObject *Sender);
  116.     void __fastcall Edit1Change(TObject *Sender);
  117.     void __fastcall DBGrid1Enter(TObject *Sender);
  118.     void __fastcall DBGrid2Enter(TObject *Sender);
  119.  
  120. public:
  121.     __fastcall virtual TfmCustView(TComponent *);
  122. };
  123.  
  124. //-- var, const, procedure ---------------------------------------------------
  125. extern TfmCustView *fmCustView;
  126. //-- end unit ----------------------------------------------------------------
  127. #endif    // CustView
  128.