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

  1. //----------------------------------------------------------------------------
  2. //Borland C++ Builder
  3. //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef FrmviewsHPP
  7. #define FrmviewsHPP
  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 StdCtrlsHPP
  45. #include <stdctrls.hpp>
  46. #endif
  47.  
  48. #ifndef ExtCtrlsHPP
  49. #include <extctrls.hpp>
  50. #endif
  51.  
  52. #ifndef DBCtrlsHPP
  53. #include <dbctrls.hpp>
  54. #endif
  55.  
  56. #ifndef ButtonsHPP
  57. #include <buttons.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. #ifndef DBTablesHPP
  69. #include <dbtables.hpp>
  70. #endif
  71.  
  72. #ifndef DBHPP
  73. #include <db.hpp>
  74. #endif
  75. //---------------------------------------------------------------------------
  76. class TFrmViewDemo : public TForm
  77. {
  78. __published:
  79.     TPanel *Panel1;
  80.     TDBNavigator *DBNavigator;
  81.     TSpeedButton *BtnShowEmployee;
  82.     TSpeedButton *BtnShowPhoneList;
  83.     TBitBtn *BitBtn1;
  84.     TDataSource *VaryingTableSource;
  85.     TTable *VaryingTable;
  86.     TPanel *Panel2;
  87.     TDBGrid *DBGrid1;
  88.     void __fastcall BtnShowEmployeeClick(TObject *Sender);
  89.     void __fastcall BtnShowPhoneListClick(TObject *Sender);
  90.     void __fastcall FormShow(TObject *Sender);
  91. private:        // private user declarations
  92.     void ShowTable(char *);
  93. public:         // public user declarations
  94.     virtual __fastcall TFrmViewDemo(TComponent* Owner);
  95. };
  96. //---------------------------------------------------------------------------
  97. extern TFrmViewDemo *FrmViewDemo;
  98. //---------------------------------------------------------------------------
  99. #endif
  100.