//---------------------------------------------------------------------------- #ifndef AboutBoxfrmH #define AboutBoxfrmH //---------------------------------------------------------------------------- #include #include #include #include #include #include #include #include #include #include #include //---------------------------------------------------------------------------- class TAboutBox : public TForm { __published: TPanel *Panel1; TImage *ProgramIcon; TLabel *ProductName; TLabel *Version; TLabel *Copyright; TButton *OKButton; TRichEdit *CreditAbout; TRichEdit *ModulesAbout; void __fastcall FormShow(TObject *Sender); private: public: virtual __fastcall TAboutBox(TComponent* AOwner); }; //---------------------------------------------------------------------------- extern TAboutBox *AboutBox; //---------------------------------------------------------------------------- #endif