home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / FRMTRIGG.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-12  |  1.7 KB  |  83 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef FrmtriggHPP
  3. #define FrmtriggHPP
  4. //---------------------------------------------------------------------------
  5. #include <vcl.h>
  6. #pragma hdrstop
  7. //---------------------------------------------------------------------------
  8. #ifndef WindowsHPP
  9. #include <windows.hpp>
  10. #endif
  11.  
  12. #ifndef MessagesHPP
  13. #include <messages.hpp>
  14. #endif
  15.  
  16. #ifndef SysUtilsHPP
  17. #include <sysutils.hpp>
  18. #endif
  19.  
  20. #ifndef ClassesHPP
  21. #include <classes.hpp>
  22. #endif
  23.  
  24. #ifndef GraphicsHPP
  25. #include <graphics.hpp>
  26. #endif
  27.  
  28. #ifndef ControlsHPP
  29. #include <controls.hpp>
  30. #endif
  31.  
  32. #ifndef FormsHPP
  33. #include <forms.hpp>
  34. #endif
  35.  
  36. #ifndef DialogsHPP
  37. #include <dialogs.hpp>
  38. #endif
  39.  
  40. #ifndef ExtCtrlsHPP
  41. #include <extctrls.hpp>
  42. #endif
  43.  
  44. #ifndef DBCtrlsHPP
  45. #include <dbctrls.hpp>
  46. #endif
  47.  
  48. #ifndef ButtonsHPP
  49. #include <buttons.hpp>
  50. #endif
  51.  
  52. #ifndef StdCtrlsHPP
  53. #include <stdctrls.hpp>
  54. #endif
  55.  
  56. #ifndef DBGridsHPP
  57. #include <dbgrids.hpp>
  58. #endif
  59.  
  60. #ifndef GridsHPP
  61. #include <grids.hpp>
  62. #endif
  63. //---------------------------------------------------------------------------
  64. class TFrmTriggerDemo : public TForm
  65. {
  66. __published:
  67.     TPanel *Panel1;
  68.     TDBNavigator *DBNavigator;
  69.     TBitBtn *BitBtn1;
  70.     TPanel *Panel2;
  71.     TDBGrid *DBGrid1;
  72.     TPanel *Panel3;
  73.     TDBGrid *DBGrid2;
  74.     void __fastcall FormShow(TObject *Sender);
  75. private:        // private user declarations
  76. public:         // public user declarations
  77.     virtual __fastcall TFrmTriggerDemo(TComponent* Owner);
  78. };
  79. //---------------------------------------------------------------------------
  80. extern TFrmTriggerDemo *FrmTriggerDemo;
  81. //---------------------------------------------------------------------------
  82. #endif
  83.