home *** CD-ROM | disk | FTP | other *** search
/ CD/PC Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / SWITCH1.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-05  |  949 b   |  30 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef Switch1H
  3. #define Switch1H
  4. //----------------------------------------------------------------------------
  5. #include <StdCtrls.hpp>
  6. #include <Dialogs.hpp>
  7. #include <Forms.hpp>
  8. #include <Controls.hpp>
  9. #include <Graphics.hpp>
  10. #include <Classes.hpp>
  11. #include <SysUtils.hpp>
  12. #include <Messages.hpp>
  13. #include <Windows.hpp>
  14. #include <System.hpp>
  15. //----------------------------------------------------------------------------
  16. class TForm1 : public TForm
  17. {
  18. __published:
  19.     TButton *Button1;
  20.     void __fastcall Button1Click(TObject *Sender);
  21.     void __fastcall Button1Click2(TObject *Sender);
  22. private:
  23. public:
  24.     virtual __fastcall TForm1(TComponent *Owner);
  25. };
  26. //----------------------------------------------------------------------------
  27. extern TForm1 *Form1;
  28. //----------------------------------------------------------------------------
  29. #endif    
  30.