home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / FRMTRIGG.H < prev    next >
C/C++ Source or Header  |  1997-01-16  |  2KB  |  87 lines

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