Browse Subversion Repository
Annotation of /trunk/About.pas
Parent Directory
| Revision Log
Revision 2 -
( hide annotations)
( download)
( as text)
Sun Feb 22 14:38:06 2015 UTC
(9 years, 1 month ago)
by yamat0jp
File MIME type: text/x-pascal
File size: 469 byte(s)
| 1 |
yamat0jp |
2 |
unit About; |
| 2 |
|
|
|
| 3 |
|
|
interface |
| 4 |
|
|
|
| 5 |
|
|
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, |
| 6 |
|
|
Buttons, ExtCtrls; |
| 7 |
|
|
|
| 8 |
|
|
type |
| 9 |
|
|
TAboutBox = class(TForm) |
| 10 |
|
|
Panel1: TPanel; |
| 11 |
|
|
ProgramIcon: TImage; |
| 12 |
|
|
ProductName: TLabel; |
| 13 |
|
|
Version: TLabel; |
| 14 |
|
|
Copyright: TLabel; |
| 15 |
|
|
Comments: TLabel; |
| 16 |
|
|
OKButton: TButton; |
| 17 |
|
|
private |
| 18 |
|
|
{ Private éž } |
| 19 |
|
|
public |
| 20 |
|
|
{ Public éž } |
| 21 |
|
|
end; |
| 22 |
|
|
|
| 23 |
|
|
var |
| 24 |
|
|
AboutBox: TAboutBox; |
| 25 |
|
|
|
| 26 |
|
|
implementation |
| 27 |
|
|
|
| 28 |
|
|
{$R *.dfm} |
| 29 |
|
|
|
| 30 |
|
|
end. |
| 31 |
|
|
|
|