-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathmain_sd.lfm
More file actions
executable file
·54 lines (54 loc) · 998 Bytes
/
main_sd.lfm
File metadata and controls
executable file
·54 lines (54 loc) · 998 Bytes
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
object Form1: TForm1
Left = 696
Height = 148
Top = 246
Width = 221
Caption = 'Simple Drums'
ClientHeight = 148
ClientWidth = 221
OnActivate = FormActivate
OnClose = FormClose
LCLVersion = '3.0.0.3'
object Button1: TButton
Left = 76
Height = 25
Top = 76
Width = 75
Caption = 'Play'
TabOrder = 0
OnClick = Button1Click
end
object Button2: TButton
Left = 76
Height = 25
Top = 112
Width = 75
Caption = 'Stop'
TabOrder = 1
OnClick = Button2Click
end
object Edit1: TEdit
Left = 84
Height = 27
Top = 38
Width = 56
Alignment = taCenter
TabOrder = 2
Text = '100'
end
object Label1: TLabel
Left = 72
Height = 17
Top = 6
Width = 90
Caption = 'Interval in ms'
ParentColor = False
end
object Timer1: TTimer
Enabled = False
Interval = 100
OnTimer = Timer1Timer
Left = 272
Top = 232
end
end