-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdoubleclicktimer.lfm
More file actions
69 lines (69 loc) · 1.2 KB
/
doubleclicktimer.lfm
File metadata and controls
69 lines (69 loc) · 1.2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
object timerForm: TtimerForm
Left = 1850
Height = 212
Top = 162
Width = 421
Caption = 'timerForm'
ClientHeight = 212
ClientWidth = 421
DesignTimePPI = 125
Position = poScreenCenter
LCLVersion = '4.99.0.0'
OnShow = FormShow
object Label2: TLabel
Left = 32
Height = 19
Top = 32
Width = 46
Caption = 'NAME'
end
object OKbutton: TButton
Left = 240
Height = 33
Top = 144
Width = 98
Caption = 'OK'
TabOrder = 2
OnClick = OKbuttonClick
end
object cancelButton: TButton
Left = 80
Height = 33
Top = 144
Width = 98
Caption = 'Cancel'
TabOrder = 3
OnClick = cancelButtonClick
end
object Label3: TLabel
Left = 16
Height = 19
Top = 88
Width = 60
Caption = 'PRESET'
end
object Label4: TLabel
Left = 336
Height = 19
Top = 88
Width = 74
Caption = 'x 100 mS'
end
object EditTimerName: TEdit
Left = 96
Height = 36
Top = 24
Width = 232
TabOrder = 0
OnKeyPress = EditTimerNameKeyPress
end
object EditPresetValue: TEdit
Left = 96
Height = 36
Top = 80
Width = 232
TabOrder = 1
Text = '100'
OnKeyPress = EditPresetValueKeyPress
end
end