home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / Runimage / Cbuilder4 / Examples / Apps / Ipcdemos / ABOUT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1999-01-26  |  1.0 KB  |  38 lines

  1. //Converting header file...
  2. //----------------------------------------------------------------------------
  3. #ifndef AboutHPP
  4. #define AboutHPP
  5. //----------------------------------------------------------------------------
  6. #include <Windows.hpp>
  7. #include <Classes.hpp>
  8. #include <Graphics.hpp>
  9. #include <Forms.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Buttons.hpp>
  13. #include <ExtCtrls.hpp>
  14. #include <SysUtils.hpp>
  15.  
  16. //-- type declarations -------------------------------------------------------
  17. class TAboutBox : public TForm
  18. {
  19.  
  20. __published:
  21.     TButton *OKButton;
  22.     TPanel *Panel1;
  23.     TImage *ProgramIcon;
  24.     TLabel *ProgramName;
  25.     TLabel *Copyright;
  26.     void __fastcall FormCreate(TObject *Sender);
  27.  
  28.  
  29. public:
  30.     __fastcall  virtual TAboutBox::TAboutBox(TComponent *Owner);
  31. };
  32.  
  33. //-- var, const, procedure ---------------------------------------------------
  34. extern void __fastcall ShowAboutBox(void);
  35. //-- end unit ----------------------------------------------------------------
  36. #endif    // About
  37.  
  38.