//---------------------------------------------------------------------------- //Borland C++Builder //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved. //---------------------------------------------------------------------------- //--------------------------------------------------------------------------- #ifndef FrmviewsHPP #define FrmviewsHPP //--------------------------------------------------------------------------- #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 StdCtrlsHPP #include #endif #ifndef ExtCtrlsHPP #include #endif #ifndef DBCtrlsHPP #include #endif #ifndef ButtonsHPP #include #endif #ifndef DBGridsHPP #include #endif #ifndef GridsHPP #include #endif #ifndef DBTablesHPP #include #endif #ifndef DBHPP #include #endif //--------------------------------------------------------------------------- class TFrmViewDemo : public TForm { __published: TPanel *Panel1; TDBNavigator *DBNavigator; TSpeedButton *BtnShowEmployee; TSpeedButton *BtnShowPhoneList; TBitBtn *BitBtn1; TDataSource *VaryingTableSource; TTable *VaryingTable; TPanel *Panel2; TDBGrid *DBGrid1; void __fastcall BtnShowEmployeeClick(TObject *Sender); void __fastcall BtnShowPhoneListClick(TObject *Sender); void __fastcall FormShow(TObject *Sender); private: // private user declarations void ShowTable(char *); public: // public user declarations virtual __fastcall TFrmViewDemo(TComponent* Owner); }; //--------------------------------------------------------------------------- extern TFrmViewDemo *FrmViewDemo; //--------------------------------------------------------------------------- #endif