//---------------------------------------------------------------------------- //Borland C++Builder //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved. //---------------------------------------------------------------------------- //--------------------------------------------------------------------------- #ifndef FrmqryspHPP #define FrmqryspHPP //--------------------------------------------------------------------------- #include #include #include #include #include #include #include #include #include #include #include #include #pragma hdrstop //--------------------------------------------------------------------------- #ifndef WindowsHPP #include #endif #ifndef MessagesHPP #include #endif #ifndef SysUtilsHPP #include #endif #ifndef ClassesHPP #include #endif #ifndef GraphicsHPP #include #endif #ifndef ControlsHPP #include #endif #ifndef FormsHPP #include #endif #ifndef DialogsHPP #include #endif #ifndef ExtCtrlsHPP #include #endif #ifndef DBCtrlsHPP #include #endif #ifndef ButtonsHPP #include #endif #ifndef StdCtrlsHPP #include #endif #ifndef DBGridsHPP #include #endif #ifndef GridsHPP #include #endif #ifndef DBHPP #include #endif #ifndef DBTablesHPP #include #endif #ifndef ComCtrlsHPP #include #endif //--------------------------------------------------------------------------- class TFrmQueryProc : public TForm { __published: TPanel *Panel1; TDBNavigator *DBNavigator; TBitBtn *BitBtn1; TPanel *Panel2; TDBGrid *DBGrid1; TPanel *Panel3; TDBGrid *DBGrid2; TDataSource *EmployeeSource; TQuery *EmployeeProjectsQuery; TDataSource *EmployeeProjectsSource; TStatusBar *StatusBar1; void __fastcall FormHide(TObject *Sender); void __fastcall EmployeeSourceDataChange(TObject *Sender, TField *Field); void __fastcall FormShow(TObject *Sender); private: // private user declarations void WriteMsg(char *szWrite); public: // public user declarations virtual __fastcall TFrmQueryProc(TComponent* Owner); }; //--------------------------------------------------------------------------- extern TFrmQueryProc *FrmQueryProc; //--------------------------------------------------------------------------- #endif