home *** CD-ROM | disk | FTP | other *** search
- 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
- ParentFont = True
- Position = poScreenCenter
- PixelsPerInch = 96
- TextHeight = 13
- | object NameLbl: TLabel
- Left = 80
- Top = 16
- Width = 177
- Height = 16
- Caption = '%s'
- Font.Color = clBtnText
- Font.Name = 'Default'
- Font.Height = -13
- Font.Style = [fsBold]
- ParentFont = False
- end
- object CopyrightLbl: TLabel
- Left = 56
- Top = 72
- Width = 155
- Height = 13
- Caption = 'Copyright (c) %s %s'
- 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
- |