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

  1. //----------------------------------------------------------------------------
  2. #ifndef Auto1H
  3. #define Auto1H
  4. //----------------------------------------------------------------------------
  5. #include <OleAuto.hpp>
  6. #include <StdCtrls.hpp>
  7. #include <Dialogs.hpp>
  8. #include <Forms.hpp>
  9. #include <Controls.hpp>
  10. #include <Graphics.hpp>
  11. #include <Classes.hpp>
  12. #include <SysUtils.hpp>
  13. #include <Messages.hpp>
  14. #include <Windows.hpp>
  15. #include <System.hpp>
  16. //----------------------------------------------------------------------------
  17. class TForm1 : public TForm
  18. {
  19. __published:
  20.     TEdit *Edit1;
  21.     TButton *Button1;
  22.     TButton *Button2;
  23.     TButton *Button3;
  24.     TLabel *Label1;
  25.     void __fastcall Button1Click(TObject *Sender);
  26.     void __fastcall Button2Click(TObject *Sender);
  27.     void __fastcall Button3Click(TObject *Sender);
  28.     
  29. private: 
  30.     Variant AutoServer;
  31.  
  32. public:
  33.     virtual __fastcall TForm1(TComponent *Owner);
  34. };
  35. //----------------------------------------------------------------------------
  36. extern TForm1 *Form1;
  37. //----------------------------------------------------------------------------
  38. #endif    
  39.