home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 August
/
VPR9708A.ISO
/
D3TRIAL
/
INSTALL
/
DATA.Z
/
delphi32.exe
/
RCDATA
/
AXNEWSOURCE
next >
Wrap
Text File
|
1997-05-14
|
1KB
|
82 lines
unit %0:s;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls;
type
T%1:s = class(TForm)
CtlImage: TSpeedButton;
NameLbl: TLabel;
OkBtn: TButton;
CopyrightLbl: TLabel;
DescLbl: TLabel;
end;
procedure Show%1:s;
implementation
{$R *.DFM}
procedure Show%1:s;
begin
with T%1:s.Create(nil) do
try
ShowModal;
finally
Free;
end;
end;
end.
|object %0:s: T%0:s
Left = 200
Top = 108
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
AutoScroll = False
Caption = 'About'
ClientHeight = 127
ClientWidth = 267
Position = poScreenCenter
PixelsPerInch = 96
TextHeight = 13
| object NameLbl: TLabel
Left = 80
Top = 16
Width = 177
Height = 16
Caption = '%s'
ParentFont = True
end
object CopyrightLbl: TLabel
Left = 56
Top = 72
Width = 155
Height = 13
Caption = 'Copyright (c) 1997 Frank Borland'
end
object DescLbl: TLabel
Left = 80
Top = 34
Width = 53
Height = 13
Caption = 'Description'
end
object OkBtn: TButton
Left = 96
Top = 96
Width = 75
Height = 25
Cancel = True
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 0
end
end
|