home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: Shareware for Win 95
/
Chip-Shareware-Win95.bin
/
ostatni
/
delphi
/
delphi1
/
winfo151.exe
/
FRMABOUT.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-09-06
|
817b
|
44 lines
unit Frmabout;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, ExtCtrls, StdCtrls, Buttons;
type
TfrmNmfiAbout = class(TForm)
Panel2: TPanel;
AppName: TLabel;
Copyright: TLabel;
EMail: TLabel;
Bevel1: TBevel;
BitBtn1: TBitBtn;
Label3: TLabel;
Bevel2: TBevel;
Label2: TLabel;
Label1: TLabel;
AppIcon: TImage;
Image1: TImage;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
frmNmfiAbout: TfrmNmfiAbout;
implementation
{$R *.DFM}
procedure TfrmNmfiAbout.FormCreate(Sender: TObject);
begin
AppName.Caption := Application.Title;
AppIcon.Picture.Icon := Application.Icon;
end;
end.