-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdoubleclickbit.lfm
More file actions
72 lines (72 loc) · 1.31 KB
/
doubleclickbit.lfm
File metadata and controls
72 lines (72 loc) · 1.31 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
70
71
72
object bitForm: TbitForm
Left = 792
Height = 425
Top = 330
Width = 336
Caption = 'Contact'
ClientHeight = 425
ClientWidth = 336
DesignTimePPI = 125
OnActivate = FormActivate
object nameField: TEdit
Left = 24
Height = 36
Top = 32
Width = 288
TabOrder = 0
OnKeyPress = nameFieldKeyPress
end
object Label1: TLabel
Left = 24
Height = 19
Top = 8
Width = 47
Caption = 'Name'
end
object contactListBox: TListBox
Left = 24
Height = 170
Top = 104
Width = 288
ItemHeight = 0
TabOrder = 1
TopIndex = -1
OnClick = contactListBoxClick
OnDblClick = contactListBoxDblClick
OnKeyPress = contactListBoxKeyPress
end
object Label2: TLabel
Left = 24
Height = 19
Top = 80
Width = 53
Caption = 'Bit List'
end
object OKbutton: TButton
Left = 184
Height = 33
Top = 344
Width = 98
Caption = 'OK'
TabOrder = 2
OnClick = OKbuttonClick
end
object cancelButton: TButton
Left = 48
Height = 33
Top = 344
Width = 98
Caption = 'Cancel'
TabOrder = 3
OnClick = cancelButtonClick
end
object CheckBoxSystemBit: TCheckBox
Left = 24
Height = 23
Top = 280
Width = 110
Caption = 'System Bit'
TabOrder = 4
OnChange = CheckBoxSystemBitChange
end
end