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

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //----------------------------------------------------------------------------
  6. #ifndef AnotherH
  7. #define AnotherH
  8. //----------------------------------------------------------------------------
  9. #include <ExtCtrls.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 TForm2 : public TForm
  22. {
  23. __published:
  24.     TButton *Button1;
  25.     TLabel *Title;
  26.     TLabel *Comments;
  27.     TLabel *Copyright;
  28.     TLabel *Borland;
  29. public:
  30.     virtual __fastcall TForm2(TComponent *Owner);
  31. };
  32. //----------------------------------------------------------------------------
  33. extern TForm2 *Form2;
  34. //----------------------------------------------------------------------------
  35. #endif    
  36.