75893f0304202aa3bbbc2c2bb4d93c7b70c4c883.svn-base 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980
  1. namespace IControls_FireManager
  2. {
  3. partial class Form_Receiver_Port
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.cb_EMER_USE = new System.Windows.Forms.CheckBox();
  30. this.cb_COMM4_PARITY = new System.Windows.Forms.ComboBox();
  31. this.cb_COMM4_STOPBITS = new System.Windows.Forms.ComboBox();
  32. this.cb_COMM4_PORT = new System.Windows.Forms.ComboBox();
  33. this.cb_COMM4_DATABITS = new System.Windows.Forms.ComboBox();
  34. this.cb_COMM4_BAUDRATE = new System.Windows.Forms.ComboBox();
  35. this.label22 = new System.Windows.Forms.Label();
  36. this.label23 = new System.Windows.Forms.Label();
  37. this.label24 = new System.Windows.Forms.Label();
  38. this.label25 = new System.Windows.Forms.Label();
  39. this.label26 = new System.Windows.Forms.Label();
  40. this.cb_KEYPAD_USE = new System.Windows.Forms.CheckBox();
  41. this.cb_COMM3_PARITY = new System.Windows.Forms.ComboBox();
  42. this.cb_COMM3_STOPBITS = new System.Windows.Forms.ComboBox();
  43. this.cb_COMM3_PORT = new System.Windows.Forms.ComboBox();
  44. this.cb_COMM3_DATABITS = new System.Windows.Forms.ComboBox();
  45. this.cb_COMM3_BAUDRATE = new System.Windows.Forms.ComboBox();
  46. this.label17 = new System.Windows.Forms.Label();
  47. this.label18 = new System.Windows.Forms.Label();
  48. this.label19 = new System.Windows.Forms.Label();
  49. this.label20 = new System.Windows.Forms.Label();
  50. this.label21 = new System.Windows.Forms.Label();
  51. this.cb_IO_USE = new System.Windows.Forms.CheckBox();
  52. this.lbl_IO15 = new System.Windows.Forms.Label();
  53. this.cb_COMM2_PARITY = new System.Windows.Forms.ComboBox();
  54. this.cb_IO15_Use = new System.Windows.Forms.CheckBox();
  55. this.cb_COMM2_STOPBITS = new System.Windows.Forms.ComboBox();
  56. this.lbl_IO14 = new System.Windows.Forms.Label();
  57. this.cb_COMM2_PORT = new System.Windows.Forms.ComboBox();
  58. this.cb_IO14_Use = new System.Windows.Forms.CheckBox();
  59. this.cb_COMM2_DATABITS = new System.Windows.Forms.ComboBox();
  60. this.lbl_IO13 = new System.Windows.Forms.Label();
  61. this.cb_COMM2_BAUDRATE = new System.Windows.Forms.ComboBox();
  62. this.cb_IO13_Use = new System.Windows.Forms.CheckBox();
  63. this.label12 = new System.Windows.Forms.Label();
  64. this.lbl_IO12 = new System.Windows.Forms.Label();
  65. this.label13 = new System.Windows.Forms.Label();
  66. this.cb_IO12_Use = new System.Windows.Forms.CheckBox();
  67. this.label14 = new System.Windows.Forms.Label();
  68. this.lbl_IO11 = new System.Windows.Forms.Label();
  69. this.label15 = new System.Windows.Forms.Label();
  70. this.cb_IO11_Use = new System.Windows.Forms.CheckBox();
  71. this.label16 = new System.Windows.Forms.Label();
  72. this.lbl_IO10 = new System.Windows.Forms.Label();
  73. this.label53 = new System.Windows.Forms.Label();
  74. this.cb_IO10_Use = new System.Windows.Forms.CheckBox();
  75. this.cb_IO1_Use = new System.Windows.Forms.CheckBox();
  76. this.lbl_IO9 = new System.Windows.Forms.Label();
  77. this.lbl_IO1 = new System.Windows.Forms.Label();
  78. this.cb_IO9_Use = new System.Windows.Forms.CheckBox();
  79. this.cb_IO2_Use = new System.Windows.Forms.CheckBox();
  80. this.lbl_IO8 = new System.Windows.Forms.Label();
  81. this.lbl_IO2 = new System.Windows.Forms.Label();
  82. this.cb_IO8_Use = new System.Windows.Forms.CheckBox();
  83. this.cb_IO3_Use = new System.Windows.Forms.CheckBox();
  84. this.lbl_IO7 = new System.Windows.Forms.Label();
  85. this.lbl_IO3 = new System.Windows.Forms.Label();
  86. this.cb_IO7_Use = new System.Windows.Forms.CheckBox();
  87. this.cb_IO4_Use = new System.Windows.Forms.CheckBox();
  88. this.lbl_IO6 = new System.Windows.Forms.Label();
  89. this.lbl_IO4 = new System.Windows.Forms.Label();
  90. this.cb_IO6_Use = new System.Windows.Forms.CheckBox();
  91. this.cb_IO5_Use = new System.Windows.Forms.CheckBox();
  92. this.lbl_IO5 = new System.Windows.Forms.Label();
  93. this.cb_COMM_USE = new System.Windows.Forms.CheckBox();
  94. this.lbl_COMM15 = new System.Windows.Forms.Label();
  95. this.cb_COMM15_CH2Use = new System.Windows.Forms.CheckBox();
  96. this.cb_COMM15_CH1Use = new System.Windows.Forms.CheckBox();
  97. this.cb_COMM15_Use = new System.Windows.Forms.CheckBox();
  98. this.lbl_COMM14 = new System.Windows.Forms.Label();
  99. this.cb_COMM14_CH2Use = new System.Windows.Forms.CheckBox();
  100. this.cb_COMM14_CH1Use = new System.Windows.Forms.CheckBox();
  101. this.cb_COMM14_Use = new System.Windows.Forms.CheckBox();
  102. this.lbl_COMM13 = new System.Windows.Forms.Label();
  103. this.cb_COMM13_CH2Use = new System.Windows.Forms.CheckBox();
  104. this.cb_COMM13_CH1Use = new System.Windows.Forms.CheckBox();
  105. this.cb_COMM13_Use = new System.Windows.Forms.CheckBox();
  106. this.lbl_COMM12 = new System.Windows.Forms.Label();
  107. this.cb_COMM12_CH2Use = new System.Windows.Forms.CheckBox();
  108. this.cb_COMM12_CH1Use = new System.Windows.Forms.CheckBox();
  109. this.cb_COMM12_Use = new System.Windows.Forms.CheckBox();
  110. this.lbl_COMM11 = new System.Windows.Forms.Label();
  111. this.cb_COMM11_CH2Use = new System.Windows.Forms.CheckBox();
  112. this.cb_COMM11_CH1Use = new System.Windows.Forms.CheckBox();
  113. this.cb_COMM11_Use = new System.Windows.Forms.CheckBox();
  114. this.lbl_COMM10 = new System.Windows.Forms.Label();
  115. this.cb_COMM10_CH2Use = new System.Windows.Forms.CheckBox();
  116. this.cb_COMM10_CH1Use = new System.Windows.Forms.CheckBox();
  117. this.cb_COMM10_Use = new System.Windows.Forms.CheckBox();
  118. this.lbl_COMM9 = new System.Windows.Forms.Label();
  119. this.cb_COMM9_CH2Use = new System.Windows.Forms.CheckBox();
  120. this.cb_COMM9_CH1Use = new System.Windows.Forms.CheckBox();
  121. this.cb_COMM9_Use = new System.Windows.Forms.CheckBox();
  122. this.lbl_COMM8 = new System.Windows.Forms.Label();
  123. this.cb_COMM8_CH2Use = new System.Windows.Forms.CheckBox();
  124. this.cb_COMM8_CH1Use = new System.Windows.Forms.CheckBox();
  125. this.cb_COMM8_Use = new System.Windows.Forms.CheckBox();
  126. this.lbl_COMM7 = new System.Windows.Forms.Label();
  127. this.cb_COMM7_CH2Use = new System.Windows.Forms.CheckBox();
  128. this.cb_COMM7_CH1Use = new System.Windows.Forms.CheckBox();
  129. this.cb_COMM7_Use = new System.Windows.Forms.CheckBox();
  130. this.lbl_COMM6 = new System.Windows.Forms.Label();
  131. this.cb_COMM6_CH2Use = new System.Windows.Forms.CheckBox();
  132. this.cb_COMM6_CH1Use = new System.Windows.Forms.CheckBox();
  133. this.cb_COMM6_Use = new System.Windows.Forms.CheckBox();
  134. this.lbl_COMM5 = new System.Windows.Forms.Label();
  135. this.cb_COMM5_CH2Use = new System.Windows.Forms.CheckBox();
  136. this.cb_COMM5_CH1Use = new System.Windows.Forms.CheckBox();
  137. this.cb_COMM5_Use = new System.Windows.Forms.CheckBox();
  138. this.lbl_COMM4 = new System.Windows.Forms.Label();
  139. this.cb_COMM4_CH2Use = new System.Windows.Forms.CheckBox();
  140. this.cb_COMM4_CH1Use = new System.Windows.Forms.CheckBox();
  141. this.cb_COMM4_Use = new System.Windows.Forms.CheckBox();
  142. this.lbl_COMM3 = new System.Windows.Forms.Label();
  143. this.cb_COMM3_CH2Use = new System.Windows.Forms.CheckBox();
  144. this.cb_COMM3_CH1Use = new System.Windows.Forms.CheckBox();
  145. this.cb_COMM3_Use = new System.Windows.Forms.CheckBox();
  146. this.lbl_COMM2 = new System.Windows.Forms.Label();
  147. this.cb_COMM2_CH2Use = new System.Windows.Forms.CheckBox();
  148. this.cb_COMM2_CH1Use = new System.Windows.Forms.CheckBox();
  149. this.cb_COMM2_Use = new System.Windows.Forms.CheckBox();
  150. this.label4 = new System.Windows.Forms.Label();
  151. this.label3 = new System.Windows.Forms.Label();
  152. this.label2 = new System.Windows.Forms.Label();
  153. this.lbl_COMM1 = new System.Windows.Forms.Label();
  154. this.cb_COMM1_CH2Use = new System.Windows.Forms.CheckBox();
  155. this.cb_COMM1_CH1Use = new System.Windows.Forms.CheckBox();
  156. this.cb_COMM1_Use = new System.Windows.Forms.CheckBox();
  157. this.cb_COMM1_PARITY = new System.Windows.Forms.ComboBox();
  158. this.cb_COMM1_STOPBITS = new System.Windows.Forms.ComboBox();
  159. this.cb_COMM1_PORT = new System.Windows.Forms.ComboBox();
  160. this.cb_COMM1_DATABITS = new System.Windows.Forms.ComboBox();
  161. this.cb_COMM1_BAUDRATE = new System.Windows.Forms.ComboBox();
  162. this.label11 = new System.Windows.Forms.Label();
  163. this.label10 = new System.Windows.Forms.Label();
  164. this.label9 = new System.Windows.Forms.Label();
  165. this.label7 = new System.Windows.Forms.Label();
  166. this.label6 = new System.Windows.Forms.Label();
  167. this.UiButton_cancel = new Janus.Windows.EditControls.UIButton();
  168. this.UiButton_Confirm = new Janus.Windows.EditControls.UIButton();
  169. this.uiGroupBox2 = new Janus.Windows.EditControls.UIGroupBox();
  170. this.gb_COMM4 = new Janus.Windows.EditControls.UIGroupBox();
  171. this.gb_COMM3 = new Janus.Windows.EditControls.UIGroupBox();
  172. this.gb_COMM2 = new Janus.Windows.EditControls.UIGroupBox();
  173. this.checkBox_All_1 = new System.Windows.Forms.CheckBox();
  174. this.gb_COMM1 = new Janus.Windows.EditControls.UIGroupBox();
  175. this.checkBox1 = new System.Windows.Forms.CheckBox();
  176. this.officeFormAdorner = new Janus.Windows.Ribbon.OfficeFormAdorner(this.components);
  177. this.visualStyleManager = new Janus.Windows.Common.VisualStyleManager(this.components);
  178. ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).BeginInit();
  179. this.uiGroupBox2.SuspendLayout();
  180. ((System.ComponentModel.ISupportInitialize)(this.gb_COMM4)).BeginInit();
  181. this.gb_COMM4.SuspendLayout();
  182. ((System.ComponentModel.ISupportInitialize)(this.gb_COMM3)).BeginInit();
  183. this.gb_COMM3.SuspendLayout();
  184. ((System.ComponentModel.ISupportInitialize)(this.gb_COMM2)).BeginInit();
  185. this.gb_COMM2.SuspendLayout();
  186. ((System.ComponentModel.ISupportInitialize)(this.gb_COMM1)).BeginInit();
  187. this.gb_COMM1.SuspendLayout();
  188. ((System.ComponentModel.ISupportInitialize)(this.officeFormAdorner)).BeginInit();
  189. this.SuspendLayout();
  190. //
  191. // cb_EMER_USE
  192. //
  193. this.cb_EMER_USE.AutoSize = true;
  194. this.cb_EMER_USE.Location = new System.Drawing.Point(124, 27);
  195. this.cb_EMER_USE.Name = "cb_EMER_USE";
  196. this.cb_EMER_USE.Size = new System.Drawing.Size(48, 16);
  197. this.cb_EMER_USE.TabIndex = 110;
  198. this.cb_EMER_USE.Text = "사용";
  199. this.cb_EMER_USE.UseVisualStyleBackColor = true;
  200. //
  201. // cb_COMM4_PARITY
  202. //
  203. this.cb_COMM4_PARITY.FormattingEnabled = true;
  204. this.cb_COMM4_PARITY.Items.AddRange(new object[] {
  205. "NONE",
  206. "EVEN",
  207. "ODD"});
  208. this.cb_COMM4_PARITY.Location = new System.Drawing.Point(88, 161);
  209. this.cb_COMM4_PARITY.Name = "cb_COMM4_PARITY";
  210. this.cb_COMM4_PARITY.Size = new System.Drawing.Size(84, 20);
  211. this.cb_COMM4_PARITY.TabIndex = 14;
  212. //
  213. // cb_COMM4_STOPBITS
  214. //
  215. this.cb_COMM4_STOPBITS.FormattingEnabled = true;
  216. this.cb_COMM4_STOPBITS.Items.AddRange(new object[] {
  217. "1",
  218. "1.5",
  219. "2"});
  220. this.cb_COMM4_STOPBITS.Location = new System.Drawing.Point(88, 134);
  221. this.cb_COMM4_STOPBITS.Name = "cb_COMM4_STOPBITS";
  222. this.cb_COMM4_STOPBITS.Size = new System.Drawing.Size(84, 20);
  223. this.cb_COMM4_STOPBITS.TabIndex = 13;
  224. //
  225. // cb_COMM4_PORT
  226. //
  227. this.cb_COMM4_PORT.FormattingEnabled = true;
  228. this.cb_COMM4_PORT.Items.AddRange(new object[] {
  229. "COM1",
  230. "COM2",
  231. "COM3",
  232. "COM4",
  233. "COM5",
  234. "COM6",
  235. "COM7",
  236. "COM8"});
  237. this.cb_COMM4_PORT.Location = new System.Drawing.Point(88, 53);
  238. this.cb_COMM4_PORT.Name = "cb_COMM4_PORT";
  239. this.cb_COMM4_PORT.Size = new System.Drawing.Size(84, 20);
  240. this.cb_COMM4_PORT.TabIndex = 12;
  241. //
  242. // cb_COMM4_DATABITS
  243. //
  244. this.cb_COMM4_DATABITS.FormattingEnabled = true;
  245. this.cb_COMM4_DATABITS.Items.AddRange(new object[] {
  246. "6",
  247. "7",
  248. "8",
  249. "9"});
  250. this.cb_COMM4_DATABITS.Location = new System.Drawing.Point(88, 107);
  251. this.cb_COMM4_DATABITS.Name = "cb_COMM4_DATABITS";
  252. this.cb_COMM4_DATABITS.Size = new System.Drawing.Size(84, 20);
  253. this.cb_COMM4_DATABITS.TabIndex = 11;
  254. //
  255. // cb_COMM4_BAUDRATE
  256. //
  257. this.cb_COMM4_BAUDRATE.FormattingEnabled = true;
  258. this.cb_COMM4_BAUDRATE.Items.AddRange(new object[] {
  259. "2400",
  260. "4800",
  261. "9600",
  262. "19200",
  263. "38400",
  264. "76800",
  265. "115200"});
  266. this.cb_COMM4_BAUDRATE.Location = new System.Drawing.Point(88, 80);
  267. this.cb_COMM4_BAUDRATE.Name = "cb_COMM4_BAUDRATE";
  268. this.cb_COMM4_BAUDRATE.Size = new System.Drawing.Size(84, 20);
  269. this.cb_COMM4_BAUDRATE.TabIndex = 10;
  270. //
  271. // label22
  272. //
  273. this.label22.AutoSize = true;
  274. this.label22.Location = new System.Drawing.Point(27, 164);
  275. this.label22.Name = "label22";
  276. this.label22.Size = new System.Drawing.Size(37, 12);
  277. this.label22.TabIndex = 9;
  278. this.label22.Text = "Parity";
  279. //
  280. // label23
  281. //
  282. this.label23.AutoSize = true;
  283. this.label23.Location = new System.Drawing.Point(27, 137);
  284. this.label23.Name = "label23";
  285. this.label23.Size = new System.Drawing.Size(44, 12);
  286. this.label23.TabIndex = 7;
  287. this.label23.Text = "StopBit";
  288. //
  289. // label24
  290. //
  291. this.label24.AutoSize = true;
  292. this.label24.Location = new System.Drawing.Point(27, 110);
  293. this.label24.Name = "label24";
  294. this.label24.Size = new System.Drawing.Size(51, 12);
  295. this.label24.TabIndex = 6;
  296. this.label24.Text = "DataBits";
  297. //
  298. // label25
  299. //
  300. this.label25.AutoSize = true;
  301. this.label25.Location = new System.Drawing.Point(27, 83);
  302. this.label25.Name = "label25";
  303. this.label25.Size = new System.Drawing.Size(59, 12);
  304. this.label25.TabIndex = 5;
  305. this.label25.Text = "BaudRate";
  306. //
  307. // label26
  308. //
  309. this.label26.AutoSize = true;
  310. this.label26.Location = new System.Drawing.Point(27, 56);
  311. this.label26.Name = "label26";
  312. this.label26.Size = new System.Drawing.Size(27, 12);
  313. this.label26.TabIndex = 4;
  314. this.label26.Text = "Port";
  315. //
  316. // cb_KEYPAD_USE
  317. //
  318. this.cb_KEYPAD_USE.AutoSize = true;
  319. this.cb_KEYPAD_USE.Location = new System.Drawing.Point(124, 27);
  320. this.cb_KEYPAD_USE.Name = "cb_KEYPAD_USE";
  321. this.cb_KEYPAD_USE.Size = new System.Drawing.Size(48, 16);
  322. this.cb_KEYPAD_USE.TabIndex = 109;
  323. this.cb_KEYPAD_USE.Text = "사용";
  324. this.cb_KEYPAD_USE.UseVisualStyleBackColor = true;
  325. //
  326. // cb_COMM3_PARITY
  327. //
  328. this.cb_COMM3_PARITY.FormattingEnabled = true;
  329. this.cb_COMM3_PARITY.Items.AddRange(new object[] {
  330. "NONE",
  331. "EVEN",
  332. "ODD"});
  333. this.cb_COMM3_PARITY.Location = new System.Drawing.Point(88, 161);
  334. this.cb_COMM3_PARITY.Name = "cb_COMM3_PARITY";
  335. this.cb_COMM3_PARITY.Size = new System.Drawing.Size(84, 20);
  336. this.cb_COMM3_PARITY.TabIndex = 14;
  337. //
  338. // cb_COMM3_STOPBITS
  339. //
  340. this.cb_COMM3_STOPBITS.FormattingEnabled = true;
  341. this.cb_COMM3_STOPBITS.Items.AddRange(new object[] {
  342. "1",
  343. "1.5",
  344. "2"});
  345. this.cb_COMM3_STOPBITS.Location = new System.Drawing.Point(88, 134);
  346. this.cb_COMM3_STOPBITS.Name = "cb_COMM3_STOPBITS";
  347. this.cb_COMM3_STOPBITS.Size = new System.Drawing.Size(84, 20);
  348. this.cb_COMM3_STOPBITS.TabIndex = 13;
  349. //
  350. // cb_COMM3_PORT
  351. //
  352. this.cb_COMM3_PORT.FormattingEnabled = true;
  353. this.cb_COMM3_PORT.Items.AddRange(new object[] {
  354. "COM1",
  355. "COM2",
  356. "COM3",
  357. "COM4",
  358. "COM5",
  359. "COM6",
  360. "COM7",
  361. "COM8"});
  362. this.cb_COMM3_PORT.Location = new System.Drawing.Point(88, 53);
  363. this.cb_COMM3_PORT.Name = "cb_COMM3_PORT";
  364. this.cb_COMM3_PORT.Size = new System.Drawing.Size(84, 20);
  365. this.cb_COMM3_PORT.TabIndex = 12;
  366. //
  367. // cb_COMM3_DATABITS
  368. //
  369. this.cb_COMM3_DATABITS.FormattingEnabled = true;
  370. this.cb_COMM3_DATABITS.Items.AddRange(new object[] {
  371. "6",
  372. "7",
  373. "8",
  374. "9"});
  375. this.cb_COMM3_DATABITS.Location = new System.Drawing.Point(88, 107);
  376. this.cb_COMM3_DATABITS.Name = "cb_COMM3_DATABITS";
  377. this.cb_COMM3_DATABITS.Size = new System.Drawing.Size(84, 20);
  378. this.cb_COMM3_DATABITS.TabIndex = 11;
  379. //
  380. // cb_COMM3_BAUDRATE
  381. //
  382. this.cb_COMM3_BAUDRATE.FormattingEnabled = true;
  383. this.cb_COMM3_BAUDRATE.Items.AddRange(new object[] {
  384. "2400",
  385. "4800",
  386. "9600",
  387. "19200",
  388. "38400",
  389. "76800",
  390. "115200"});
  391. this.cb_COMM3_BAUDRATE.Location = new System.Drawing.Point(88, 80);
  392. this.cb_COMM3_BAUDRATE.Name = "cb_COMM3_BAUDRATE";
  393. this.cb_COMM3_BAUDRATE.Size = new System.Drawing.Size(84, 20);
  394. this.cb_COMM3_BAUDRATE.TabIndex = 10;
  395. //
  396. // label17
  397. //
  398. this.label17.AutoSize = true;
  399. this.label17.Location = new System.Drawing.Point(27, 164);
  400. this.label17.Name = "label17";
  401. this.label17.Size = new System.Drawing.Size(37, 12);
  402. this.label17.TabIndex = 9;
  403. this.label17.Text = "Parity";
  404. //
  405. // label18
  406. //
  407. this.label18.AutoSize = true;
  408. this.label18.Location = new System.Drawing.Point(27, 137);
  409. this.label18.Name = "label18";
  410. this.label18.Size = new System.Drawing.Size(44, 12);
  411. this.label18.TabIndex = 7;
  412. this.label18.Text = "StopBit";
  413. //
  414. // label19
  415. //
  416. this.label19.AutoSize = true;
  417. this.label19.Location = new System.Drawing.Point(27, 110);
  418. this.label19.Name = "label19";
  419. this.label19.Size = new System.Drawing.Size(51, 12);
  420. this.label19.TabIndex = 6;
  421. this.label19.Text = "DataBits";
  422. //
  423. // label20
  424. //
  425. this.label20.AutoSize = true;
  426. this.label20.Location = new System.Drawing.Point(27, 83);
  427. this.label20.Name = "label20";
  428. this.label20.Size = new System.Drawing.Size(59, 12);
  429. this.label20.TabIndex = 5;
  430. this.label20.Text = "BaudRate";
  431. //
  432. // label21
  433. //
  434. this.label21.AutoSize = true;
  435. this.label21.Location = new System.Drawing.Point(27, 56);
  436. this.label21.Name = "label21";
  437. this.label21.Size = new System.Drawing.Size(27, 12);
  438. this.label21.TabIndex = 4;
  439. this.label21.Text = "Port";
  440. //
  441. // cb_IO_USE
  442. //
  443. this.cb_IO_USE.AutoSize = true;
  444. this.cb_IO_USE.Location = new System.Drawing.Point(124, 27);
  445. this.cb_IO_USE.Name = "cb_IO_USE";
  446. this.cb_IO_USE.Size = new System.Drawing.Size(48, 16);
  447. this.cb_IO_USE.TabIndex = 79;
  448. this.cb_IO_USE.Text = "사용";
  449. this.cb_IO_USE.UseVisualStyleBackColor = true;
  450. //
  451. // lbl_IO15
  452. //
  453. this.lbl_IO15.AutoSize = true;
  454. this.lbl_IO15.Location = new System.Drawing.Point(27, 509);
  455. this.lbl_IO15.Name = "lbl_IO15";
  456. this.lbl_IO15.Size = new System.Drawing.Size(53, 12);
  457. this.lbl_IO15.TabIndex = 108;
  458. this.lbl_IO15.Text = "IO보드15";
  459. //
  460. // cb_COMM2_PARITY
  461. //
  462. this.cb_COMM2_PARITY.FormattingEnabled = true;
  463. this.cb_COMM2_PARITY.Items.AddRange(new object[] {
  464. "NONE",
  465. "EVEN",
  466. "ODD"});
  467. this.cb_COMM2_PARITY.Location = new System.Drawing.Point(89, 162);
  468. this.cb_COMM2_PARITY.Name = "cb_COMM2_PARITY";
  469. this.cb_COMM2_PARITY.Size = new System.Drawing.Size(84, 20);
  470. this.cb_COMM2_PARITY.TabIndex = 14;
  471. //
  472. // cb_IO15_Use
  473. //
  474. this.cb_IO15_Use.AutoSize = true;
  475. this.cb_IO15_Use.Checked = true;
  476. this.cb_IO15_Use.CheckState = System.Windows.Forms.CheckState.Checked;
  477. this.cb_IO15_Use.Location = new System.Drawing.Point(92, 509);
  478. this.cb_IO15_Use.Name = "cb_IO15_Use";
  479. this.cb_IO15_Use.Size = new System.Drawing.Size(15, 14);
  480. this.cb_IO15_Use.TabIndex = 107;
  481. this.cb_IO15_Use.UseVisualStyleBackColor = true;
  482. //
  483. // cb_COMM2_STOPBITS
  484. //
  485. this.cb_COMM2_STOPBITS.FormattingEnabled = true;
  486. this.cb_COMM2_STOPBITS.Items.AddRange(new object[] {
  487. "1",
  488. "1.5",
  489. "2"});
  490. this.cb_COMM2_STOPBITS.Location = new System.Drawing.Point(89, 135);
  491. this.cb_COMM2_STOPBITS.Name = "cb_COMM2_STOPBITS";
  492. this.cb_COMM2_STOPBITS.Size = new System.Drawing.Size(84, 20);
  493. this.cb_COMM2_STOPBITS.TabIndex = 13;
  494. //
  495. // lbl_IO14
  496. //
  497. this.lbl_IO14.AutoSize = true;
  498. this.lbl_IO14.Location = new System.Drawing.Point(27, 489);
  499. this.lbl_IO14.Name = "lbl_IO14";
  500. this.lbl_IO14.Size = new System.Drawing.Size(53, 12);
  501. this.lbl_IO14.TabIndex = 106;
  502. this.lbl_IO14.Text = "IO보드14";
  503. //
  504. // cb_COMM2_PORT
  505. //
  506. this.cb_COMM2_PORT.FormattingEnabled = true;
  507. this.cb_COMM2_PORT.Items.AddRange(new object[] {
  508. "COM1",
  509. "COM2",
  510. "COM3",
  511. "COM4",
  512. "COM5",
  513. "COM6",
  514. "COM7",
  515. "COM8"});
  516. this.cb_COMM2_PORT.Location = new System.Drawing.Point(88, 54);
  517. this.cb_COMM2_PORT.Name = "cb_COMM2_PORT";
  518. this.cb_COMM2_PORT.Size = new System.Drawing.Size(84, 20);
  519. this.cb_COMM2_PORT.TabIndex = 12;
  520. //
  521. // cb_IO14_Use
  522. //
  523. this.cb_IO14_Use.AutoSize = true;
  524. this.cb_IO14_Use.Location = new System.Drawing.Point(92, 489);
  525. this.cb_IO14_Use.Name = "cb_IO14_Use";
  526. this.cb_IO14_Use.Size = new System.Drawing.Size(15, 14);
  527. this.cb_IO14_Use.TabIndex = 105;
  528. this.cb_IO14_Use.UseVisualStyleBackColor = true;
  529. //
  530. // cb_COMM2_DATABITS
  531. //
  532. this.cb_COMM2_DATABITS.FormattingEnabled = true;
  533. this.cb_COMM2_DATABITS.Items.AddRange(new object[] {
  534. "6",
  535. "7",
  536. "8",
  537. "9"});
  538. this.cb_COMM2_DATABITS.Location = new System.Drawing.Point(89, 108);
  539. this.cb_COMM2_DATABITS.Name = "cb_COMM2_DATABITS";
  540. this.cb_COMM2_DATABITS.Size = new System.Drawing.Size(84, 20);
  541. this.cb_COMM2_DATABITS.TabIndex = 11;
  542. //
  543. // lbl_IO13
  544. //
  545. this.lbl_IO13.AutoSize = true;
  546. this.lbl_IO13.Location = new System.Drawing.Point(27, 469);
  547. this.lbl_IO13.Name = "lbl_IO13";
  548. this.lbl_IO13.Size = new System.Drawing.Size(53, 12);
  549. this.lbl_IO13.TabIndex = 104;
  550. this.lbl_IO13.Text = "IO보드13";
  551. //
  552. // cb_COMM2_BAUDRATE
  553. //
  554. this.cb_COMM2_BAUDRATE.FormattingEnabled = true;
  555. this.cb_COMM2_BAUDRATE.Items.AddRange(new object[] {
  556. "2400",
  557. "4800",
  558. "9600",
  559. "19200",
  560. "38400",
  561. "76800",
  562. "115200"});
  563. this.cb_COMM2_BAUDRATE.Location = new System.Drawing.Point(88, 81);
  564. this.cb_COMM2_BAUDRATE.Name = "cb_COMM2_BAUDRATE";
  565. this.cb_COMM2_BAUDRATE.Size = new System.Drawing.Size(84, 20);
  566. this.cb_COMM2_BAUDRATE.TabIndex = 10;
  567. //
  568. // cb_IO13_Use
  569. //
  570. this.cb_IO13_Use.AutoSize = true;
  571. this.cb_IO13_Use.Location = new System.Drawing.Point(92, 469);
  572. this.cb_IO13_Use.Name = "cb_IO13_Use";
  573. this.cb_IO13_Use.Size = new System.Drawing.Size(15, 14);
  574. this.cb_IO13_Use.TabIndex = 103;
  575. this.cb_IO13_Use.UseVisualStyleBackColor = true;
  576. //
  577. // label12
  578. //
  579. this.label12.AutoSize = true;
  580. this.label12.Location = new System.Drawing.Point(27, 165);
  581. this.label12.Name = "label12";
  582. this.label12.Size = new System.Drawing.Size(37, 12);
  583. this.label12.TabIndex = 9;
  584. this.label12.Text = "Parity";
  585. //
  586. // lbl_IO12
  587. //
  588. this.lbl_IO12.AutoSize = true;
  589. this.lbl_IO12.Location = new System.Drawing.Point(27, 449);
  590. this.lbl_IO12.Name = "lbl_IO12";
  591. this.lbl_IO12.Size = new System.Drawing.Size(53, 12);
  592. this.lbl_IO12.TabIndex = 102;
  593. this.lbl_IO12.Text = "IO보드12";
  594. //
  595. // label13
  596. //
  597. this.label13.AutoSize = true;
  598. this.label13.Location = new System.Drawing.Point(27, 138);
  599. this.label13.Name = "label13";
  600. this.label13.Size = new System.Drawing.Size(44, 12);
  601. this.label13.TabIndex = 7;
  602. this.label13.Text = "StopBit";
  603. //
  604. // cb_IO12_Use
  605. //
  606. this.cb_IO12_Use.AutoSize = true;
  607. this.cb_IO12_Use.Location = new System.Drawing.Point(92, 449);
  608. this.cb_IO12_Use.Name = "cb_IO12_Use";
  609. this.cb_IO12_Use.Size = new System.Drawing.Size(15, 14);
  610. this.cb_IO12_Use.TabIndex = 101;
  611. this.cb_IO12_Use.UseVisualStyleBackColor = true;
  612. //
  613. // label14
  614. //
  615. this.label14.AutoSize = true;
  616. this.label14.Location = new System.Drawing.Point(27, 111);
  617. this.label14.Name = "label14";
  618. this.label14.Size = new System.Drawing.Size(51, 12);
  619. this.label14.TabIndex = 6;
  620. this.label14.Text = "DataBits";
  621. //
  622. // lbl_IO11
  623. //
  624. this.lbl_IO11.AutoSize = true;
  625. this.lbl_IO11.Location = new System.Drawing.Point(27, 429);
  626. this.lbl_IO11.Name = "lbl_IO11";
  627. this.lbl_IO11.Size = new System.Drawing.Size(53, 12);
  628. this.lbl_IO11.TabIndex = 100;
  629. this.lbl_IO11.Text = "IO보드11";
  630. //
  631. // label15
  632. //
  633. this.label15.AutoSize = true;
  634. this.label15.Location = new System.Drawing.Point(27, 84);
  635. this.label15.Name = "label15";
  636. this.label15.Size = new System.Drawing.Size(59, 12);
  637. this.label15.TabIndex = 5;
  638. this.label15.Text = "BaudRate";
  639. //
  640. // cb_IO11_Use
  641. //
  642. this.cb_IO11_Use.AutoSize = true;
  643. this.cb_IO11_Use.Location = new System.Drawing.Point(92, 429);
  644. this.cb_IO11_Use.Name = "cb_IO11_Use";
  645. this.cb_IO11_Use.Size = new System.Drawing.Size(15, 14);
  646. this.cb_IO11_Use.TabIndex = 99;
  647. this.cb_IO11_Use.UseVisualStyleBackColor = true;
  648. //
  649. // label16
  650. //
  651. this.label16.AutoSize = true;
  652. this.label16.Location = new System.Drawing.Point(27, 57);
  653. this.label16.Name = "label16";
  654. this.label16.Size = new System.Drawing.Size(27, 12);
  655. this.label16.TabIndex = 4;
  656. this.label16.Text = "Port";
  657. //
  658. // lbl_IO10
  659. //
  660. this.lbl_IO10.AutoSize = true;
  661. this.lbl_IO10.Location = new System.Drawing.Point(27, 409);
  662. this.lbl_IO10.Name = "lbl_IO10";
  663. this.lbl_IO10.Size = new System.Drawing.Size(53, 12);
  664. this.lbl_IO10.TabIndex = 98;
  665. this.lbl_IO10.Text = "IO보드10";
  666. //
  667. // label53
  668. //
  669. this.label53.AutoSize = true;
  670. this.label53.Location = new System.Drawing.Point(85, 207);
  671. this.label53.Name = "label53";
  672. this.label53.Size = new System.Drawing.Size(29, 12);
  673. this.label53.TabIndex = 80;
  674. this.label53.Text = "사용";
  675. //
  676. // cb_IO10_Use
  677. //
  678. this.cb_IO10_Use.AutoSize = true;
  679. this.cb_IO10_Use.Location = new System.Drawing.Point(92, 409);
  680. this.cb_IO10_Use.Name = "cb_IO10_Use";
  681. this.cb_IO10_Use.Size = new System.Drawing.Size(15, 14);
  682. this.cb_IO10_Use.TabIndex = 97;
  683. this.cb_IO10_Use.UseVisualStyleBackColor = true;
  684. //
  685. // cb_IO1_Use
  686. //
  687. this.cb_IO1_Use.AutoSize = true;
  688. this.cb_IO1_Use.Location = new System.Drawing.Point(92, 229);
  689. this.cb_IO1_Use.Name = "cb_IO1_Use";
  690. this.cb_IO1_Use.Size = new System.Drawing.Size(15, 14);
  691. this.cb_IO1_Use.TabIndex = 78;
  692. this.cb_IO1_Use.UseVisualStyleBackColor = true;
  693. //
  694. // lbl_IO9
  695. //
  696. this.lbl_IO9.AutoSize = true;
  697. this.lbl_IO9.Location = new System.Drawing.Point(27, 389);
  698. this.lbl_IO9.Name = "lbl_IO9";
  699. this.lbl_IO9.Size = new System.Drawing.Size(47, 12);
  700. this.lbl_IO9.TabIndex = 96;
  701. this.lbl_IO9.Text = "IO보드9";
  702. //
  703. // lbl_IO1
  704. //
  705. this.lbl_IO1.AutoSize = true;
  706. this.lbl_IO1.Location = new System.Drawing.Point(27, 229);
  707. this.lbl_IO1.Name = "lbl_IO1";
  708. this.lbl_IO1.Size = new System.Drawing.Size(47, 12);
  709. this.lbl_IO1.TabIndex = 79;
  710. this.lbl_IO1.Text = "IO보드1";
  711. //
  712. // cb_IO9_Use
  713. //
  714. this.cb_IO9_Use.AutoSize = true;
  715. this.cb_IO9_Use.Location = new System.Drawing.Point(92, 389);
  716. this.cb_IO9_Use.Name = "cb_IO9_Use";
  717. this.cb_IO9_Use.Size = new System.Drawing.Size(15, 14);
  718. this.cb_IO9_Use.TabIndex = 95;
  719. this.cb_IO9_Use.UseVisualStyleBackColor = true;
  720. //
  721. // cb_IO2_Use
  722. //
  723. this.cb_IO2_Use.AutoSize = true;
  724. this.cb_IO2_Use.Location = new System.Drawing.Point(92, 249);
  725. this.cb_IO2_Use.Name = "cb_IO2_Use";
  726. this.cb_IO2_Use.Size = new System.Drawing.Size(15, 14);
  727. this.cb_IO2_Use.TabIndex = 81;
  728. this.cb_IO2_Use.UseVisualStyleBackColor = true;
  729. //
  730. // lbl_IO8
  731. //
  732. this.lbl_IO8.AutoSize = true;
  733. this.lbl_IO8.Location = new System.Drawing.Point(27, 369);
  734. this.lbl_IO8.Name = "lbl_IO8";
  735. this.lbl_IO8.Size = new System.Drawing.Size(47, 12);
  736. this.lbl_IO8.TabIndex = 94;
  737. this.lbl_IO8.Text = "IO보드8";
  738. //
  739. // lbl_IO2
  740. //
  741. this.lbl_IO2.AutoSize = true;
  742. this.lbl_IO2.Location = new System.Drawing.Point(27, 249);
  743. this.lbl_IO2.Name = "lbl_IO2";
  744. this.lbl_IO2.Size = new System.Drawing.Size(47, 12);
  745. this.lbl_IO2.TabIndex = 82;
  746. this.lbl_IO2.Text = "IO보드2";
  747. //
  748. // cb_IO8_Use
  749. //
  750. this.cb_IO8_Use.AutoSize = true;
  751. this.cb_IO8_Use.Location = new System.Drawing.Point(92, 369);
  752. this.cb_IO8_Use.Name = "cb_IO8_Use";
  753. this.cb_IO8_Use.Size = new System.Drawing.Size(15, 14);
  754. this.cb_IO8_Use.TabIndex = 93;
  755. this.cb_IO8_Use.UseVisualStyleBackColor = true;
  756. //
  757. // cb_IO3_Use
  758. //
  759. this.cb_IO3_Use.AutoSize = true;
  760. this.cb_IO3_Use.Location = new System.Drawing.Point(92, 269);
  761. this.cb_IO3_Use.Name = "cb_IO3_Use";
  762. this.cb_IO3_Use.Size = new System.Drawing.Size(15, 14);
  763. this.cb_IO3_Use.TabIndex = 83;
  764. this.cb_IO3_Use.UseVisualStyleBackColor = true;
  765. //
  766. // lbl_IO7
  767. //
  768. this.lbl_IO7.AutoSize = true;
  769. this.lbl_IO7.Location = new System.Drawing.Point(27, 349);
  770. this.lbl_IO7.Name = "lbl_IO7";
  771. this.lbl_IO7.Size = new System.Drawing.Size(47, 12);
  772. this.lbl_IO7.TabIndex = 92;
  773. this.lbl_IO7.Text = "IO보드7";
  774. //
  775. // lbl_IO3
  776. //
  777. this.lbl_IO3.AutoSize = true;
  778. this.lbl_IO3.Location = new System.Drawing.Point(27, 269);
  779. this.lbl_IO3.Name = "lbl_IO3";
  780. this.lbl_IO3.Size = new System.Drawing.Size(47, 12);
  781. this.lbl_IO3.TabIndex = 84;
  782. this.lbl_IO3.Text = "IO보드3";
  783. //
  784. // cb_IO7_Use
  785. //
  786. this.cb_IO7_Use.AutoSize = true;
  787. this.cb_IO7_Use.Location = new System.Drawing.Point(92, 349);
  788. this.cb_IO7_Use.Name = "cb_IO7_Use";
  789. this.cb_IO7_Use.Size = new System.Drawing.Size(15, 14);
  790. this.cb_IO7_Use.TabIndex = 91;
  791. this.cb_IO7_Use.UseVisualStyleBackColor = true;
  792. //
  793. // cb_IO4_Use
  794. //
  795. this.cb_IO4_Use.AutoSize = true;
  796. this.cb_IO4_Use.Location = new System.Drawing.Point(92, 289);
  797. this.cb_IO4_Use.Name = "cb_IO4_Use";
  798. this.cb_IO4_Use.Size = new System.Drawing.Size(15, 14);
  799. this.cb_IO4_Use.TabIndex = 85;
  800. this.cb_IO4_Use.UseVisualStyleBackColor = true;
  801. //
  802. // lbl_IO6
  803. //
  804. this.lbl_IO6.AutoSize = true;
  805. this.lbl_IO6.Location = new System.Drawing.Point(27, 329);
  806. this.lbl_IO6.Name = "lbl_IO6";
  807. this.lbl_IO6.Size = new System.Drawing.Size(47, 12);
  808. this.lbl_IO6.TabIndex = 90;
  809. this.lbl_IO6.Text = "IO보드6";
  810. //
  811. // lbl_IO4
  812. //
  813. this.lbl_IO4.AutoSize = true;
  814. this.lbl_IO4.Location = new System.Drawing.Point(27, 289);
  815. this.lbl_IO4.Name = "lbl_IO4";
  816. this.lbl_IO4.Size = new System.Drawing.Size(47, 12);
  817. this.lbl_IO4.TabIndex = 86;
  818. this.lbl_IO4.Text = "IO보드4";
  819. //
  820. // cb_IO6_Use
  821. //
  822. this.cb_IO6_Use.AutoSize = true;
  823. this.cb_IO6_Use.Location = new System.Drawing.Point(92, 329);
  824. this.cb_IO6_Use.Name = "cb_IO6_Use";
  825. this.cb_IO6_Use.Size = new System.Drawing.Size(15, 14);
  826. this.cb_IO6_Use.TabIndex = 89;
  827. this.cb_IO6_Use.UseVisualStyleBackColor = true;
  828. //
  829. // cb_IO5_Use
  830. //
  831. this.cb_IO5_Use.AutoSize = true;
  832. this.cb_IO5_Use.Location = new System.Drawing.Point(92, 309);
  833. this.cb_IO5_Use.Name = "cb_IO5_Use";
  834. this.cb_IO5_Use.Size = new System.Drawing.Size(15, 14);
  835. this.cb_IO5_Use.TabIndex = 87;
  836. this.cb_IO5_Use.UseVisualStyleBackColor = true;
  837. //
  838. // lbl_IO5
  839. //
  840. this.lbl_IO5.AutoSize = true;
  841. this.lbl_IO5.Location = new System.Drawing.Point(27, 309);
  842. this.lbl_IO5.Name = "lbl_IO5";
  843. this.lbl_IO5.Size = new System.Drawing.Size(47, 12);
  844. this.lbl_IO5.TabIndex = 88;
  845. this.lbl_IO5.Text = "IO보드5";
  846. //
  847. // cb_COMM_USE
  848. //
  849. this.cb_COMM_USE.AutoSize = true;
  850. this.cb_COMM_USE.Location = new System.Drawing.Point(126, 27);
  851. this.cb_COMM_USE.Name = "cb_COMM_USE";
  852. this.cb_COMM_USE.Size = new System.Drawing.Size(48, 16);
  853. this.cb_COMM_USE.TabIndex = 78;
  854. this.cb_COMM_USE.Text = "사용";
  855. this.cb_COMM_USE.UseVisualStyleBackColor = true;
  856. //
  857. // lbl_COMM15
  858. //
  859. this.lbl_COMM15.AutoSize = true;
  860. this.lbl_COMM15.Location = new System.Drawing.Point(22, 509);
  861. this.lbl_COMM15.Name = "lbl_COMM15";
  862. this.lbl_COMM15.Size = new System.Drawing.Size(65, 12);
  863. this.lbl_COMM15.TabIndex = 77;
  864. this.lbl_COMM15.Text = "통신보드15";
  865. this.lbl_COMM15.Visible = false;
  866. //
  867. // cb_COMM15_CH2Use
  868. //
  869. this.cb_COMM15_CH2Use.AutoSize = true;
  870. this.cb_COMM15_CH2Use.Location = new System.Drawing.Point(159, 509);
  871. this.cb_COMM15_CH2Use.Name = "cb_COMM15_CH2Use";
  872. this.cb_COMM15_CH2Use.Size = new System.Drawing.Size(15, 14);
  873. this.cb_COMM15_CH2Use.TabIndex = 76;
  874. this.cb_COMM15_CH2Use.UseVisualStyleBackColor = true;
  875. this.cb_COMM15_CH2Use.Visible = false;
  876. //
  877. // cb_COMM15_CH1Use
  878. //
  879. this.cb_COMM15_CH1Use.AutoSize = true;
  880. this.cb_COMM15_CH1Use.Checked = true;
  881. this.cb_COMM15_CH1Use.CheckState = System.Windows.Forms.CheckState.Checked;
  882. this.cb_COMM15_CH1Use.Location = new System.Drawing.Point(126, 509);
  883. this.cb_COMM15_CH1Use.Name = "cb_COMM15_CH1Use";
  884. this.cb_COMM15_CH1Use.Size = new System.Drawing.Size(15, 14);
  885. this.cb_COMM15_CH1Use.TabIndex = 75;
  886. this.cb_COMM15_CH1Use.UseVisualStyleBackColor = true;
  887. this.cb_COMM15_CH1Use.Visible = false;
  888. //
  889. // cb_COMM15_Use
  890. //
  891. this.cb_COMM15_Use.AutoSize = true;
  892. this.cb_COMM15_Use.Checked = true;
  893. this.cb_COMM15_Use.CheckState = System.Windows.Forms.CheckState.Checked;
  894. this.cb_COMM15_Use.Location = new System.Drawing.Point(93, 509);
  895. this.cb_COMM15_Use.Name = "cb_COMM15_Use";
  896. this.cb_COMM15_Use.Size = new System.Drawing.Size(15, 14);
  897. this.cb_COMM15_Use.TabIndex = 74;
  898. this.cb_COMM15_Use.UseVisualStyleBackColor = true;
  899. this.cb_COMM15_Use.Visible = false;
  900. //
  901. // lbl_COMM14
  902. //
  903. this.lbl_COMM14.AutoSize = true;
  904. this.lbl_COMM14.Location = new System.Drawing.Point(22, 489);
  905. this.lbl_COMM14.Name = "lbl_COMM14";
  906. this.lbl_COMM14.Size = new System.Drawing.Size(65, 12);
  907. this.lbl_COMM14.TabIndex = 73;
  908. this.lbl_COMM14.Text = "통신보드14";
  909. //
  910. // cb_COMM14_CH2Use
  911. //
  912. this.cb_COMM14_CH2Use.AutoSize = true;
  913. this.cb_COMM14_CH2Use.Location = new System.Drawing.Point(159, 489);
  914. this.cb_COMM14_CH2Use.Name = "cb_COMM14_CH2Use";
  915. this.cb_COMM14_CH2Use.Size = new System.Drawing.Size(15, 14);
  916. this.cb_COMM14_CH2Use.TabIndex = 72;
  917. this.cb_COMM14_CH2Use.UseVisualStyleBackColor = true;
  918. //
  919. // cb_COMM14_CH1Use
  920. //
  921. this.cb_COMM14_CH1Use.AutoSize = true;
  922. this.cb_COMM14_CH1Use.Location = new System.Drawing.Point(126, 489);
  923. this.cb_COMM14_CH1Use.Name = "cb_COMM14_CH1Use";
  924. this.cb_COMM14_CH1Use.Size = new System.Drawing.Size(15, 14);
  925. this.cb_COMM14_CH1Use.TabIndex = 71;
  926. this.cb_COMM14_CH1Use.UseVisualStyleBackColor = true;
  927. //
  928. // cb_COMM14_Use
  929. //
  930. this.cb_COMM14_Use.AutoSize = true;
  931. this.cb_COMM14_Use.Location = new System.Drawing.Point(93, 489);
  932. this.cb_COMM14_Use.Name = "cb_COMM14_Use";
  933. this.cb_COMM14_Use.Size = new System.Drawing.Size(15, 14);
  934. this.cb_COMM14_Use.TabIndex = 70;
  935. this.cb_COMM14_Use.UseVisualStyleBackColor = true;
  936. //
  937. // lbl_COMM13
  938. //
  939. this.lbl_COMM13.AutoSize = true;
  940. this.lbl_COMM13.Location = new System.Drawing.Point(22, 469);
  941. this.lbl_COMM13.Name = "lbl_COMM13";
  942. this.lbl_COMM13.Size = new System.Drawing.Size(65, 12);
  943. this.lbl_COMM13.TabIndex = 69;
  944. this.lbl_COMM13.Text = "통신보드13";
  945. //
  946. // cb_COMM13_CH2Use
  947. //
  948. this.cb_COMM13_CH2Use.AutoSize = true;
  949. this.cb_COMM13_CH2Use.Location = new System.Drawing.Point(159, 469);
  950. this.cb_COMM13_CH2Use.Name = "cb_COMM13_CH2Use";
  951. this.cb_COMM13_CH2Use.Size = new System.Drawing.Size(15, 14);
  952. this.cb_COMM13_CH2Use.TabIndex = 68;
  953. this.cb_COMM13_CH2Use.UseVisualStyleBackColor = true;
  954. //
  955. // cb_COMM13_CH1Use
  956. //
  957. this.cb_COMM13_CH1Use.AutoSize = true;
  958. this.cb_COMM13_CH1Use.Location = new System.Drawing.Point(126, 469);
  959. this.cb_COMM13_CH1Use.Name = "cb_COMM13_CH1Use";
  960. this.cb_COMM13_CH1Use.Size = new System.Drawing.Size(15, 14);
  961. this.cb_COMM13_CH1Use.TabIndex = 67;
  962. this.cb_COMM13_CH1Use.UseVisualStyleBackColor = true;
  963. //
  964. // cb_COMM13_Use
  965. //
  966. this.cb_COMM13_Use.AutoSize = true;
  967. this.cb_COMM13_Use.Location = new System.Drawing.Point(93, 469);
  968. this.cb_COMM13_Use.Name = "cb_COMM13_Use";
  969. this.cb_COMM13_Use.Size = new System.Drawing.Size(15, 14);
  970. this.cb_COMM13_Use.TabIndex = 66;
  971. this.cb_COMM13_Use.UseVisualStyleBackColor = true;
  972. //
  973. // lbl_COMM12
  974. //
  975. this.lbl_COMM12.AutoSize = true;
  976. this.lbl_COMM12.Location = new System.Drawing.Point(22, 449);
  977. this.lbl_COMM12.Name = "lbl_COMM12";
  978. this.lbl_COMM12.Size = new System.Drawing.Size(65, 12);
  979. this.lbl_COMM12.TabIndex = 65;
  980. this.lbl_COMM12.Text = "통신보드12";
  981. //
  982. // cb_COMM12_CH2Use
  983. //
  984. this.cb_COMM12_CH2Use.AutoSize = true;
  985. this.cb_COMM12_CH2Use.Location = new System.Drawing.Point(159, 449);
  986. this.cb_COMM12_CH2Use.Name = "cb_COMM12_CH2Use";
  987. this.cb_COMM12_CH2Use.Size = new System.Drawing.Size(15, 14);
  988. this.cb_COMM12_CH2Use.TabIndex = 64;
  989. this.cb_COMM12_CH2Use.UseVisualStyleBackColor = true;
  990. //
  991. // cb_COMM12_CH1Use
  992. //
  993. this.cb_COMM12_CH1Use.AutoSize = true;
  994. this.cb_COMM12_CH1Use.Location = new System.Drawing.Point(126, 449);
  995. this.cb_COMM12_CH1Use.Name = "cb_COMM12_CH1Use";
  996. this.cb_COMM12_CH1Use.Size = new System.Drawing.Size(15, 14);
  997. this.cb_COMM12_CH1Use.TabIndex = 63;
  998. this.cb_COMM12_CH1Use.UseVisualStyleBackColor = true;
  999. //
  1000. // cb_COMM12_Use
  1001. //
  1002. this.cb_COMM12_Use.AutoSize = true;
  1003. this.cb_COMM12_Use.Location = new System.Drawing.Point(93, 449);
  1004. this.cb_COMM12_Use.Name = "cb_COMM12_Use";
  1005. this.cb_COMM12_Use.Size = new System.Drawing.Size(15, 14);
  1006. this.cb_COMM12_Use.TabIndex = 62;
  1007. this.cb_COMM12_Use.UseVisualStyleBackColor = true;
  1008. //
  1009. // lbl_COMM11
  1010. //
  1011. this.lbl_COMM11.AutoSize = true;
  1012. this.lbl_COMM11.Location = new System.Drawing.Point(22, 429);
  1013. this.lbl_COMM11.Name = "lbl_COMM11";
  1014. this.lbl_COMM11.Size = new System.Drawing.Size(65, 12);
  1015. this.lbl_COMM11.TabIndex = 61;
  1016. this.lbl_COMM11.Text = "통신보드11";
  1017. //
  1018. // cb_COMM11_CH2Use
  1019. //
  1020. this.cb_COMM11_CH2Use.AutoSize = true;
  1021. this.cb_COMM11_CH2Use.Location = new System.Drawing.Point(159, 429);
  1022. this.cb_COMM11_CH2Use.Name = "cb_COMM11_CH2Use";
  1023. this.cb_COMM11_CH2Use.Size = new System.Drawing.Size(15, 14);
  1024. this.cb_COMM11_CH2Use.TabIndex = 60;
  1025. this.cb_COMM11_CH2Use.UseVisualStyleBackColor = true;
  1026. //
  1027. // cb_COMM11_CH1Use
  1028. //
  1029. this.cb_COMM11_CH1Use.AutoSize = true;
  1030. this.cb_COMM11_CH1Use.Location = new System.Drawing.Point(126, 429);
  1031. this.cb_COMM11_CH1Use.Name = "cb_COMM11_CH1Use";
  1032. this.cb_COMM11_CH1Use.Size = new System.Drawing.Size(15, 14);
  1033. this.cb_COMM11_CH1Use.TabIndex = 59;
  1034. this.cb_COMM11_CH1Use.UseVisualStyleBackColor = true;
  1035. //
  1036. // cb_COMM11_Use
  1037. //
  1038. this.cb_COMM11_Use.AutoSize = true;
  1039. this.cb_COMM11_Use.Location = new System.Drawing.Point(93, 429);
  1040. this.cb_COMM11_Use.Name = "cb_COMM11_Use";
  1041. this.cb_COMM11_Use.Size = new System.Drawing.Size(15, 14);
  1042. this.cb_COMM11_Use.TabIndex = 58;
  1043. this.cb_COMM11_Use.UseVisualStyleBackColor = true;
  1044. //
  1045. // lbl_COMM10
  1046. //
  1047. this.lbl_COMM10.AutoSize = true;
  1048. this.lbl_COMM10.Location = new System.Drawing.Point(22, 409);
  1049. this.lbl_COMM10.Name = "lbl_COMM10";
  1050. this.lbl_COMM10.Size = new System.Drawing.Size(65, 12);
  1051. this.lbl_COMM10.TabIndex = 57;
  1052. this.lbl_COMM10.Text = "통신보드10";
  1053. //
  1054. // cb_COMM10_CH2Use
  1055. //
  1056. this.cb_COMM10_CH2Use.AutoSize = true;
  1057. this.cb_COMM10_CH2Use.Location = new System.Drawing.Point(159, 409);
  1058. this.cb_COMM10_CH2Use.Name = "cb_COMM10_CH2Use";
  1059. this.cb_COMM10_CH2Use.Size = new System.Drawing.Size(15, 14);
  1060. this.cb_COMM10_CH2Use.TabIndex = 56;
  1061. this.cb_COMM10_CH2Use.UseVisualStyleBackColor = true;
  1062. //
  1063. // cb_COMM10_CH1Use
  1064. //
  1065. this.cb_COMM10_CH1Use.AutoSize = true;
  1066. this.cb_COMM10_CH1Use.Location = new System.Drawing.Point(126, 409);
  1067. this.cb_COMM10_CH1Use.Name = "cb_COMM10_CH1Use";
  1068. this.cb_COMM10_CH1Use.Size = new System.Drawing.Size(15, 14);
  1069. this.cb_COMM10_CH1Use.TabIndex = 55;
  1070. this.cb_COMM10_CH1Use.UseVisualStyleBackColor = true;
  1071. //
  1072. // cb_COMM10_Use
  1073. //
  1074. this.cb_COMM10_Use.AutoSize = true;
  1075. this.cb_COMM10_Use.Location = new System.Drawing.Point(93, 409);
  1076. this.cb_COMM10_Use.Name = "cb_COMM10_Use";
  1077. this.cb_COMM10_Use.Size = new System.Drawing.Size(15, 14);
  1078. this.cb_COMM10_Use.TabIndex = 54;
  1079. this.cb_COMM10_Use.UseVisualStyleBackColor = true;
  1080. //
  1081. // lbl_COMM9
  1082. //
  1083. this.lbl_COMM9.AutoSize = true;
  1084. this.lbl_COMM9.Location = new System.Drawing.Point(22, 389);
  1085. this.lbl_COMM9.Name = "lbl_COMM9";
  1086. this.lbl_COMM9.Size = new System.Drawing.Size(59, 12);
  1087. this.lbl_COMM9.TabIndex = 53;
  1088. this.lbl_COMM9.Text = "통신보드9";
  1089. //
  1090. // cb_COMM9_CH2Use
  1091. //
  1092. this.cb_COMM9_CH2Use.AutoSize = true;
  1093. this.cb_COMM9_CH2Use.Location = new System.Drawing.Point(159, 389);
  1094. this.cb_COMM9_CH2Use.Name = "cb_COMM9_CH2Use";
  1095. this.cb_COMM9_CH2Use.Size = new System.Drawing.Size(15, 14);
  1096. this.cb_COMM9_CH2Use.TabIndex = 52;
  1097. this.cb_COMM9_CH2Use.UseVisualStyleBackColor = true;
  1098. //
  1099. // cb_COMM9_CH1Use
  1100. //
  1101. this.cb_COMM9_CH1Use.AutoSize = true;
  1102. this.cb_COMM9_CH1Use.Location = new System.Drawing.Point(126, 389);
  1103. this.cb_COMM9_CH1Use.Name = "cb_COMM9_CH1Use";
  1104. this.cb_COMM9_CH1Use.Size = new System.Drawing.Size(15, 14);
  1105. this.cb_COMM9_CH1Use.TabIndex = 51;
  1106. this.cb_COMM9_CH1Use.UseVisualStyleBackColor = true;
  1107. //
  1108. // cb_COMM9_Use
  1109. //
  1110. this.cb_COMM9_Use.AutoSize = true;
  1111. this.cb_COMM9_Use.Location = new System.Drawing.Point(93, 389);
  1112. this.cb_COMM9_Use.Name = "cb_COMM9_Use";
  1113. this.cb_COMM9_Use.Size = new System.Drawing.Size(15, 14);
  1114. this.cb_COMM9_Use.TabIndex = 50;
  1115. this.cb_COMM9_Use.UseVisualStyleBackColor = true;
  1116. //
  1117. // lbl_COMM8
  1118. //
  1119. this.lbl_COMM8.AutoSize = true;
  1120. this.lbl_COMM8.Location = new System.Drawing.Point(22, 369);
  1121. this.lbl_COMM8.Name = "lbl_COMM8";
  1122. this.lbl_COMM8.Size = new System.Drawing.Size(59, 12);
  1123. this.lbl_COMM8.TabIndex = 49;
  1124. this.lbl_COMM8.Text = "통신보드8";
  1125. //
  1126. // cb_COMM8_CH2Use
  1127. //
  1128. this.cb_COMM8_CH2Use.AutoSize = true;
  1129. this.cb_COMM8_CH2Use.Location = new System.Drawing.Point(159, 369);
  1130. this.cb_COMM8_CH2Use.Name = "cb_COMM8_CH2Use";
  1131. this.cb_COMM8_CH2Use.Size = new System.Drawing.Size(15, 14);
  1132. this.cb_COMM8_CH2Use.TabIndex = 48;
  1133. this.cb_COMM8_CH2Use.UseVisualStyleBackColor = true;
  1134. //
  1135. // cb_COMM8_CH1Use
  1136. //
  1137. this.cb_COMM8_CH1Use.AutoSize = true;
  1138. this.cb_COMM8_CH1Use.Location = new System.Drawing.Point(126, 369);
  1139. this.cb_COMM8_CH1Use.Name = "cb_COMM8_CH1Use";
  1140. this.cb_COMM8_CH1Use.Size = new System.Drawing.Size(15, 14);
  1141. this.cb_COMM8_CH1Use.TabIndex = 47;
  1142. this.cb_COMM8_CH1Use.UseVisualStyleBackColor = true;
  1143. //
  1144. // cb_COMM8_Use
  1145. //
  1146. this.cb_COMM8_Use.AutoSize = true;
  1147. this.cb_COMM8_Use.Location = new System.Drawing.Point(93, 369);
  1148. this.cb_COMM8_Use.Name = "cb_COMM8_Use";
  1149. this.cb_COMM8_Use.Size = new System.Drawing.Size(15, 14);
  1150. this.cb_COMM8_Use.TabIndex = 46;
  1151. this.cb_COMM8_Use.UseVisualStyleBackColor = true;
  1152. //
  1153. // lbl_COMM7
  1154. //
  1155. this.lbl_COMM7.AutoSize = true;
  1156. this.lbl_COMM7.Location = new System.Drawing.Point(22, 349);
  1157. this.lbl_COMM7.Name = "lbl_COMM7";
  1158. this.lbl_COMM7.Size = new System.Drawing.Size(59, 12);
  1159. this.lbl_COMM7.TabIndex = 45;
  1160. this.lbl_COMM7.Text = "통신보드7";
  1161. //
  1162. // cb_COMM7_CH2Use
  1163. //
  1164. this.cb_COMM7_CH2Use.AutoSize = true;
  1165. this.cb_COMM7_CH2Use.Location = new System.Drawing.Point(159, 349);
  1166. this.cb_COMM7_CH2Use.Name = "cb_COMM7_CH2Use";
  1167. this.cb_COMM7_CH2Use.Size = new System.Drawing.Size(15, 14);
  1168. this.cb_COMM7_CH2Use.TabIndex = 44;
  1169. this.cb_COMM7_CH2Use.UseVisualStyleBackColor = true;
  1170. //
  1171. // cb_COMM7_CH1Use
  1172. //
  1173. this.cb_COMM7_CH1Use.AutoSize = true;
  1174. this.cb_COMM7_CH1Use.Location = new System.Drawing.Point(126, 349);
  1175. this.cb_COMM7_CH1Use.Name = "cb_COMM7_CH1Use";
  1176. this.cb_COMM7_CH1Use.Size = new System.Drawing.Size(15, 14);
  1177. this.cb_COMM7_CH1Use.TabIndex = 43;
  1178. this.cb_COMM7_CH1Use.UseVisualStyleBackColor = true;
  1179. //
  1180. // cb_COMM7_Use
  1181. //
  1182. this.cb_COMM7_Use.AutoSize = true;
  1183. this.cb_COMM7_Use.Location = new System.Drawing.Point(93, 349);
  1184. this.cb_COMM7_Use.Name = "cb_COMM7_Use";
  1185. this.cb_COMM7_Use.Size = new System.Drawing.Size(15, 14);
  1186. this.cb_COMM7_Use.TabIndex = 42;
  1187. this.cb_COMM7_Use.UseVisualStyleBackColor = true;
  1188. //
  1189. // lbl_COMM6
  1190. //
  1191. this.lbl_COMM6.AutoSize = true;
  1192. this.lbl_COMM6.Location = new System.Drawing.Point(22, 329);
  1193. this.lbl_COMM6.Name = "lbl_COMM6";
  1194. this.lbl_COMM6.Size = new System.Drawing.Size(59, 12);
  1195. this.lbl_COMM6.TabIndex = 41;
  1196. this.lbl_COMM6.Text = "통신보드6";
  1197. //
  1198. // cb_COMM6_CH2Use
  1199. //
  1200. this.cb_COMM6_CH2Use.AutoSize = true;
  1201. this.cb_COMM6_CH2Use.Location = new System.Drawing.Point(159, 329);
  1202. this.cb_COMM6_CH2Use.Name = "cb_COMM6_CH2Use";
  1203. this.cb_COMM6_CH2Use.Size = new System.Drawing.Size(15, 14);
  1204. this.cb_COMM6_CH2Use.TabIndex = 40;
  1205. this.cb_COMM6_CH2Use.UseVisualStyleBackColor = true;
  1206. //
  1207. // cb_COMM6_CH1Use
  1208. //
  1209. this.cb_COMM6_CH1Use.AutoSize = true;
  1210. this.cb_COMM6_CH1Use.Location = new System.Drawing.Point(126, 329);
  1211. this.cb_COMM6_CH1Use.Name = "cb_COMM6_CH1Use";
  1212. this.cb_COMM6_CH1Use.Size = new System.Drawing.Size(15, 14);
  1213. this.cb_COMM6_CH1Use.TabIndex = 39;
  1214. this.cb_COMM6_CH1Use.UseVisualStyleBackColor = true;
  1215. //
  1216. // cb_COMM6_Use
  1217. //
  1218. this.cb_COMM6_Use.AutoSize = true;
  1219. this.cb_COMM6_Use.Location = new System.Drawing.Point(93, 329);
  1220. this.cb_COMM6_Use.Name = "cb_COMM6_Use";
  1221. this.cb_COMM6_Use.Size = new System.Drawing.Size(15, 14);
  1222. this.cb_COMM6_Use.TabIndex = 38;
  1223. this.cb_COMM6_Use.UseVisualStyleBackColor = true;
  1224. //
  1225. // lbl_COMM5
  1226. //
  1227. this.lbl_COMM5.AutoSize = true;
  1228. this.lbl_COMM5.Location = new System.Drawing.Point(22, 309);
  1229. this.lbl_COMM5.Name = "lbl_COMM5";
  1230. this.lbl_COMM5.Size = new System.Drawing.Size(59, 12);
  1231. this.lbl_COMM5.TabIndex = 37;
  1232. this.lbl_COMM5.Text = "통신보드5";
  1233. //
  1234. // cb_COMM5_CH2Use
  1235. //
  1236. this.cb_COMM5_CH2Use.AutoSize = true;
  1237. this.cb_COMM5_CH2Use.Location = new System.Drawing.Point(159, 309);
  1238. this.cb_COMM5_CH2Use.Name = "cb_COMM5_CH2Use";
  1239. this.cb_COMM5_CH2Use.Size = new System.Drawing.Size(15, 14);
  1240. this.cb_COMM5_CH2Use.TabIndex = 36;
  1241. this.cb_COMM5_CH2Use.UseVisualStyleBackColor = true;
  1242. //
  1243. // cb_COMM5_CH1Use
  1244. //
  1245. this.cb_COMM5_CH1Use.AutoSize = true;
  1246. this.cb_COMM5_CH1Use.Location = new System.Drawing.Point(126, 309);
  1247. this.cb_COMM5_CH1Use.Name = "cb_COMM5_CH1Use";
  1248. this.cb_COMM5_CH1Use.Size = new System.Drawing.Size(15, 14);
  1249. this.cb_COMM5_CH1Use.TabIndex = 35;
  1250. this.cb_COMM5_CH1Use.UseVisualStyleBackColor = true;
  1251. //
  1252. // cb_COMM5_Use
  1253. //
  1254. this.cb_COMM5_Use.AutoSize = true;
  1255. this.cb_COMM5_Use.Location = new System.Drawing.Point(93, 309);
  1256. this.cb_COMM5_Use.Name = "cb_COMM5_Use";
  1257. this.cb_COMM5_Use.Size = new System.Drawing.Size(15, 14);
  1258. this.cb_COMM5_Use.TabIndex = 34;
  1259. this.cb_COMM5_Use.UseVisualStyleBackColor = true;
  1260. //
  1261. // lbl_COMM4
  1262. //
  1263. this.lbl_COMM4.AutoSize = true;
  1264. this.lbl_COMM4.Location = new System.Drawing.Point(22, 289);
  1265. this.lbl_COMM4.Name = "lbl_COMM4";
  1266. this.lbl_COMM4.Size = new System.Drawing.Size(59, 12);
  1267. this.lbl_COMM4.TabIndex = 33;
  1268. this.lbl_COMM4.Text = "통신보드4";
  1269. //
  1270. // cb_COMM4_CH2Use
  1271. //
  1272. this.cb_COMM4_CH2Use.AutoSize = true;
  1273. this.cb_COMM4_CH2Use.Location = new System.Drawing.Point(159, 289);
  1274. this.cb_COMM4_CH2Use.Name = "cb_COMM4_CH2Use";
  1275. this.cb_COMM4_CH2Use.Size = new System.Drawing.Size(15, 14);
  1276. this.cb_COMM4_CH2Use.TabIndex = 32;
  1277. this.cb_COMM4_CH2Use.UseVisualStyleBackColor = true;
  1278. //
  1279. // cb_COMM4_CH1Use
  1280. //
  1281. this.cb_COMM4_CH1Use.AutoSize = true;
  1282. this.cb_COMM4_CH1Use.Location = new System.Drawing.Point(126, 289);
  1283. this.cb_COMM4_CH1Use.Name = "cb_COMM4_CH1Use";
  1284. this.cb_COMM4_CH1Use.Size = new System.Drawing.Size(15, 14);
  1285. this.cb_COMM4_CH1Use.TabIndex = 31;
  1286. this.cb_COMM4_CH1Use.UseVisualStyleBackColor = true;
  1287. //
  1288. // cb_COMM4_Use
  1289. //
  1290. this.cb_COMM4_Use.AutoSize = true;
  1291. this.cb_COMM4_Use.Location = new System.Drawing.Point(93, 289);
  1292. this.cb_COMM4_Use.Name = "cb_COMM4_Use";
  1293. this.cb_COMM4_Use.Size = new System.Drawing.Size(15, 14);
  1294. this.cb_COMM4_Use.TabIndex = 30;
  1295. this.cb_COMM4_Use.UseVisualStyleBackColor = true;
  1296. //
  1297. // lbl_COMM3
  1298. //
  1299. this.lbl_COMM3.AutoSize = true;
  1300. this.lbl_COMM3.Location = new System.Drawing.Point(22, 269);
  1301. this.lbl_COMM3.Name = "lbl_COMM3";
  1302. this.lbl_COMM3.Size = new System.Drawing.Size(59, 12);
  1303. this.lbl_COMM3.TabIndex = 29;
  1304. this.lbl_COMM3.Text = "통신보드3";
  1305. //
  1306. // cb_COMM3_CH2Use
  1307. //
  1308. this.cb_COMM3_CH2Use.AutoSize = true;
  1309. this.cb_COMM3_CH2Use.Location = new System.Drawing.Point(159, 269);
  1310. this.cb_COMM3_CH2Use.Name = "cb_COMM3_CH2Use";
  1311. this.cb_COMM3_CH2Use.Size = new System.Drawing.Size(15, 14);
  1312. this.cb_COMM3_CH2Use.TabIndex = 28;
  1313. this.cb_COMM3_CH2Use.UseVisualStyleBackColor = true;
  1314. //
  1315. // cb_COMM3_CH1Use
  1316. //
  1317. this.cb_COMM3_CH1Use.AutoSize = true;
  1318. this.cb_COMM3_CH1Use.Location = new System.Drawing.Point(126, 269);
  1319. this.cb_COMM3_CH1Use.Name = "cb_COMM3_CH1Use";
  1320. this.cb_COMM3_CH1Use.Size = new System.Drawing.Size(15, 14);
  1321. this.cb_COMM3_CH1Use.TabIndex = 27;
  1322. this.cb_COMM3_CH1Use.UseVisualStyleBackColor = true;
  1323. //
  1324. // cb_COMM3_Use
  1325. //
  1326. this.cb_COMM3_Use.AutoSize = true;
  1327. this.cb_COMM3_Use.Location = new System.Drawing.Point(93, 269);
  1328. this.cb_COMM3_Use.Name = "cb_COMM3_Use";
  1329. this.cb_COMM3_Use.Size = new System.Drawing.Size(15, 14);
  1330. this.cb_COMM3_Use.TabIndex = 26;
  1331. this.cb_COMM3_Use.UseVisualStyleBackColor = true;
  1332. //
  1333. // lbl_COMM2
  1334. //
  1335. this.lbl_COMM2.AutoSize = true;
  1336. this.lbl_COMM2.Location = new System.Drawing.Point(22, 249);
  1337. this.lbl_COMM2.Name = "lbl_COMM2";
  1338. this.lbl_COMM2.Size = new System.Drawing.Size(59, 12);
  1339. this.lbl_COMM2.TabIndex = 25;
  1340. this.lbl_COMM2.Text = "통신보드2";
  1341. //
  1342. // cb_COMM2_CH2Use
  1343. //
  1344. this.cb_COMM2_CH2Use.AutoSize = true;
  1345. this.cb_COMM2_CH2Use.Location = new System.Drawing.Point(159, 249);
  1346. this.cb_COMM2_CH2Use.Name = "cb_COMM2_CH2Use";
  1347. this.cb_COMM2_CH2Use.Size = new System.Drawing.Size(15, 14);
  1348. this.cb_COMM2_CH2Use.TabIndex = 24;
  1349. this.cb_COMM2_CH2Use.UseVisualStyleBackColor = true;
  1350. //
  1351. // cb_COMM2_CH1Use
  1352. //
  1353. this.cb_COMM2_CH1Use.AutoSize = true;
  1354. this.cb_COMM2_CH1Use.Location = new System.Drawing.Point(126, 249);
  1355. this.cb_COMM2_CH1Use.Name = "cb_COMM2_CH1Use";
  1356. this.cb_COMM2_CH1Use.Size = new System.Drawing.Size(15, 14);
  1357. this.cb_COMM2_CH1Use.TabIndex = 23;
  1358. this.cb_COMM2_CH1Use.UseVisualStyleBackColor = true;
  1359. //
  1360. // cb_COMM2_Use
  1361. //
  1362. this.cb_COMM2_Use.AutoSize = true;
  1363. this.cb_COMM2_Use.Location = new System.Drawing.Point(93, 249);
  1364. this.cb_COMM2_Use.Name = "cb_COMM2_Use";
  1365. this.cb_COMM2_Use.Size = new System.Drawing.Size(15, 14);
  1366. this.cb_COMM2_Use.TabIndex = 22;
  1367. this.cb_COMM2_Use.UseVisualStyleBackColor = true;
  1368. //
  1369. // label4
  1370. //
  1371. this.label4.AutoSize = true;
  1372. this.label4.Location = new System.Drawing.Point(153, 207);
  1373. this.label4.Name = "label4";
  1374. this.label4.Size = new System.Drawing.Size(28, 12);
  1375. this.label4.TabIndex = 21;
  1376. this.label4.Text = "CH2";
  1377. //
  1378. // label3
  1379. //
  1380. this.label3.AutoSize = true;
  1381. this.label3.Location = new System.Drawing.Point(120, 207);
  1382. this.label3.Name = "label3";
  1383. this.label3.Size = new System.Drawing.Size(28, 12);
  1384. this.label3.TabIndex = 20;
  1385. this.label3.Text = "CH1";
  1386. //
  1387. // label2
  1388. //
  1389. this.label2.AutoSize = true;
  1390. this.label2.Location = new System.Drawing.Point(86, 207);
  1391. this.label2.Name = "label2";
  1392. this.label2.Size = new System.Drawing.Size(29, 12);
  1393. this.label2.TabIndex = 19;
  1394. this.label2.Text = "사용";
  1395. //
  1396. // lbl_COMM1
  1397. //
  1398. this.lbl_COMM1.AutoSize = true;
  1399. this.lbl_COMM1.Location = new System.Drawing.Point(22, 229);
  1400. this.lbl_COMM1.Name = "lbl_COMM1";
  1401. this.lbl_COMM1.Size = new System.Drawing.Size(59, 12);
  1402. this.lbl_COMM1.TabIndex = 18;
  1403. this.lbl_COMM1.Text = "통신보드1";
  1404. //
  1405. // cb_COMM1_CH2Use
  1406. //
  1407. this.cb_COMM1_CH2Use.AutoSize = true;
  1408. this.cb_COMM1_CH2Use.Location = new System.Drawing.Point(159, 229);
  1409. this.cb_COMM1_CH2Use.Name = "cb_COMM1_CH2Use";
  1410. this.cb_COMM1_CH2Use.Size = new System.Drawing.Size(15, 14);
  1411. this.cb_COMM1_CH2Use.TabIndex = 17;
  1412. this.cb_COMM1_CH2Use.UseVisualStyleBackColor = true;
  1413. //
  1414. // cb_COMM1_CH1Use
  1415. //
  1416. this.cb_COMM1_CH1Use.AutoSize = true;
  1417. this.cb_COMM1_CH1Use.Location = new System.Drawing.Point(126, 229);
  1418. this.cb_COMM1_CH1Use.Name = "cb_COMM1_CH1Use";
  1419. this.cb_COMM1_CH1Use.Size = new System.Drawing.Size(15, 14);
  1420. this.cb_COMM1_CH1Use.TabIndex = 16;
  1421. this.cb_COMM1_CH1Use.UseVisualStyleBackColor = true;
  1422. //
  1423. // cb_COMM1_Use
  1424. //
  1425. this.cb_COMM1_Use.AutoSize = true;
  1426. this.cb_COMM1_Use.Location = new System.Drawing.Point(93, 229);
  1427. this.cb_COMM1_Use.Name = "cb_COMM1_Use";
  1428. this.cb_COMM1_Use.Size = new System.Drawing.Size(15, 14);
  1429. this.cb_COMM1_Use.TabIndex = 15;
  1430. this.cb_COMM1_Use.UseVisualStyleBackColor = true;
  1431. //
  1432. // cb_COMM1_PARITY
  1433. //
  1434. this.cb_COMM1_PARITY.FormattingEnabled = true;
  1435. this.cb_COMM1_PARITY.Items.AddRange(new object[] {
  1436. "NONE",
  1437. "EVEN",
  1438. "ODD"});
  1439. this.cb_COMM1_PARITY.Location = new System.Drawing.Point(93, 162);
  1440. this.cb_COMM1_PARITY.Name = "cb_COMM1_PARITY";
  1441. this.cb_COMM1_PARITY.Size = new System.Drawing.Size(84, 20);
  1442. this.cb_COMM1_PARITY.TabIndex = 14;
  1443. //
  1444. // cb_COMM1_STOPBITS
  1445. //
  1446. this.cb_COMM1_STOPBITS.FormattingEnabled = true;
  1447. this.cb_COMM1_STOPBITS.Items.AddRange(new object[] {
  1448. "1",
  1449. "1.5",
  1450. "2"});
  1451. this.cb_COMM1_STOPBITS.Location = new System.Drawing.Point(93, 135);
  1452. this.cb_COMM1_STOPBITS.Name = "cb_COMM1_STOPBITS";
  1453. this.cb_COMM1_STOPBITS.Size = new System.Drawing.Size(84, 20);
  1454. this.cb_COMM1_STOPBITS.TabIndex = 13;
  1455. //
  1456. // cb_COMM1_PORT
  1457. //
  1458. this.cb_COMM1_PORT.FormattingEnabled = true;
  1459. this.cb_COMM1_PORT.Items.AddRange(new object[] {
  1460. "COM1",
  1461. "COM2",
  1462. "COM3",
  1463. "COM4",
  1464. "COM5",
  1465. "COM6",
  1466. "COM7",
  1467. "COM8"});
  1468. this.cb_COMM1_PORT.Location = new System.Drawing.Point(93, 54);
  1469. this.cb_COMM1_PORT.Name = "cb_COMM1_PORT";
  1470. this.cb_COMM1_PORT.Size = new System.Drawing.Size(84, 20);
  1471. this.cb_COMM1_PORT.TabIndex = 12;
  1472. //
  1473. // cb_COMM1_DATABITS
  1474. //
  1475. this.cb_COMM1_DATABITS.FormattingEnabled = true;
  1476. this.cb_COMM1_DATABITS.Items.AddRange(new object[] {
  1477. "6",
  1478. "7",
  1479. "8",
  1480. "9"});
  1481. this.cb_COMM1_DATABITS.Location = new System.Drawing.Point(93, 108);
  1482. this.cb_COMM1_DATABITS.Name = "cb_COMM1_DATABITS";
  1483. this.cb_COMM1_DATABITS.Size = new System.Drawing.Size(84, 20);
  1484. this.cb_COMM1_DATABITS.TabIndex = 11;
  1485. //
  1486. // cb_COMM1_BAUDRATE
  1487. //
  1488. this.cb_COMM1_BAUDRATE.FormattingEnabled = true;
  1489. this.cb_COMM1_BAUDRATE.Items.AddRange(new object[] {
  1490. "2400",
  1491. "4800",
  1492. "9600",
  1493. "19200",
  1494. "38400",
  1495. "76800",
  1496. "115200"});
  1497. this.cb_COMM1_BAUDRATE.Location = new System.Drawing.Point(93, 81);
  1498. this.cb_COMM1_BAUDRATE.Name = "cb_COMM1_BAUDRATE";
  1499. this.cb_COMM1_BAUDRATE.Size = new System.Drawing.Size(84, 20);
  1500. this.cb_COMM1_BAUDRATE.TabIndex = 10;
  1501. //
  1502. // label11
  1503. //
  1504. this.label11.AutoSize = true;
  1505. this.label11.Location = new System.Drawing.Point(22, 165);
  1506. this.label11.Name = "label11";
  1507. this.label11.Size = new System.Drawing.Size(37, 12);
  1508. this.label11.TabIndex = 9;
  1509. this.label11.Text = "Parity";
  1510. //
  1511. // label10
  1512. //
  1513. this.label10.AutoSize = true;
  1514. this.label10.Location = new System.Drawing.Point(22, 138);
  1515. this.label10.Name = "label10";
  1516. this.label10.Size = new System.Drawing.Size(44, 12);
  1517. this.label10.TabIndex = 7;
  1518. this.label10.Text = "StopBit";
  1519. //
  1520. // label9
  1521. //
  1522. this.label9.AutoSize = true;
  1523. this.label9.Location = new System.Drawing.Point(22, 111);
  1524. this.label9.Name = "label9";
  1525. this.label9.Size = new System.Drawing.Size(51, 12);
  1526. this.label9.TabIndex = 6;
  1527. this.label9.Text = "DataBits";
  1528. //
  1529. // label7
  1530. //
  1531. this.label7.AutoSize = true;
  1532. this.label7.Location = new System.Drawing.Point(22, 84);
  1533. this.label7.Name = "label7";
  1534. this.label7.Size = new System.Drawing.Size(59, 12);
  1535. this.label7.TabIndex = 5;
  1536. this.label7.Text = "BaudRate";
  1537. //
  1538. // label6
  1539. //
  1540. this.label6.AutoSize = true;
  1541. this.label6.Location = new System.Drawing.Point(22, 57);
  1542. this.label6.Name = "label6";
  1543. this.label6.Size = new System.Drawing.Size(27, 12);
  1544. this.label6.TabIndex = 4;
  1545. this.label6.Text = "Port";
  1546. //
  1547. // UiButton_cancel
  1548. //
  1549. this.UiButton_cancel.Font = new System.Drawing.Font("굴림", 9F);
  1550. this.UiButton_cancel.HighlightActiveButton = false;
  1551. this.UiButton_cancel.Location = new System.Drawing.Point(735, 586);
  1552. this.UiButton_cancel.Name = "UiButton_cancel";
  1553. this.UiButton_cancel.Size = new System.Drawing.Size(95, 32);
  1554. this.UiButton_cancel.TabIndex = 397;
  1555. this.UiButton_cancel.Text = "취소";
  1556. this.UiButton_cancel.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
  1557. this.UiButton_cancel.Click += new System.EventHandler(this.UiButton_cancel_Click);
  1558. //
  1559. // UiButton_Confirm
  1560. //
  1561. this.UiButton_Confirm.Font = new System.Drawing.Font("굴림", 9F);
  1562. this.UiButton_Confirm.HighlightActiveButton = false;
  1563. this.UiButton_Confirm.Location = new System.Drawing.Point(630, 586);
  1564. this.UiButton_Confirm.Name = "UiButton_Confirm";
  1565. this.UiButton_Confirm.Size = new System.Drawing.Size(95, 32);
  1566. this.UiButton_Confirm.TabIndex = 396;
  1567. this.UiButton_Confirm.Text = "확인";
  1568. this.UiButton_Confirm.VisualStyle = Janus.Windows.UI.VisualStyle.Office2007;
  1569. this.UiButton_Confirm.Click += new System.EventHandler(this.UiButton_Confirm_Click);
  1570. //
  1571. // uiGroupBox2
  1572. //
  1573. this.uiGroupBox2.BackgroundStyle = Janus.Windows.EditControls.BackgroundStyle.Panel;
  1574. this.uiGroupBox2.BorderColor = System.Drawing.Color.Transparent;
  1575. this.uiGroupBox2.Controls.Add(this.gb_COMM4);
  1576. this.uiGroupBox2.Controls.Add(this.UiButton_cancel);
  1577. this.uiGroupBox2.Controls.Add(this.gb_COMM3);
  1578. this.uiGroupBox2.Controls.Add(this.UiButton_Confirm);
  1579. this.uiGroupBox2.Controls.Add(this.gb_COMM2);
  1580. this.uiGroupBox2.Controls.Add(this.gb_COMM1);
  1581. this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
  1582. this.uiGroupBox2.Location = new System.Drawing.Point(0, 0);
  1583. this.uiGroupBox2.Name = "uiGroupBox2";
  1584. this.uiGroupBox2.Size = new System.Drawing.Size(859, 642);
  1585. this.uiGroupBox2.TabIndex = 398;
  1586. this.uiGroupBox2.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2007;
  1587. //
  1588. // gb_COMM4
  1589. //
  1590. this.gb_COMM4.BackColor = System.Drawing.Color.Transparent;
  1591. this.gb_COMM4.Controls.Add(this.cb_EMER_USE);
  1592. this.gb_COMM4.Controls.Add(this.cb_COMM4_PARITY);
  1593. this.gb_COMM4.Controls.Add(this.label26);
  1594. this.gb_COMM4.Controls.Add(this.cb_COMM4_STOPBITS);
  1595. this.gb_COMM4.Controls.Add(this.label25);
  1596. this.gb_COMM4.Controls.Add(this.cb_COMM4_PORT);
  1597. this.gb_COMM4.Controls.Add(this.label24);
  1598. this.gb_COMM4.Controls.Add(this.cb_COMM4_DATABITS);
  1599. this.gb_COMM4.Controls.Add(this.label23);
  1600. this.gb_COMM4.Controls.Add(this.cb_COMM4_BAUDRATE);
  1601. this.gb_COMM4.Controls.Add(this.label22);
  1602. this.gb_COMM4.Location = new System.Drawing.Point(630, 12);
  1603. this.gb_COMM4.Name = "gb_COMM4";
  1604. this.gb_COMM4.Size = new System.Drawing.Size(200, 561);
  1605. this.gb_COMM4.TabIndex = 2;
  1606. this.gb_COMM4.Text = "비상방송";
  1607. this.gb_COMM4.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2007;
  1608. //
  1609. // gb_COMM3
  1610. //
  1611. this.gb_COMM3.BackColor = System.Drawing.Color.Transparent;
  1612. this.gb_COMM3.Controls.Add(this.cb_KEYPAD_USE);
  1613. this.gb_COMM3.Controls.Add(this.cb_COMM3_PARITY);
  1614. this.gb_COMM3.Controls.Add(this.label21);
  1615. this.gb_COMM3.Controls.Add(this.cb_COMM3_STOPBITS);
  1616. this.gb_COMM3.Controls.Add(this.label20);
  1617. this.gb_COMM3.Controls.Add(this.cb_COMM3_PORT);
  1618. this.gb_COMM3.Controls.Add(this.label19);
  1619. this.gb_COMM3.Controls.Add(this.cb_COMM3_DATABITS);
  1620. this.gb_COMM3.Controls.Add(this.label18);
  1621. this.gb_COMM3.Controls.Add(this.cb_COMM3_BAUDRATE);
  1622. this.gb_COMM3.Controls.Add(this.label17);
  1623. this.gb_COMM3.Location = new System.Drawing.Point(424, 12);
  1624. this.gb_COMM3.Name = "gb_COMM3";
  1625. this.gb_COMM3.Size = new System.Drawing.Size(200, 561);
  1626. this.gb_COMM3.TabIndex = 1;
  1627. this.gb_COMM3.Text = "캐패드";
  1628. this.gb_COMM3.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2007;
  1629. //
  1630. // gb_COMM2
  1631. //
  1632. this.gb_COMM2.BackColor = System.Drawing.Color.Transparent;
  1633. this.gb_COMM2.Controls.Add(this.checkBox_All_1);
  1634. this.gb_COMM2.Controls.Add(this.cb_IO_USE);
  1635. this.gb_COMM2.Controls.Add(this.lbl_IO5);
  1636. this.gb_COMM2.Controls.Add(this.lbl_IO15);
  1637. this.gb_COMM2.Controls.Add(this.cb_IO5_Use);
  1638. this.gb_COMM2.Controls.Add(this.cb_COMM2_PARITY);
  1639. this.gb_COMM2.Controls.Add(this.cb_IO6_Use);
  1640. this.gb_COMM2.Controls.Add(this.cb_IO15_Use);
  1641. this.gb_COMM2.Controls.Add(this.lbl_IO4);
  1642. this.gb_COMM2.Controls.Add(this.cb_COMM2_STOPBITS);
  1643. this.gb_COMM2.Controls.Add(this.lbl_IO6);
  1644. this.gb_COMM2.Controls.Add(this.lbl_IO14);
  1645. this.gb_COMM2.Controls.Add(this.cb_IO4_Use);
  1646. this.gb_COMM2.Controls.Add(this.cb_COMM2_PORT);
  1647. this.gb_COMM2.Controls.Add(this.cb_IO7_Use);
  1648. this.gb_COMM2.Controls.Add(this.cb_IO14_Use);
  1649. this.gb_COMM2.Controls.Add(this.lbl_IO3);
  1650. this.gb_COMM2.Controls.Add(this.cb_COMM2_DATABITS);
  1651. this.gb_COMM2.Controls.Add(this.lbl_IO7);
  1652. this.gb_COMM2.Controls.Add(this.lbl_IO13);
  1653. this.gb_COMM2.Controls.Add(this.cb_IO3_Use);
  1654. this.gb_COMM2.Controls.Add(this.cb_COMM2_BAUDRATE);
  1655. this.gb_COMM2.Controls.Add(this.cb_IO8_Use);
  1656. this.gb_COMM2.Controls.Add(this.cb_IO13_Use);
  1657. this.gb_COMM2.Controls.Add(this.lbl_IO2);
  1658. this.gb_COMM2.Controls.Add(this.label12);
  1659. this.gb_COMM2.Controls.Add(this.lbl_IO8);
  1660. this.gb_COMM2.Controls.Add(this.lbl_IO12);
  1661. this.gb_COMM2.Controls.Add(this.cb_IO2_Use);
  1662. this.gb_COMM2.Controls.Add(this.label13);
  1663. this.gb_COMM2.Controls.Add(this.cb_IO9_Use);
  1664. this.gb_COMM2.Controls.Add(this.cb_IO12_Use);
  1665. this.gb_COMM2.Controls.Add(this.lbl_IO1);
  1666. this.gb_COMM2.Controls.Add(this.label14);
  1667. this.gb_COMM2.Controls.Add(this.lbl_IO9);
  1668. this.gb_COMM2.Controls.Add(this.lbl_IO11);
  1669. this.gb_COMM2.Controls.Add(this.cb_IO1_Use);
  1670. this.gb_COMM2.Controls.Add(this.label15);
  1671. this.gb_COMM2.Controls.Add(this.cb_IO10_Use);
  1672. this.gb_COMM2.Controls.Add(this.cb_IO11_Use);
  1673. this.gb_COMM2.Controls.Add(this.label53);
  1674. this.gb_COMM2.Controls.Add(this.label16);
  1675. this.gb_COMM2.Controls.Add(this.lbl_IO10);
  1676. this.gb_COMM2.Location = new System.Drawing.Point(218, 11);
  1677. this.gb_COMM2.Name = "gb_COMM2";
  1678. this.gb_COMM2.Size = new System.Drawing.Size(200, 562);
  1679. this.gb_COMM2.TabIndex = 1;
  1680. this.gb_COMM2.Text = "I/O 보드";
  1681. this.gb_COMM2.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2007;
  1682. //
  1683. // checkBox_All_1
  1684. //
  1685. this.checkBox_All_1.AutoSize = true;
  1686. this.checkBox_All_1.Location = new System.Drawing.Point(29, 534);
  1687. this.checkBox_All_1.Name = "checkBox_All_1";
  1688. this.checkBox_All_1.Size = new System.Drawing.Size(76, 16);
  1689. this.checkBox_All_1.TabIndex = 398;
  1690. this.checkBox_All_1.Text = "전부 체크";
  1691. this.checkBox_All_1.UseVisualStyleBackColor = true;
  1692. this.checkBox_All_1.CheckedChanged += new System.EventHandler(this.checkBox_All_1_CheckedChanged);
  1693. //
  1694. // gb_COMM1
  1695. //
  1696. this.gb_COMM1.BackColor = System.Drawing.Color.Transparent;
  1697. this.gb_COMM1.Controls.Add(this.checkBox1);
  1698. this.gb_COMM1.Controls.Add(this.cb_COMM_USE);
  1699. this.gb_COMM1.Controls.Add(this.cb_COMM1_PORT);
  1700. this.gb_COMM1.Controls.Add(this.lbl_COMM15);
  1701. this.gb_COMM1.Controls.Add(this.label6);
  1702. this.gb_COMM1.Controls.Add(this.cb_COMM15_CH2Use);
  1703. this.gb_COMM1.Controls.Add(this.label7);
  1704. this.gb_COMM1.Controls.Add(this.cb_COMM15_CH1Use);
  1705. this.gb_COMM1.Controls.Add(this.label9);
  1706. this.gb_COMM1.Controls.Add(this.cb_COMM15_Use);
  1707. this.gb_COMM1.Controls.Add(this.label10);
  1708. this.gb_COMM1.Controls.Add(this.lbl_COMM14);
  1709. this.gb_COMM1.Controls.Add(this.label11);
  1710. this.gb_COMM1.Controls.Add(this.cb_COMM14_CH2Use);
  1711. this.gb_COMM1.Controls.Add(this.cb_COMM1_BAUDRATE);
  1712. this.gb_COMM1.Controls.Add(this.cb_COMM14_CH1Use);
  1713. this.gb_COMM1.Controls.Add(this.cb_COMM1_DATABITS);
  1714. this.gb_COMM1.Controls.Add(this.cb_COMM14_Use);
  1715. this.gb_COMM1.Controls.Add(this.cb_COMM1_STOPBITS);
  1716. this.gb_COMM1.Controls.Add(this.lbl_COMM13);
  1717. this.gb_COMM1.Controls.Add(this.cb_COMM1_PARITY);
  1718. this.gb_COMM1.Controls.Add(this.cb_COMM13_CH2Use);
  1719. this.gb_COMM1.Controls.Add(this.cb_COMM1_Use);
  1720. this.gb_COMM1.Controls.Add(this.cb_COMM13_CH1Use);
  1721. this.gb_COMM1.Controls.Add(this.cb_COMM1_CH1Use);
  1722. this.gb_COMM1.Controls.Add(this.cb_COMM13_Use);
  1723. this.gb_COMM1.Controls.Add(this.cb_COMM1_CH2Use);
  1724. this.gb_COMM1.Controls.Add(this.lbl_COMM12);
  1725. this.gb_COMM1.Controls.Add(this.lbl_COMM1);
  1726. this.gb_COMM1.Controls.Add(this.cb_COMM12_CH2Use);
  1727. this.gb_COMM1.Controls.Add(this.label2);
  1728. this.gb_COMM1.Controls.Add(this.cb_COMM12_CH1Use);
  1729. this.gb_COMM1.Controls.Add(this.label3);
  1730. this.gb_COMM1.Controls.Add(this.cb_COMM12_Use);
  1731. this.gb_COMM1.Controls.Add(this.label4);
  1732. this.gb_COMM1.Controls.Add(this.lbl_COMM11);
  1733. this.gb_COMM1.Controls.Add(this.cb_COMM2_Use);
  1734. this.gb_COMM1.Controls.Add(this.cb_COMM11_CH2Use);
  1735. this.gb_COMM1.Controls.Add(this.cb_COMM2_CH1Use);
  1736. this.gb_COMM1.Controls.Add(this.cb_COMM11_CH1Use);
  1737. this.gb_COMM1.Controls.Add(this.cb_COMM2_CH2Use);
  1738. this.gb_COMM1.Controls.Add(this.cb_COMM11_Use);
  1739. this.gb_COMM1.Controls.Add(this.lbl_COMM2);
  1740. this.gb_COMM1.Controls.Add(this.lbl_COMM10);
  1741. this.gb_COMM1.Controls.Add(this.cb_COMM3_Use);
  1742. this.gb_COMM1.Controls.Add(this.cb_COMM10_CH2Use);
  1743. this.gb_COMM1.Controls.Add(this.cb_COMM3_CH1Use);
  1744. this.gb_COMM1.Controls.Add(this.cb_COMM10_CH1Use);
  1745. this.gb_COMM1.Controls.Add(this.cb_COMM3_CH2Use);
  1746. this.gb_COMM1.Controls.Add(this.cb_COMM10_Use);
  1747. this.gb_COMM1.Controls.Add(this.lbl_COMM3);
  1748. this.gb_COMM1.Controls.Add(this.lbl_COMM9);
  1749. this.gb_COMM1.Controls.Add(this.cb_COMM4_Use);
  1750. this.gb_COMM1.Controls.Add(this.cb_COMM9_CH2Use);
  1751. this.gb_COMM1.Controls.Add(this.cb_COMM4_CH1Use);
  1752. this.gb_COMM1.Controls.Add(this.cb_COMM9_CH1Use);
  1753. this.gb_COMM1.Controls.Add(this.cb_COMM4_CH2Use);
  1754. this.gb_COMM1.Controls.Add(this.cb_COMM9_Use);
  1755. this.gb_COMM1.Controls.Add(this.lbl_COMM4);
  1756. this.gb_COMM1.Controls.Add(this.lbl_COMM8);
  1757. this.gb_COMM1.Controls.Add(this.cb_COMM5_Use);
  1758. this.gb_COMM1.Controls.Add(this.cb_COMM8_CH2Use);
  1759. this.gb_COMM1.Controls.Add(this.cb_COMM5_CH1Use);
  1760. this.gb_COMM1.Controls.Add(this.cb_COMM8_CH1Use);
  1761. this.gb_COMM1.Controls.Add(this.cb_COMM5_CH2Use);
  1762. this.gb_COMM1.Controls.Add(this.cb_COMM8_Use);
  1763. this.gb_COMM1.Controls.Add(this.lbl_COMM5);
  1764. this.gb_COMM1.Controls.Add(this.lbl_COMM7);
  1765. this.gb_COMM1.Controls.Add(this.cb_COMM6_Use);
  1766. this.gb_COMM1.Controls.Add(this.cb_COMM7_CH2Use);
  1767. this.gb_COMM1.Controls.Add(this.cb_COMM6_CH1Use);
  1768. this.gb_COMM1.Controls.Add(this.cb_COMM7_CH1Use);
  1769. this.gb_COMM1.Controls.Add(this.cb_COMM6_CH2Use);
  1770. this.gb_COMM1.Controls.Add(this.cb_COMM7_Use);
  1771. this.gb_COMM1.Controls.Add(this.lbl_COMM6);
  1772. this.gb_COMM1.Location = new System.Drawing.Point(12, 11);
  1773. this.gb_COMM1.Name = "gb_COMM1";
  1774. this.gb_COMM1.Size = new System.Drawing.Size(200, 562);
  1775. this.gb_COMM1.TabIndex = 0;
  1776. this.gb_COMM1.Text = "통신보드";
  1777. this.gb_COMM1.VisualStyle = Janus.Windows.UI.Dock.PanelVisualStyle.Office2007;
  1778. //
  1779. // checkBox1
  1780. //
  1781. this.checkBox1.AutoSize = true;
  1782. this.checkBox1.Location = new System.Drawing.Point(24, 534);
  1783. this.checkBox1.Name = "checkBox1";
  1784. this.checkBox1.Size = new System.Drawing.Size(76, 16);
  1785. this.checkBox1.TabIndex = 399;
  1786. this.checkBox1.Text = "전부 체크";
  1787. this.checkBox1.UseVisualStyleBackColor = true;
  1788. this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
  1789. //
  1790. // officeFormAdorner
  1791. //
  1792. this.officeFormAdorner.Form = this;
  1793. this.officeFormAdorner.Office2007CustomColor = System.Drawing.Color.Empty;
  1794. //
  1795. // Form_Receiver_Port
  1796. //
  1797. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
  1798. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1799. this.ClientSize = new System.Drawing.Size(859, 642);
  1800. this.Controls.Add(this.uiGroupBox2);
  1801. this.MaximizeBox = false;
  1802. this.MinimizeBox = false;
  1803. this.Name = "Form_Receiver_Port";
  1804. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  1805. this.Text = "수신기 통신포트 설정";
  1806. ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox2)).EndInit();
  1807. this.uiGroupBox2.ResumeLayout(false);
  1808. ((System.ComponentModel.ISupportInitialize)(this.gb_COMM4)).EndInit();
  1809. this.gb_COMM4.ResumeLayout(false);
  1810. this.gb_COMM4.PerformLayout();
  1811. ((System.ComponentModel.ISupportInitialize)(this.gb_COMM3)).EndInit();
  1812. this.gb_COMM3.ResumeLayout(false);
  1813. this.gb_COMM3.PerformLayout();
  1814. ((System.ComponentModel.ISupportInitialize)(this.gb_COMM2)).EndInit();
  1815. this.gb_COMM2.ResumeLayout(false);
  1816. this.gb_COMM2.PerformLayout();
  1817. ((System.ComponentModel.ISupportInitialize)(this.gb_COMM1)).EndInit();
  1818. this.gb_COMM1.ResumeLayout(false);
  1819. this.gb_COMM1.PerformLayout();
  1820. ((System.ComponentModel.ISupportInitialize)(this.officeFormAdorner)).EndInit();
  1821. this.ResumeLayout(false);
  1822. }
  1823. #endregion
  1824. private System.Windows.Forms.ComboBox cb_COMM4_PARITY;
  1825. private System.Windows.Forms.ComboBox cb_COMM4_STOPBITS;
  1826. private System.Windows.Forms.ComboBox cb_COMM4_PORT;
  1827. private System.Windows.Forms.ComboBox cb_COMM4_DATABITS;
  1828. private System.Windows.Forms.ComboBox cb_COMM4_BAUDRATE;
  1829. private System.Windows.Forms.Label label22;
  1830. private System.Windows.Forms.Label label23;
  1831. private System.Windows.Forms.Label label24;
  1832. private System.Windows.Forms.Label label25;
  1833. private System.Windows.Forms.Label label26;
  1834. private System.Windows.Forms.ComboBox cb_COMM3_PARITY;
  1835. private System.Windows.Forms.ComboBox cb_COMM3_STOPBITS;
  1836. private System.Windows.Forms.ComboBox cb_COMM3_PORT;
  1837. private System.Windows.Forms.ComboBox cb_COMM3_DATABITS;
  1838. private System.Windows.Forms.ComboBox cb_COMM3_BAUDRATE;
  1839. private System.Windows.Forms.Label label17;
  1840. private System.Windows.Forms.Label label18;
  1841. private System.Windows.Forms.Label label19;
  1842. private System.Windows.Forms.Label label20;
  1843. private System.Windows.Forms.Label label21;
  1844. private System.Windows.Forms.ComboBox cb_COMM2_PARITY;
  1845. private System.Windows.Forms.ComboBox cb_COMM2_STOPBITS;
  1846. private System.Windows.Forms.ComboBox cb_COMM2_PORT;
  1847. private System.Windows.Forms.ComboBox cb_COMM2_DATABITS;
  1848. private System.Windows.Forms.ComboBox cb_COMM2_BAUDRATE;
  1849. private System.Windows.Forms.Label label12;
  1850. private System.Windows.Forms.Label label13;
  1851. private System.Windows.Forms.Label label14;
  1852. private System.Windows.Forms.Label label15;
  1853. private System.Windows.Forms.Label label16;
  1854. private System.Windows.Forms.ComboBox cb_COMM1_PARITY;
  1855. private System.Windows.Forms.ComboBox cb_COMM1_STOPBITS;
  1856. private System.Windows.Forms.ComboBox cb_COMM1_PORT;
  1857. private System.Windows.Forms.ComboBox cb_COMM1_DATABITS;
  1858. private System.Windows.Forms.ComboBox cb_COMM1_BAUDRATE;
  1859. private System.Windows.Forms.Label label11;
  1860. private System.Windows.Forms.Label label10;
  1861. private System.Windows.Forms.Label label9;
  1862. private System.Windows.Forms.Label label7;
  1863. private System.Windows.Forms.Label label6;
  1864. private Janus.Windows.EditControls.UIButton UiButton_cancel;
  1865. private Janus.Windows.EditControls.UIButton UiButton_Confirm;
  1866. private System.Windows.Forms.Label lbl_IO15;
  1867. private System.Windows.Forms.CheckBox cb_IO15_Use;
  1868. private System.Windows.Forms.Label lbl_IO14;
  1869. private System.Windows.Forms.CheckBox cb_IO14_Use;
  1870. private System.Windows.Forms.Label lbl_IO13;
  1871. private System.Windows.Forms.CheckBox cb_IO13_Use;
  1872. private System.Windows.Forms.Label lbl_IO12;
  1873. private System.Windows.Forms.CheckBox cb_IO12_Use;
  1874. private System.Windows.Forms.Label lbl_IO11;
  1875. private System.Windows.Forms.CheckBox cb_IO11_Use;
  1876. private System.Windows.Forms.Label lbl_IO10;
  1877. private System.Windows.Forms.Label label53;
  1878. private System.Windows.Forms.CheckBox cb_IO10_Use;
  1879. private System.Windows.Forms.CheckBox cb_IO1_Use;
  1880. private System.Windows.Forms.Label lbl_IO9;
  1881. private System.Windows.Forms.Label lbl_IO1;
  1882. private System.Windows.Forms.CheckBox cb_IO9_Use;
  1883. private System.Windows.Forms.CheckBox cb_IO2_Use;
  1884. private System.Windows.Forms.Label lbl_IO8;
  1885. private System.Windows.Forms.Label lbl_IO2;
  1886. private System.Windows.Forms.CheckBox cb_IO8_Use;
  1887. private System.Windows.Forms.CheckBox cb_IO3_Use;
  1888. private System.Windows.Forms.Label lbl_IO7;
  1889. private System.Windows.Forms.Label lbl_IO3;
  1890. private System.Windows.Forms.CheckBox cb_IO7_Use;
  1891. private System.Windows.Forms.CheckBox cb_IO4_Use;
  1892. private System.Windows.Forms.Label lbl_IO6;
  1893. private System.Windows.Forms.Label lbl_IO4;
  1894. private System.Windows.Forms.CheckBox cb_IO6_Use;
  1895. private System.Windows.Forms.CheckBox cb_IO5_Use;
  1896. private System.Windows.Forms.Label lbl_IO5;
  1897. private System.Windows.Forms.Label lbl_COMM15;
  1898. private System.Windows.Forms.CheckBox cb_COMM15_CH2Use;
  1899. private System.Windows.Forms.CheckBox cb_COMM15_CH1Use;
  1900. private System.Windows.Forms.CheckBox cb_COMM15_Use;
  1901. private System.Windows.Forms.Label lbl_COMM14;
  1902. private System.Windows.Forms.CheckBox cb_COMM14_CH2Use;
  1903. private System.Windows.Forms.CheckBox cb_COMM14_CH1Use;
  1904. private System.Windows.Forms.CheckBox cb_COMM14_Use;
  1905. private System.Windows.Forms.Label lbl_COMM13;
  1906. private System.Windows.Forms.CheckBox cb_COMM13_CH2Use;
  1907. private System.Windows.Forms.CheckBox cb_COMM13_CH1Use;
  1908. private System.Windows.Forms.CheckBox cb_COMM13_Use;
  1909. private System.Windows.Forms.Label lbl_COMM12;
  1910. private System.Windows.Forms.CheckBox cb_COMM12_CH2Use;
  1911. private System.Windows.Forms.CheckBox cb_COMM12_CH1Use;
  1912. private System.Windows.Forms.CheckBox cb_COMM12_Use;
  1913. private System.Windows.Forms.Label lbl_COMM11;
  1914. private System.Windows.Forms.CheckBox cb_COMM11_CH2Use;
  1915. private System.Windows.Forms.CheckBox cb_COMM11_CH1Use;
  1916. private System.Windows.Forms.CheckBox cb_COMM11_Use;
  1917. private System.Windows.Forms.Label lbl_COMM10;
  1918. private System.Windows.Forms.CheckBox cb_COMM10_CH2Use;
  1919. private System.Windows.Forms.CheckBox cb_COMM10_CH1Use;
  1920. private System.Windows.Forms.CheckBox cb_COMM10_Use;
  1921. private System.Windows.Forms.Label lbl_COMM9;
  1922. private System.Windows.Forms.CheckBox cb_COMM9_CH2Use;
  1923. private System.Windows.Forms.CheckBox cb_COMM9_CH1Use;
  1924. private System.Windows.Forms.CheckBox cb_COMM9_Use;
  1925. private System.Windows.Forms.Label lbl_COMM8;
  1926. private System.Windows.Forms.CheckBox cb_COMM8_CH2Use;
  1927. private System.Windows.Forms.CheckBox cb_COMM8_CH1Use;
  1928. private System.Windows.Forms.CheckBox cb_COMM8_Use;
  1929. private System.Windows.Forms.Label lbl_COMM7;
  1930. private System.Windows.Forms.CheckBox cb_COMM7_CH2Use;
  1931. private System.Windows.Forms.CheckBox cb_COMM7_CH1Use;
  1932. private System.Windows.Forms.CheckBox cb_COMM7_Use;
  1933. private System.Windows.Forms.Label lbl_COMM6;
  1934. private System.Windows.Forms.CheckBox cb_COMM6_CH2Use;
  1935. private System.Windows.Forms.CheckBox cb_COMM6_CH1Use;
  1936. private System.Windows.Forms.CheckBox cb_COMM6_Use;
  1937. private System.Windows.Forms.Label lbl_COMM5;
  1938. private System.Windows.Forms.CheckBox cb_COMM5_CH2Use;
  1939. private System.Windows.Forms.CheckBox cb_COMM5_CH1Use;
  1940. private System.Windows.Forms.CheckBox cb_COMM5_Use;
  1941. private System.Windows.Forms.Label lbl_COMM4;
  1942. private System.Windows.Forms.CheckBox cb_COMM4_CH2Use;
  1943. private System.Windows.Forms.CheckBox cb_COMM4_CH1Use;
  1944. private System.Windows.Forms.CheckBox cb_COMM4_Use;
  1945. private System.Windows.Forms.Label lbl_COMM3;
  1946. private System.Windows.Forms.CheckBox cb_COMM3_CH2Use;
  1947. private System.Windows.Forms.CheckBox cb_COMM3_CH1Use;
  1948. private System.Windows.Forms.CheckBox cb_COMM3_Use;
  1949. private System.Windows.Forms.Label lbl_COMM2;
  1950. private System.Windows.Forms.CheckBox cb_COMM2_CH2Use;
  1951. private System.Windows.Forms.CheckBox cb_COMM2_CH1Use;
  1952. private System.Windows.Forms.CheckBox cb_COMM2_Use;
  1953. private System.Windows.Forms.Label label4;
  1954. private System.Windows.Forms.Label label3;
  1955. private System.Windows.Forms.Label label2;
  1956. private System.Windows.Forms.Label lbl_COMM1;
  1957. private System.Windows.Forms.CheckBox cb_COMM1_CH2Use;
  1958. private System.Windows.Forms.CheckBox cb_COMM1_CH1Use;
  1959. private System.Windows.Forms.CheckBox cb_COMM1_Use;
  1960. private System.Windows.Forms.CheckBox cb_EMER_USE;
  1961. private System.Windows.Forms.CheckBox cb_KEYPAD_USE;
  1962. private System.Windows.Forms.CheckBox cb_IO_USE;
  1963. private System.Windows.Forms.CheckBox cb_COMM_USE;
  1964. private Janus.Windows.EditControls.UIGroupBox uiGroupBox2;
  1965. private Janus.Windows.EditControls.UIGroupBox gb_COMM1;
  1966. private Janus.Windows.Ribbon.OfficeFormAdorner officeFormAdorner;
  1967. private Janus.Windows.Common.VisualStyleManager visualStyleManager;
  1968. private Janus.Windows.EditControls.UIGroupBox gb_COMM3;
  1969. private Janus.Windows.EditControls.UIGroupBox gb_COMM2;
  1970. private Janus.Windows.EditControls.UIGroupBox gb_COMM4;
  1971. private System.Windows.Forms.CheckBox checkBox_All_1;
  1972. private System.Windows.Forms.CheckBox checkBox1;
  1973. }
  1974. }