//---------------------------------------------------------------------------- //Borland C++Builder //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved. //---------------------------------------------------------------------------- //--------------------------------------------------------------------------- #ifndef FrmtransHPP #define FrmtransHPP //--------------------------------------------------------------------------- #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 ButtonsHPP #include #endif #ifndef DBCtrlsHPP #include #endif #ifndef StdCtrlsHPP #include #endif #ifndef DBGridsHPP #include #endif #ifndef GridsHPP #include #endif //--------------------------------------------------------------------------- class TFrmTransDemo : public TForm { __published: TPanel *Panel1; TSpeedButton *BtnUndoEdits; TSpeedButton *BtnCommitEdits; TDBNavigator *DBNavigator; TBitBtn *BitBtn1; TPanel *Panel2; TDBGrid *DBGrid1; void __fastcall FormHide(TObject *Sender); void __fastcall BtnCommitEditsClick(TObject *Sender); void __fastcall BtnUndoEditsClick(TObject *Sender); void __fastcall FormShow(TObject *Sender); private: // private user declarations public: // public user declarations virtual __fastcall TFrmTransDemo(TComponent* Owner); }; //--------------------------------------------------------------------------- extern TFrmTransDemo *FrmTransDemo; //--------------------------------------------------------------------------- #endif