home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / leadtools / ocx32.lt / About.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-09  |  1.2 KB  |  43 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef AboutH
  3. #define AboutH
  4. //----------------------------------------------------------------------------
  5. #include <vcl\System.hpp>
  6. #include <vcl\Windows.hpp>
  7. #include <vcl\SysUtils.hpp>
  8. #include <vcl\Classes.hpp>
  9. #include <vcl\Graphics.hpp>
  10. #include <vcl\Forms.hpp>
  11. #include <vcl\Controls.hpp>
  12. #include <vcl\StdCtrls.hpp>
  13. #include <vcl\Buttons.hpp>
  14. #include <vcl\ExtCtrls.hpp>
  15. #include <vcl\OleCtrls.hpp>
  16. #include "LTOCX10N.hpp"
  17. //----------------------------------------------------------------------------
  18. class TAboutBox : public TForm
  19. {
  20. __published:
  21.     TGroupBox *GroupBox1;
  22.     TLabel *Product;
  23.     TLabel *Level;
  24.     TLabel *Version;
  25.     TLabel *BDate;
  26.     TLabel *BTime;
  27.     TButton *Button1;
  28.     TLabel *Label3;
  29.     TImage *ProgramIcon;
  30.     TLabel *Label1;
  31.     TLabel *Label2;
  32.     TLEAD *Lead1;
  33.     void __fastcall FormCreate(TObject *Sender);
  34.     
  35. private:
  36. public:
  37.     virtual __fastcall TAboutBox(TComponent* AOwner);
  38. };
  39. //----------------------------------------------------------------------------
  40. extern TAboutBox *AboutBox;
  41. //----------------------------------------------------------------------------
  42. #endif    
  43.