-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpu_devlist.lfm
118 lines (118 loc) · 2.19 KB
/
pu_devlist.lfm
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
object f_devlist: Tf_devlist
Left = 387
Height = 347
Top = 160
Width = 250
ActiveControl = TreeView1
Caption = 'Available drivers'
ClientHeight = 347
ClientWidth = 250
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
object Panel1: TPanel
Left = 0
Height = 47
Top = 300
Width = 250
Align = alBottom
ClientHeight = 47
ClientWidth = 250
ParentFont = False
TabOrder = 1
object Button1: TButton
Left = 16
Height = 25
Top = 8
Width = 75
Caption = 'Cancel'
ModalResult = 2
ParentFont = False
TabOrder = 0
end
object Button2: TButton
Left = 128
Height = 25
Top = 8
Width = 75
Caption = 'OK'
ModalResult = 1
ParentFont = False
TabOrder = 1
end
end
object Panel2: TPanel
Left = 0
Height = 28
Top = 272
Width = 250
Align = alBottom
ClientHeight = 28
ClientWidth = 250
ParentFont = False
TabOrder = 2
object CustomCheckBox: TCheckBox
Left = 8
Height = 21
Top = 2
Width = 112
Caption = 'Custom driver'
OnChange = CustomCheckBoxChange
ParentFont = False
TabOrder = 0
end
end
object CustomPanel: TPanel
Left = 0
Height = 272
Top = 0
Width = 250
Align = alClient
ClientHeight = 272
ClientWidth = 250
ParentFont = False
TabOrder = 3
Visible = False
object CustomDriver: TEdit
Left = 8
Height = 30
Top = 40
Width = 232
ParentFont = False
TabOrder = 0
end
object Label1: TLabel
Left = 8
Height = 19
Top = 16
Width = 161
Caption = 'Custom or remote driver :'
ParentFont = False
end
object Label2: TLabel
Left = 8
Height = 19
Top = 80
Width = 86
Caption = 'Remote host :'
ParentFont = False
end
object CustomHost: TEdit
Left = 8
Height = 30
Top = 104
Width = 232
ParentFont = False
TabOrder = 1
end
end
object TreeView1: TTreeView
Left = 0
Height = 272
Top = 0
Width = 250
Align = alClient
ParentFont = False
TabOrder = 0
end
end