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

  1. //----------------------------------------------------------------------------
  2. //Borland C++ Builder
  3. //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef frmmainHPP
  7. #define frmmainHPP
  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 StdCtrlsHPP
  45. #include <stdctrls.hpp>
  46. #endif
  47. //---------------------------------------------------------------------------
  48. class TFrmLauncher : public TForm
  49. {
  50. __published:
  51.     TButton *BtnViews;
  52.     TButton *BtnTrigg;
  53.     TButton *BtnQrySP;
  54.     TButton *BtnExecSP;
  55.     TButton *BtnTrans;
  56.     TButton *BtnClose;
  57.     void __fastcall BtnCloseClick(TObject *Sender);
  58.     void __fastcall BtnTriggClick(TObject *Sender);
  59.     void __fastcall BtnQrySPClick(TObject *Sender);
  60.     void __fastcall BtnExecSPClick(TObject *Sender);
  61.     void __fastcall BtnTransClick(TObject *Sender);
  62.     void __fastcall BtnViewsClick(TObject *Sender);
  63. private:        // private user declarations
  64. public:         // public user declarations
  65.     virtual __fastcall TFrmLauncher(TComponent* Owner);
  66. };
  67. //---------------------------------------------------------------------------
  68. extern TFrmLauncher *FrmLauncher;
  69. //---------------------------------------------------------------------------
  70. #endif
  71.