source: OniTrainer/current/Unit6.pas@ 1127

Last change on this file since 1127 was 251, checked in by alloc, 17 years ago
File size: 944 bytes
Line 
1unit Unit6;
2
3interface
4
5uses
6 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
7 Dialogs, StdCtrls;
8
9type
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
30var
31 Form6: TForm6;
32
33implementation
34
35uses Unit1;
36
37{$R *.dfm}
38
39PROCEDURE TForm6.CloseQuery(Sender: TObject; var CanClose: Boolean);
40 BEGIN
41 Self.Visible:=False;
42 CanClose:=False;
43 END;
44
45PROCEDURE TForm6.Create(Sender: TObject);
46 BEGIN
47 label_about1.Caption:=label_about1.Caption+version;
48 END;
49
50end.
Note: See TracBrowser for help on using the repository browser.