Rev | Line | |
---|
[251] | 1 | unit Unit6;
|
---|
| 2 |
|
---|
| 3 | interface
|
---|
| 4 |
|
---|
| 5 | uses
|
---|
| 6 | Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
---|
| 7 | Dialogs, StdCtrls;
|
---|
| 8 |
|
---|
| 9 | type
|
---|
| 10 | TForm6 = class(TForm)
|
---|
| 11 | GroupBox1: TGroupBox;
|
---|
| 12 | label_about1: TLabel;
|
---|
| 13 | Label1: TLabel;
|
---|
| 14 | Label2: TLabel;
|
---|
| 15 | Label3: TLabel;
|
---|
| 16 | Label4: TLabel;
|
---|
| 17 | Label5: TLabel;
|
---|
| 18 | Label6: TLabel;
|
---|
| 19 | Label7: TLabel;
|
---|
| 20 | GroupBox2: TGroupBox;
|
---|
| 21 | help: TMemo;
|
---|
| 22 | procedure Create(Sender: TObject);
|
---|
| 23 | PROCEDURE CloseQuery(Sender: TObject; var CanClose: Boolean);
|
---|
| 24 | private
|
---|
| 25 | { Private declarations }
|
---|
| 26 | public
|
---|
| 27 | { Public declarations }
|
---|
| 28 | end;
|
---|
| 29 |
|
---|
| 30 | var
|
---|
| 31 | Form6: TForm6;
|
---|
| 32 |
|
---|
| 33 | implementation
|
---|
| 34 |
|
---|
| 35 | uses Unit1;
|
---|
| 36 |
|
---|
| 37 | {$R *.dfm}
|
---|
| 38 |
|
---|
| 39 | PROCEDURE TForm6.CloseQuery(Sender: TObject; var CanClose: Boolean);
|
---|
| 40 | BEGIN
|
---|
| 41 | Self.Visible:=False;
|
---|
| 42 | CanClose:=False;
|
---|
| 43 | END;
|
---|
| 44 |
|
---|
| 45 | PROCEDURE TForm6.Create(Sender: TObject);
|
---|
| 46 | BEGIN
|
---|
| 47 | label_about1.Caption:=label_about1.Caption+version;
|
---|
| 48 | END;
|
---|
| 49 |
|
---|
| 50 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.