home *** CD-ROM | disk | FTP | other *** search
- unit MyAbout;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, ExtCtrls;
-
- type
- TMyAboutForm = class(TForm)
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- Label4: TLabel;
- Image1: TImage;
- Label5: TLabel;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- MyAboutForm: TMyAboutForm;
-
- implementation
-
- {$R *.DFM}
-
-
- end.
-