-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathFirstTest.dfm
186 lines (186 loc) · 3.18 KB
/
FirstTest.dfm
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
object Form1: TForm1
Left = 380
Top = 178
Width = 356
Height = 336
Caption = 'Form1'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 155
Top = 5
Width = 9
Height = 13
Caption = '...'
end
object Label2: TLabel
Left = 155
Top = 20
Width = 9
Height = 13
Caption = '...'
end
object Label3: TLabel
Left = 155
Top = 35
Width = 9
Height = 13
Caption = '...'
end
object Label4: TLabel
Left = 155
Top = 50
Width = 9
Height = 13
Caption = '...'
end
object Label5: TLabel
Left = 155
Top = 65
Width = 9
Height = 13
Caption = '...'
end
object Label6: TLabel
Left = 155
Top = 80
Width = 9
Height = 13
Caption = '...'
end
object Label7: TLabel
Left = 85
Top = 5
Width = 43
Height = 13
Caption = 'last error:'
end
object Label8: TLabel
Left = 85
Top = 20
Width = 65
Height = 13
Caption = 'last response:'
end
object Label9: TLabel
Left = 85
Top = 35
Width = 56
Height = 13
Caption = 'readerstate:'
end
object Label10: TLabel
Left = 85
Top = 50
Width = 43
Height = 13
Caption = 'ICC type:'
end
object Label11: TLabel
Left = 85
Top = 65
Width = 65
Height = 13
Caption = 'vendor name:'
end
object Label12: TLabel
Left = 85
Top = 80
Width = 42
Height = 13
Caption = 'serial nr.:'
end
object Label13: TLabel
Left = 85
Top = 95
Width = 41
Height = 13
Caption = 'protocol:'
end
object Label14: TLabel
Left = 155
Top = 95
Width = 9
Height = 13
Caption = '...'
end
object bt_Init: TButton
Left = 5
Top = 5
Width = 62
Height = 19
Caption = 'Init'
TabOrder = 0
OnClick = bt_InitClick
end
object bt_Open: TButton
Left = 5
Top = 25
Width = 62
Height = 19
Caption = 'Open'
TabOrder = 1
OnClick = bt_OpenClick
end
object bt_Connect: TButton
Left = 5
Top = 45
Width = 62
Height = 19
Caption = 'Connect'
TabOrder = 2
OnClick = bt_ConnectClick
end
object bt_Close: TButton
Left = 5
Top = 65
Width = 62
Height = 19
Caption = 'Close'
TabOrder = 3
OnClick = bt_CloseClick
end
object bt_Disconnect: TButton
Left = 5
Top = 85
Width = 62
Height = 19
Caption = 'Disconnect'
TabOrder = 4
OnClick = bt_DisconnectClick
end
object bt_Send: TButton
Left = 5
Top = 105
Width = 62
Height = 19
Caption = 'Send'
TabOrder = 5
OnClick = bt_SendClick
end
object Memo1: TMemo
Left = 75
Top = 130
Width = 271
Height = 176
TabOrder = 6
end
object pcsc: TPCSCConnector
OnCardInserted = pcscCardInserted
OnCardActive = pcscCardActive
OnCardRemoved = pcscCardRemoved
OnCardInvalid = pcscCardInvalid
OnReaderWaiting = pcscReaderWaiting
OnReaderListChange = pcscReaderListChange
OnError = pcscError
Left = 315
Top = 5
end
end