-
Notifications
You must be signed in to change notification settings - Fork 3
/
About.pas
68 lines (58 loc) · 1.6 KB
/
About.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
unit About;
{$MODE Delphi}
interface
uses
LCLIntf, LCLType, LMessages, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls;
type
TfAbout = class(TForm)
Label2: TLabel;
Label4: TLabel;
Label5: TLabel;
lblVersion: TLabel;
Label6: TLabel;
Image1: TImage;
txtCredits: TMemo;
procedure FormShow(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
fAbout: TfAbout;
implementation
{$R *.lfm}
uses Globals;
procedure TfAbout.FormShow(Sender: TObject);
begin
lblVersion.Caption := 'Version ' + sG_AppVers;
with txtCredits.Lines do begin
Clear;
Add(
'Many thanks to Steve Stancliff for his WinRisk program, which I liked ' + 'and used so much, and which inspired TurboRisk.');
Add('');
Add('I want to thank all the many people who gave a contribution ' +
'to make TurboRisk a better program.');
Add('');
Add('A very special thanks to the following people for their invaluable help:');
Add('');
Add('Paul R. Brown');
Add('Julio Couce');
Add('Anthony Covey-Crump');
Add('Bobo Frogg');
Add('Alexander Gogava');
Add('Heitor Mansel');
Add('Martin Nehrdich');
Add('Eric Platel');
Add('Timothy Purkess');
Add('Rafal Smotrzyk');
Add('Chrystian Wurmser');
Add('');
Add('Nathan Scarbrough deserves a special mention, because of his enormous'
+ ' contribution to the development and testing of version 2.');
Add('');
Add('Thanks to RemObjects for their free Pascal Script interpreter.');
end;
end;
end.