source: CommOptionsForm/USerialPortOptions.lfm

Last change on this file was 21, checked in by george, 14 years ago
  • Přidáno: Formulář nastavení sériového portu pro Lazarus.
File size: 4.0 KB
Line 
1object SerialPortOptions: TSerialPortOptions
2 Left = 710
3 Height = 256
4 Top = 127
5 Width = 279
6 Caption = 'Nastavení komunikace'
7 ClientHeight = 256
8 ClientWidth = 279
9 Constraints.MinHeight = 241
10 Constraints.MinWidth = 272
11 OnShow = FormShow
12 LCLVersion = '0.9.29'
13 object Label1: TLabel
14 Left = 10
15 Height = 14
16 Top = 11
17 Width = 78
18 Caption = 'Označení portu:'
19 ParentColor = False
20 end
21 object ComboBox1: TComboBox
22 Left = 136
23 Height = 21
24 Top = 8
25 Width = 129
26 ItemHeight = 13
27 Items.Strings = (
28 'COM1'
29 'COM2'
30 'COM3'
31 'COM4'
32 'COM5'
33 'COM6'
34 'COM7'
35 'COM8'
36 'COM9'
37 'COM10'
38 )
39 Style = csDropDownList
40 TabOrder = 0
41 end
42 object Label2: TLabel
43 Left = 10
44 Height = 14
45 Top = 43
46 Width = 97
47 Caption = 'Přenosová rychlost:'
48 ParentColor = False
49 end
50 object ComboBox2: TComboBox
51 Left = 136
52 Height = 21
53 Top = 40
54 Width = 129
55 ItemHeight = 13
56 Items.Strings = (
57 '110'
58 '300'
59 '600'
60 '1200'
61 '2400'
62 '4800'
63 '9600'
64 '14400'
65 '19200'
66 '38400'
67 '56000'
68 '57600'
69 '115200'
70 '128000'
71 '256000'
72 )
73 Style = csDropDownList
74 TabOrder = 1
75 end
76 object Label3: TLabel
77 Left = 10
78 Height = 14
79 Top = 70
80 Width = 33
81 Caption = 'Parita:'
82 ParentColor = False
83 end
84 object ComboBox3: TComboBox
85 Left = 136
86 Height = 21
87 Top = 67
88 Width = 129
89 ItemHeight = 13
90 Items.Strings = (
91 'Žádná'
92 'Lichá'
93 'Sudá'
94 'Značka'
95 'Mezera'
96 )
97 OnChange = ComboBox3Change
98 Style = csDropDownList
99 TabOrder = 2
100 end
101 object Label4: TLabel
102 Left = 10
103 Height = 14
104 Top = 95
105 Width = 61
106 Caption = 'Datové bity:'
107 ParentColor = False
108 end
109 object ComboBox4: TComboBox
110 Left = 136
111 Height = 21
112 Top = 92
113 Width = 129
114 ItemHeight = 13
115 Items.Strings = (
116 '4'
117 '5'
118 '6'
119 '7'
120 '8'
121 )
122 Style = csDropDownList
123 TabOrder = 3
124 end
125 object ComboBox5: TComboBox
126 Left = 136
127 Height = 21
128 Top = 120
129 Width = 129
130 ItemHeight = 13
131 Items.Strings = (
132 '1'
133 '1,5'
134 '2'
135 )
136 Style = csDropDownList
137 TabOrder = 4
138 end
139 object Label5: TLabel
140 Left = 9
141 Height = 14
142 Top = 123
143 Width = 77
144 Caption = 'Počet stop bitů:'
145 ParentColor = False
146 end
147 object ComboBox6: TComboBox
148 Left = 136
149 Height = 21
150 Top = 150
151 Width = 129
152 ItemHeight = 13
153 Items.Strings = (
154 'Žádné'
155 'Softwarové Xon/Xoff'
156 'Hardwarové RTS/CTS'
157 )
158 Style = csDropDownList
159 TabOrder = 5
160 end
161 object Label6: TLabel
162 Left = 8
163 Height = 14
164 Top = 153
165 Width = 57
166 Caption = 'Řízení toku:'
167 ParentColor = False
168 end
169 object ButtonSet: TButton
170 Left = 109
171 Height = 25
172 Top = 226
173 Width = 75
174 Anchors = [akRight, akBottom]
175 Caption = 'Nastavit'
176 OnClick = ButtonSetClick
177 TabOrder = 6
178 end
179 object ButtonCancel: TButton
180 Left = 195
181 Height = 25
182 Top = 226
183 Width = 75
184 Anchors = [akRight, akBottom]
185 Caption = 'Zrušit'
186 OnClick = ButtonCancelClick
187 TabOrder = 7
188 end
189 object Bevel1: TBevel
190 Left = 8
191 Height = 3
192 Top = 214
193 Width = 263
194 Anchors = [akLeft, akRight, akBottom]
195 end
196 object CheckBoxDTR: TCheckBox
197 Left = 136
198 Height = 17
199 Top = 178
200 Width = 40
201 Caption = 'DTR'
202 TabOrder = 8
203 end
204 object CheckBoxRTS: TCheckBox
205 Left = 200
206 Height = 17
207 Top = 178
208 Width = 39
209 Caption = 'RTS'
210 TabOrder = 9
211 end
212 object Label7: TLabel
213 Left = 8
214 Height = 14
215 Top = 181
216 Width = 111
217 Caption = 'Signály HW řízení toku:'
218 ParentColor = False
219 end
220end
Note: See TracBrowser for help on using the repository browser.