-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhelpunit.lfm
More file actions
51 lines (51 loc) · 1.16 KB
/
helpunit.lfm
File metadata and controls
51 lines (51 loc) · 1.16 KB
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
object HelpForm: THelpForm
Left = 406
Height = 295
Top = 213
Width = 429
ActiveControl = OkButton
Caption = 'Help'
ClientHeight = 295
ClientWidth = 429
Constraints.MaxHeight = 295
Constraints.MaxWidth = 429
Constraints.MinHeight = 295
Constraints.MinWidth = 429
Position = poDesktopCenter
LCLVersion = '1.6.0.4'
object HepMemo: TMemo
Left = 8
Height = 251
Top = 8
Width = 410
Lines.Strings = (
'This calculator has only Simple mode.'
''
'Main features:'
'-keyboard input (with Esc, Backspace, etc.);'
'-shortcuts and hotkeys;'
'-buffer (shows the inner memory buffer of the calc).'
''
'Shortcuts and hotkeys:'
'-Ctrl+C: copy the number;'
'-Crtl+V: paste the number (the existing number is deleted);'
'-Ctrl+Q: M-;'
'-Ctrl+P: M+;'
'-Ctrl+R: MR;'
'-Ctrl+L: MC;'
'-r: 1/x;'
'-F9: +/-.'
)
ReadOnly = True
TabOrder = 0
end
object OkButton: TButton
Left = 8
Height = 25
Top = 264
Width = 75
Caption = 'Ok'
OnClick = OkButtonClick
TabOrder = 1
end
end