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

  1. //----------------------------------------------------------------------------
  2. //Borland C++ Builder
  3. //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef FrmqryspHPP
  7. #define FrmqryspHPP
  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. #ifndef DBHPP
  69. #include <db.hpp>
  70. #endif
  71.  
  72. #ifndef DBTablesHPP
  73. #include <dbtables.hpp>
  74. #endif
  75.  
  76. #ifndef ComCtrlsHPP
  77. #include <comctrls.hpp>
  78. #endif
  79. //---------------------------------------------------------------------------
  80. class TFrmQueryProc : public TForm
  81. {
  82. __published:
  83.     TPanel *Panel1;
  84.     TDBNavigator *DBNavigator;
  85.     TBitBtn *BitBtn1;
  86.     TPanel *Panel2;
  87.     TDBGrid *DBGrid1;
  88.     TPanel *Panel3;
  89.     TDBGrid *DBGrid2;
  90.     TDataSource *EmployeeSource;
  91.     TQuery *EmployeeProjectsQuery;
  92.     TDataSource *EmployeeProjectsSource;
  93.     TStatusBar *StatusBar1;
  94.     void __fastcall FormHide(TObject *Sender);
  95.     void __fastcall EmployeeSourceDataChange(TObject *Sender,
  96.       TField *Field);
  97.     void __fastcall FormShow(TObject *Sender);
  98. private:        // private user declarations
  99.     void WriteMsg(char *szWrite);
  100. public:         // public user declarations
  101.     virtual __fastcall TFrmQueryProc(TComponent* Owner);
  102. };
  103. //---------------------------------------------------------------------------
  104. extern TFrmQueryProc *FrmQueryProc;
  105. //---------------------------------------------------------------------------
  106. #endif
  107.