//---------------------------------------------------------------------------- //Borland C++Builder //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved. //---------------------------------------------------------------------------- //--------------------------------------------------------------------------- #ifndef frmmainHPP #define frmmainHPP //--------------------------------------------------------------------------- #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 //--------------------------------------------------------------------------- class TFrmLauncher : public TForm { __published: TButton *BtnViews; TButton *BtnTrigg; TButton *BtnQrySP; TButton *BtnExecSP; TButton *BtnTrans; TButton *BtnClose; void __fastcall BtnCloseClick(TObject *Sender); void __fastcall BtnTriggClick(TObject *Sender); void __fastcall BtnQrySPClick(TObject *Sender); void __fastcall BtnExecSPClick(TObject *Sender); void __fastcall BtnTransClick(TObject *Sender); void __fastcall BtnViewsClick(TObject *Sender); private: // private user declarations public: // public user declarations virtual __fastcall TFrmLauncher(TComponent* Owner); }; //--------------------------------------------------------------------------- extern TFrmLauncher *FrmLauncher; //--------------------------------------------------------------------------- #endif