home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / AUTO1.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  1KB  |  43 lines

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