Main.Designer.cs 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590
  1. namespace APL_TestCheck
  2. {
  3. partial class Main
  4. {
  5. /// <summary>
  6. /// 필수 디자이너 변수입니다.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 사용 중인 모든 리소스를 정리합니다.
  11. /// </summary>
  12. /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 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 디자이너에서 생성한 코드
  22. /// <summary>
  23. /// 디자이너 지원에 필요한 메서드입니다.
  24. /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
  30. this.serialPort = new System.IO.Ports.SerialPort(this.components);
  31. this.panel_Main = new System.Windows.Forms.Panel();
  32. this.label_SerialWrite = new System.Windows.Forms.Label();
  33. this.button_Path = new System.Windows.Forms.Button();
  34. this.button_Clear = new System.Windows.Forms.Button();
  35. this.checkBox_Edit = new System.Windows.Forms.CheckBox();
  36. this.checkBox_TerminalStop = new System.Windows.Forms.CheckBox();
  37. this.panel4 = new System.Windows.Forms.Panel();
  38. this.pictureBox5 = new System.Windows.Forms.PictureBox();
  39. this.label6 = new System.Windows.Forms.Label();
  40. this.panel1 = new System.Windows.Forms.Panel();
  41. this.panel_Sninsert = new System.Windows.Forms.Panel();
  42. this.label_Sninsert = new System.Windows.Forms.Label();
  43. this.panel_SnCheck = new System.Windows.Forms.Panel();
  44. this.label_SnCheck = new System.Windows.Forms.Label();
  45. this.panel_Merge = new System.Windows.Forms.Panel();
  46. this.label_Merge = new System.Windows.Forms.Label();
  47. this.groupBox9 = new System.Windows.Forms.GroupBox();
  48. this.panel_Port = new System.Windows.Forms.Panel();
  49. this.label_Port = new System.Windows.Forms.Label();
  50. this.comboBox_Port = new System.Windows.Forms.ComboBox();
  51. this.comboBox_bps = new System.Windows.Forms.ComboBox();
  52. this.cmCom_Port = new System.Windows.Forms.Label();
  53. this.cmBaudRate = new System.Windows.Forms.Label();
  54. this.label1 = new System.Windows.Forms.Label();
  55. this.pictureBox6 = new System.Windows.Forms.PictureBox();
  56. this.panel_SensorMode = new System.Windows.Forms.Panel();
  57. this.label_SensorTest = new System.Windows.Forms.Label();
  58. this.panel_Catm1Mode = new System.Windows.Forms.Panel();
  59. this.label_Catm1Test = new System.Windows.Forms.Label();
  60. this.panel_GpsMode = new System.Windows.Forms.Panel();
  61. this.label_GPSTest = new System.Windows.Forms.Label();
  62. this.panel_SensorTest = new System.Windows.Forms.Panel();
  63. this.checkBox_Usim_Imei_Phone_Num = new System.Windows.Forms.CheckBox();
  64. this.button_Write = new System.Windows.Forms.Button();
  65. this.button_Rewrite = new System.Windows.Forms.Button();
  66. this.textBox_PrevNum = new System.Windows.Forms.TextBox();
  67. this.textBox_Write = new System.Windows.Forms.TextBox();
  68. this.textBox_AfterNum = new System.Windows.Forms.TextBox();
  69. this.button_SnRead = new System.Windows.Forms.Button();
  70. this.numericUpDown_ExcelOpenDelay = new System.Windows.Forms.NumericUpDown();
  71. this.button_ExcelOpen = new System.Windows.Forms.Button();
  72. this.checkBox_ExcelOpen = new System.Windows.Forms.CheckBox();
  73. this.richTextBox_Sensor = new System.Windows.Forms.RichTextBox();
  74. this.dataGridView_Sensor = new System.Windows.Forms.DataGridView();
  75. this.ProductNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
  76. this.SN = new System.Windows.Forms.DataGridViewTextBoxColumn();
  77. this.IMEI = new System.Windows.Forms.DataGridViewTextBoxColumn();
  78. this.Phone = new System.Windows.Forms.DataGridViewTextBoxColumn();
  79. this.USIM = new System.Windows.Forms.DataGridViewTextBoxColumn();
  80. this.Version = new System.Windows.Forms.DataGridViewTextBoxColumn();
  81. this.BatteryVoltage = new System.Windows.Forms.DataGridViewTextBoxColumn();
  82. this.SystemVoltage = new System.Windows.Forms.DataGridViewTextBoxColumn();
  83. this.Temp = new System.Windows.Forms.DataGridViewTextBoxColumn();
  84. this.BMA_X = new System.Windows.Forms.DataGridViewTextBoxColumn();
  85. this.BMA_Y = new System.Windows.Forms.DataGridViewTextBoxColumn();
  86. this.BMA_Z = new System.Windows.Forms.DataGridViewTextBoxColumn();
  87. this.BLE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  88. this.BattMin = new System.Windows.Forms.DataGridViewTextBoxColumn();
  89. this.SystemVoltmin = new System.Windows.Forms.DataGridViewTextBoxColumn();
  90. this.TempMax = new System.Windows.Forms.DataGridViewTextBoxColumn();
  91. this.TempMin = new System.Windows.Forms.DataGridViewTextBoxColumn();
  92. this.BMAX_Max = new System.Windows.Forms.DataGridViewTextBoxColumn();
  93. this.BMAX_Min = new System.Windows.Forms.DataGridViewTextBoxColumn();
  94. this.BMAY_Max = new System.Windows.Forms.DataGridViewTextBoxColumn();
  95. this.BMAY_Min = new System.Windows.Forms.DataGridViewTextBoxColumn();
  96. this.BMAZ_Max = new System.Windows.Forms.DataGridViewTextBoxColumn();
  97. this.BMAZ_Min = new System.Windows.Forms.DataGridViewTextBoxColumn();
  98. this.panel_MergeMain = new System.Windows.Forms.Panel();
  99. this.label7 = new System.Windows.Forms.Label();
  100. this.label_Cnt = new System.Windows.Forms.Label();
  101. this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
  102. this.button_Merge = new System.Windows.Forms.Button();
  103. this.button_PrevFile = new System.Windows.Forms.Button();
  104. this.button_AfterFile = new System.Windows.Forms.Button();
  105. this.listBox_AfterFile = new System.Windows.Forms.ListBox();
  106. this.listBox_PreviousFile = new System.Windows.Forms.ListBox();
  107. this.progressBar_Merge = new System.Windows.Forms.ProgressBar();
  108. this.panel_Catm1Test = new System.Windows.Forms.Panel();
  109. this.richTextBox_catm1 = new System.Windows.Forms.RichTextBox();
  110. this.dataGridView_Catm1 = new System.Windows.Forms.DataGridView();
  111. this.Catm1_SerialNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
  112. this.Modem_Ver = new System.Windows.Forms.DataGridViewTextBoxColumn();
  113. this.RSRP = new System.Windows.Forms.DataGridViewTextBoxColumn();
  114. this.RSRQ = new System.Windows.Forms.DataGridViewTextBoxColumn();
  115. this.panel_SnCheckMain = new System.Windows.Forms.Panel();
  116. this.button_DiffClear = new System.Windows.Forms.Button();
  117. this.button_DuplicateClear = new System.Windows.Forms.Button();
  118. this.button_SNClear = new System.Windows.Forms.Button();
  119. this.button_ChkStart = new System.Windows.Forms.Button();
  120. this.label_Diff = new System.Windows.Forms.Label();
  121. this.label8 = new System.Windows.Forms.Label();
  122. this.label_Duplicate = new System.Windows.Forms.Label();
  123. this.listBox_Diff = new System.Windows.Forms.ListBox();
  124. this.listBox_ProductDuplicate = new System.Windows.Forms.ListBox();
  125. this.listBox_SNDuplicate = new System.Windows.Forms.ListBox();
  126. this.dataGridView_Chk = new System.Windows.Forms.DataGridView();
  127. this.button_FileFindLoad = new System.Windows.Forms.Button();
  128. this.progressBar2 = new System.Windows.Forms.ProgressBar();
  129. this.panel_GpsTest = new System.Windows.Forms.Panel();
  130. this.button_GpsClear = new System.Windows.Forms.Button();
  131. this.button_GpsTestSave = new System.Windows.Forms.Button();
  132. this.checkBox_GPGSV = new System.Windows.Forms.CheckBox();
  133. this.dataGridView_Gps = new System.Windows.Forms.DataGridView();
  134. this.Gps_SerialNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
  135. this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  136. this.LimitMax = new System.Windows.Forms.DataGridViewTextBoxColumn();
  137. this.LimitMin = new System.Windows.Forms.DataGridViewTextBoxColumn();
  138. this.Sec = new System.Windows.Forms.DataGridViewTextBoxColumn();
  139. this.MaxSec = new System.Windows.Forms.DataGridViewTextBoxColumn();
  140. this.MinSec = new System.Windows.Forms.DataGridViewTextBoxColumn();
  141. this.richTextBox_Gps = new System.Windows.Forms.RichTextBox();
  142. this.panel_SnTest = new System.Windows.Forms.Panel();
  143. this.radioButton_Usim = new System.Windows.Forms.RadioButton();
  144. this.radioButton_Imei = new System.Windows.Forms.RadioButton();
  145. this.dataGridView_SnInsert = new System.Windows.Forms.DataGridView();
  146. this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  147. this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  148. this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  149. this.folderBrowserDialog_Mainpath = new System.Windows.Forms.FolderBrowserDialog();
  150. this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
  151. this.label_Version = new System.Windows.Forms.Label();
  152. this.panel_Main.SuspendLayout();
  153. this.panel4.SuspendLayout();
  154. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
  155. this.panel1.SuspendLayout();
  156. this.panel_Sninsert.SuspendLayout();
  157. this.panel_SnCheck.SuspendLayout();
  158. this.panel_Merge.SuspendLayout();
  159. this.groupBox9.SuspendLayout();
  160. this.panel_Port.SuspendLayout();
  161. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
  162. this.panel_SensorMode.SuspendLayout();
  163. this.panel_Catm1Mode.SuspendLayout();
  164. this.panel_GpsMode.SuspendLayout();
  165. this.panel_SensorTest.SuspendLayout();
  166. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ExcelOpenDelay)).BeginInit();
  167. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Sensor)).BeginInit();
  168. this.panel_MergeMain.SuspendLayout();
  169. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
  170. this.panel_Catm1Test.SuspendLayout();
  171. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Catm1)).BeginInit();
  172. this.panel_SnCheckMain.SuspendLayout();
  173. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Chk)).BeginInit();
  174. this.panel_GpsTest.SuspendLayout();
  175. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Gps)).BeginInit();
  176. this.panel_SnTest.SuspendLayout();
  177. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_SnInsert)).BeginInit();
  178. this.SuspendLayout();
  179. //
  180. // serialPort
  181. //
  182. this.serialPort.BaudRate = 115200;
  183. //
  184. // panel_Main
  185. //
  186. this.panel_Main.BackColor = System.Drawing.Color.SkyBlue;
  187. this.panel_Main.Controls.Add(this.label_SerialWrite);
  188. this.panel_Main.Controls.Add(this.button_Path);
  189. this.panel_Main.Controls.Add(this.button_Clear);
  190. this.panel_Main.Controls.Add(this.checkBox_Edit);
  191. this.panel_Main.Controls.Add(this.checkBox_TerminalStop);
  192. this.panel_Main.Controls.Add(this.panel4);
  193. this.panel_Main.Controls.Add(this.label6);
  194. this.panel_Main.Controls.Add(this.panel1);
  195. this.panel_Main.Controls.Add(this.panel_SensorTest);
  196. this.panel_Main.Controls.Add(this.panel_MergeMain);
  197. this.panel_Main.Controls.Add(this.panel_Catm1Test);
  198. this.panel_Main.Controls.Add(this.panel_SnCheckMain);
  199. this.panel_Main.Controls.Add(this.panel_GpsTest);
  200. this.panel_Main.Controls.Add(this.panel_SnTest);
  201. this.panel_Main.Location = new System.Drawing.Point(0, 0);
  202. this.panel_Main.Name = "panel_Main";
  203. this.panel_Main.Size = new System.Drawing.Size(1356, 710);
  204. this.panel_Main.TabIndex = 1;
  205. this.panel_Main.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel_Main_MouseDown);
  206. this.panel_Main.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_Main_MouseMove);
  207. this.panel_Main.MouseUp += new System.Windows.Forms.MouseEventHandler(this.panel_Main_MouseUp);
  208. //
  209. // label_SerialWrite
  210. //
  211. this.label_SerialWrite.AutoSize = true;
  212. this.label_SerialWrite.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Bold);
  213. this.label_SerialWrite.Location = new System.Drawing.Point(366, 17);
  214. this.label_SerialWrite.Name = "label_SerialWrite";
  215. this.label_SerialWrite.Size = new System.Drawing.Size(0, 14);
  216. this.label_SerialWrite.TabIndex = 93;
  217. //
  218. // button_Path
  219. //
  220. this.button_Path.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  221. this.button_Path.Location = new System.Drawing.Point(4, 4);
  222. this.button_Path.Name = "button_Path";
  223. this.button_Path.Size = new System.Drawing.Size(156, 34);
  224. this.button_Path.TabIndex = 90;
  225. this.button_Path.Text = "FilePathSet";
  226. this.button_Path.UseVisualStyleBackColor = false;
  227. this.button_Path.Click += new System.EventHandler(this.button_Path_Click);
  228. //
  229. // button_Clear
  230. //
  231. this.button_Clear.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  232. this.button_Clear.Location = new System.Drawing.Point(248, 12);
  233. this.button_Clear.Name = "button_Clear";
  234. this.button_Clear.Size = new System.Drawing.Size(108, 24);
  235. this.button_Clear.TabIndex = 89;
  236. this.button_Clear.Text = "Terminal Clear";
  237. this.button_Clear.UseVisualStyleBackColor = false;
  238. this.button_Clear.Click += new System.EventHandler(this.button_Clear_Click);
  239. //
  240. // checkBox_Edit
  241. //
  242. this.checkBox_Edit.AutoSize = true;
  243. this.checkBox_Edit.Location = new System.Drawing.Point(170, 22);
  244. this.checkBox_Edit.Name = "checkBox_Edit";
  245. this.checkBox_Edit.Size = new System.Drawing.Size(72, 16);
  246. this.checkBox_Edit.TabIndex = 88;
  247. this.checkBox_Edit.Text = "편집모드";
  248. this.checkBox_Edit.UseVisualStyleBackColor = true;
  249. //
  250. // checkBox_TerminalStop
  251. //
  252. this.checkBox_TerminalStop.AutoSize = true;
  253. this.checkBox_TerminalStop.Location = new System.Drawing.Point(805, 22);
  254. this.checkBox_TerminalStop.Name = "checkBox_TerminalStop";
  255. this.checkBox_TerminalStop.Size = new System.Drawing.Size(103, 16);
  256. this.checkBox_TerminalStop.TabIndex = 88;
  257. this.checkBox_TerminalStop.Text = "Terminal Stop";
  258. this.checkBox_TerminalStop.UseVisualStyleBackColor = true;
  259. //
  260. // panel4
  261. //
  262. this.panel4.BackColor = System.Drawing.Color.White;
  263. this.panel4.Controls.Add(this.label_Version);
  264. this.panel4.Controls.Add(this.pictureBox5);
  265. this.panel4.Location = new System.Drawing.Point(-10, 642);
  266. this.panel4.Name = "panel4";
  267. this.panel4.Size = new System.Drawing.Size(1372, 68);
  268. this.panel4.TabIndex = 85;
  269. //
  270. // pictureBox5
  271. //
  272. this.pictureBox5.Image = global::APL_TestCheck.Properties.Resources.bluecell_logo;
  273. this.pictureBox5.Location = new System.Drawing.Point(1193, 7);
  274. this.pictureBox5.Name = "pictureBox5";
  275. this.pictureBox5.Size = new System.Drawing.Size(159, 50);
  276. this.pictureBox5.TabIndex = 26;
  277. this.pictureBox5.TabStop = false;
  278. //
  279. // label6
  280. //
  281. this.label6.AutoSize = true;
  282. this.label6.BackColor = System.Drawing.Color.Transparent;
  283. this.label6.Font = new System.Drawing.Font("맑은 고딕", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  284. this.label6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(242)))), ((int)(((byte)(247)))));
  285. this.label6.Location = new System.Drawing.Point(48, 339);
  286. this.label6.Name = "label6";
  287. this.label6.Size = new System.Drawing.Size(0, 20);
  288. this.label6.TabIndex = 84;
  289. //
  290. // panel1
  291. //
  292. this.panel1.Controls.Add(this.panel_Sninsert);
  293. this.panel1.Controls.Add(this.panel_SnCheck);
  294. this.panel1.Controls.Add(this.panel_Merge);
  295. this.panel1.Controls.Add(this.groupBox9);
  296. this.panel1.Controls.Add(this.label1);
  297. this.panel1.Controls.Add(this.pictureBox6);
  298. this.panel1.Controls.Add(this.panel_SensorMode);
  299. this.panel1.Controls.Add(this.panel_Catm1Mode);
  300. this.panel1.Controls.Add(this.panel_GpsMode);
  301. this.panel1.Location = new System.Drawing.Point(4, 44);
  302. this.panel1.Name = "panel1";
  303. this.panel1.Size = new System.Drawing.Size(159, 599);
  304. this.panel1.TabIndex = 26;
  305. //
  306. // panel_Sninsert
  307. //
  308. this.panel_Sninsert.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  309. this.panel_Sninsert.Controls.Add(this.label_Sninsert);
  310. this.panel_Sninsert.Location = new System.Drawing.Point(0, 350);
  311. this.panel_Sninsert.Name = "panel_Sninsert";
  312. this.panel_Sninsert.Size = new System.Drawing.Size(156, 53);
  313. this.panel_Sninsert.TabIndex = 86;
  314. this.panel_Sninsert.Click += new System.EventHandler(this.label_SnInsert_Click);
  315. this.panel_Sninsert.MouseLeave += new System.EventHandler(this.panel_PanelMode_MouseLeave);
  316. this.panel_Sninsert.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_PanelMode_MouseMove);
  317. //
  318. // label_Sninsert
  319. //
  320. this.label_Sninsert.AutoSize = true;
  321. this.label_Sninsert.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  322. this.label_Sninsert.ForeColor = System.Drawing.Color.Snow;
  323. this.label_Sninsert.Location = new System.Drawing.Point(40, 17);
  324. this.label_Sninsert.Name = "label_Sninsert";
  325. this.label_Sninsert.Size = new System.Drawing.Size(77, 19);
  326. this.label_Sninsert.TabIndex = 31;
  327. this.label_Sninsert.Text = "S/N Insert";
  328. this.label_Sninsert.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  329. this.label_Sninsert.Click += new System.EventHandler(this.label_SnInsert_Click);
  330. this.label_Sninsert.MouseLeave += new System.EventHandler(this.label_Check_MouseLeave);
  331. this.label_Sninsert.MouseMove += new System.Windows.Forms.MouseEventHandler(this.label_SnInsert_MouseMove);
  332. //
  333. // panel_SnCheck
  334. //
  335. this.panel_SnCheck.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  336. this.panel_SnCheck.Controls.Add(this.label_SnCheck);
  337. this.panel_SnCheck.Location = new System.Drawing.Point(1, 290);
  338. this.panel_SnCheck.Name = "panel_SnCheck";
  339. this.panel_SnCheck.Size = new System.Drawing.Size(156, 53);
  340. this.panel_SnCheck.TabIndex = 86;
  341. this.panel_SnCheck.Click += new System.EventHandler(this.label_SnCheck_Click);
  342. this.panel_SnCheck.MouseLeave += new System.EventHandler(this.panel_PanelMode_MouseLeave);
  343. this.panel_SnCheck.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_PanelMode_MouseMove);
  344. //
  345. // label_SnCheck
  346. //
  347. this.label_SnCheck.AutoSize = true;
  348. this.label_SnCheck.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  349. this.label_SnCheck.ForeColor = System.Drawing.Color.Snow;
  350. this.label_SnCheck.Location = new System.Drawing.Point(40, 17);
  351. this.label_SnCheck.Name = "label_SnCheck";
  352. this.label_SnCheck.Size = new System.Drawing.Size(85, 19);
  353. this.label_SnCheck.TabIndex = 31;
  354. this.label_SnCheck.Text = "S/N CHECK";
  355. this.label_SnCheck.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  356. this.label_SnCheck.Click += new System.EventHandler(this.label_SnCheck_Click);
  357. this.label_SnCheck.MouseLeave += new System.EventHandler(this.label_Check_MouseLeave);
  358. this.label_SnCheck.MouseMove += new System.Windows.Forms.MouseEventHandler(this.label_SnCheck_MouseMove);
  359. //
  360. // panel_Merge
  361. //
  362. this.panel_Merge.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  363. this.panel_Merge.Controls.Add(this.label_Merge);
  364. this.panel_Merge.Location = new System.Drawing.Point(0, 230);
  365. this.panel_Merge.Name = "panel_Merge";
  366. this.panel_Merge.Size = new System.Drawing.Size(156, 53);
  367. this.panel_Merge.TabIndex = 32;
  368. this.panel_Merge.Click += new System.EventHandler(this.label_Merge_Click);
  369. this.panel_Merge.MouseLeave += new System.EventHandler(this.panel_PanelMode_MouseLeave);
  370. this.panel_Merge.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_PanelMode_MouseMove);
  371. //
  372. // label_Merge
  373. //
  374. this.label_Merge.AutoSize = true;
  375. this.label_Merge.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  376. this.label_Merge.ForeColor = System.Drawing.Color.Snow;
  377. this.label_Merge.Location = new System.Drawing.Point(50, 17);
  378. this.label_Merge.Name = "label_Merge";
  379. this.label_Merge.Size = new System.Drawing.Size(54, 19);
  380. this.label_Merge.TabIndex = 31;
  381. this.label_Merge.Text = "Merge";
  382. this.label_Merge.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  383. this.label_Merge.Click += new System.EventHandler(this.label_Merge_Click);
  384. this.label_Merge.MouseLeave += new System.EventHandler(this.label_Check_MouseLeave);
  385. this.label_Merge.MouseMove += new System.Windows.Forms.MouseEventHandler(this.label_Merge_MouseMove);
  386. //
  387. // groupBox9
  388. //
  389. this.groupBox9.Controls.Add(this.panel_Port);
  390. this.groupBox9.Controls.Add(this.comboBox_Port);
  391. this.groupBox9.Controls.Add(this.comboBox_bps);
  392. this.groupBox9.Controls.Add(this.cmCom_Port);
  393. this.groupBox9.Controls.Add(this.cmBaudRate);
  394. this.groupBox9.Location = new System.Drawing.Point(3, 409);
  395. this.groupBox9.Name = "groupBox9";
  396. this.groupBox9.Size = new System.Drawing.Size(153, 184);
  397. this.groupBox9.TabIndex = 85;
  398. this.groupBox9.TabStop = false;
  399. this.groupBox9.Text = "Connection";
  400. //
  401. // panel_Port
  402. //
  403. this.panel_Port.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  404. this.panel_Port.Controls.Add(this.label_Port);
  405. this.panel_Port.Location = new System.Drawing.Point(9, 134);
  406. this.panel_Port.Name = "panel_Port";
  407. this.panel_Port.Size = new System.Drawing.Size(138, 41);
  408. this.panel_Port.TabIndex = 93;
  409. this.panel_Port.Click += new System.EventHandler(this.label_Port_Click);
  410. this.panel_Port.MouseClick += new System.Windows.Forms.MouseEventHandler(this.label_Port_MouseClick);
  411. this.panel_Port.MouseLeave += new System.EventHandler(this.panel_PanelMode_MouseLeave);
  412. this.panel_Port.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_PanelMode_MouseMove);
  413. //
  414. // label_Port
  415. //
  416. this.label_Port.AutoSize = true;
  417. this.label_Port.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  418. this.label_Port.ForeColor = System.Drawing.Color.Snow;
  419. this.label_Port.Location = new System.Drawing.Point(31, 10);
  420. this.label_Port.Name = "label_Port";
  421. this.label_Port.Size = new System.Drawing.Size(80, 19);
  422. this.label_Port.TabIndex = 31;
  423. this.label_Port.Text = "Port Open";
  424. this.label_Port.Click += new System.EventHandler(this.label_Port_Click);
  425. this.label_Port.MouseLeave += new System.EventHandler(this.label_Port_MouseLeave);
  426. this.label_Port.MouseMove += new System.Windows.Forms.MouseEventHandler(this.label_Port_MouseMove);
  427. //
  428. // comboBox_Port
  429. //
  430. this.comboBox_Port.BackColor = System.Drawing.Color.YellowGreen;
  431. this.comboBox_Port.Font = new System.Drawing.Font("굴림", 14F, System.Drawing.FontStyle.Bold);
  432. this.comboBox_Port.ForeColor = System.Drawing.Color.Yellow;
  433. this.comboBox_Port.FormattingEnabled = true;
  434. this.comboBox_Port.Location = new System.Drawing.Point(7, 39);
  435. this.comboBox_Port.Name = "comboBox_Port";
  436. this.comboBox_Port.Size = new System.Drawing.Size(140, 27);
  437. this.comboBox_Port.TabIndex = 92;
  438. //
  439. // comboBox_bps
  440. //
  441. this.comboBox_bps.BackColor = System.Drawing.Color.YellowGreen;
  442. this.comboBox_bps.Font = new System.Drawing.Font("굴림", 14F, System.Drawing.FontStyle.Bold);
  443. this.comboBox_bps.ForeColor = System.Drawing.Color.Yellow;
  444. this.comboBox_bps.FormattingEnabled = true;
  445. this.comboBox_bps.Items.AddRange(new object[] {
  446. "9600",
  447. "115200"});
  448. this.comboBox_bps.Location = new System.Drawing.Point(7, 99);
  449. this.comboBox_bps.Name = "comboBox_bps";
  450. this.comboBox_bps.Size = new System.Drawing.Size(140, 27);
  451. this.comboBox_bps.TabIndex = 91;
  452. this.comboBox_bps.Text = "115200";
  453. //
  454. // cmCom_Port
  455. //
  456. this.cmCom_Port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  457. | System.Windows.Forms.AnchorStyles.Left)
  458. | System.Windows.Forms.AnchorStyles.Right)));
  459. this.cmCom_Port.AutoSize = true;
  460. this.cmCom_Port.Location = new System.Drawing.Point(6, 20);
  461. this.cmCom_Port.Name = "cmCom_Port";
  462. this.cmCom_Port.Size = new System.Drawing.Size(58, 12);
  463. this.cmCom_Port.TabIndex = 89;
  464. this.cmCom_Port.Text = "Com Port";
  465. //
  466. // cmBaudRate
  467. //
  468. this.cmBaudRate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  469. | System.Windows.Forms.AnchorStyles.Left)
  470. | System.Windows.Forms.AnchorStyles.Right)));
  471. this.cmBaudRate.AutoSize = true;
  472. this.cmBaudRate.Location = new System.Drawing.Point(5, 87);
  473. this.cmBaudRate.Name = "cmBaudRate";
  474. this.cmBaudRate.Size = new System.Drawing.Size(94, 12);
  475. this.cmBaudRate.TabIndex = 90;
  476. this.cmBaudRate.Text = "Baud Rate(bps)";
  477. //
  478. // label1
  479. //
  480. this.label1.AutoSize = true;
  481. this.label1.Font = new System.Drawing.Font("맑은 고딕", 13F);
  482. this.label1.ForeColor = System.Drawing.Color.Snow;
  483. this.label1.Location = new System.Drawing.Point(39, 14);
  484. this.label1.Name = "label1";
  485. this.label1.Size = new System.Drawing.Size(101, 25);
  486. this.label1.TabIndex = 30;
  487. this.label1.Text = "Test Mode";
  488. //
  489. // pictureBox6
  490. //
  491. this.pictureBox6.Image = global::APL_TestCheck.Properties.Resources.search_32px;
  492. this.pictureBox6.Location = new System.Drawing.Point(8, 12);
  493. this.pictureBox6.Name = "pictureBox6";
  494. this.pictureBox6.Size = new System.Drawing.Size(32, 32);
  495. this.pictureBox6.TabIndex = 29;
  496. this.pictureBox6.TabStop = false;
  497. //
  498. // panel_SensorMode
  499. //
  500. this.panel_SensorMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  501. this.panel_SensorMode.Controls.Add(this.label_SensorTest);
  502. this.panel_SensorMode.Location = new System.Drawing.Point(0, 170);
  503. this.panel_SensorMode.Name = "panel_SensorMode";
  504. this.panel_SensorMode.Size = new System.Drawing.Size(156, 53);
  505. this.panel_SensorMode.TabIndex = 2;
  506. this.panel_SensorMode.Click += new System.EventHandler(this.label_SensorTest_Click);
  507. this.panel_SensorMode.MouseLeave += new System.EventHandler(this.panel_PanelMode_MouseLeave);
  508. this.panel_SensorMode.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_PanelMode_MouseMove);
  509. //
  510. // label_SensorTest
  511. //
  512. this.label_SensorTest.AutoSize = true;
  513. this.label_SensorTest.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  514. this.label_SensorTest.ForeColor = System.Drawing.Color.Snow;
  515. this.label_SensorTest.Location = new System.Drawing.Point(34, 17);
  516. this.label_SensorTest.Name = "label_SensorTest";
  517. this.label_SensorTest.Size = new System.Drawing.Size(87, 19);
  518. this.label_SensorTest.TabIndex = 31;
  519. this.label_SensorTest.Text = "Sensor Test";
  520. this.label_SensorTest.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  521. this.label_SensorTest.Click += new System.EventHandler(this.label_SensorTest_Click);
  522. this.label_SensorTest.MouseLeave += new System.EventHandler(this.label_Check_MouseLeave);
  523. this.label_SensorTest.MouseMove += new System.Windows.Forms.MouseEventHandler(this.label_SensorTest_MouseMove);
  524. //
  525. // panel_Catm1Mode
  526. //
  527. this.panel_Catm1Mode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  528. this.panel_Catm1Mode.Controls.Add(this.label_Catm1Test);
  529. this.panel_Catm1Mode.Location = new System.Drawing.Point(0, 110);
  530. this.panel_Catm1Mode.Name = "panel_Catm1Mode";
  531. this.panel_Catm1Mode.Size = new System.Drawing.Size(156, 53);
  532. this.panel_Catm1Mode.TabIndex = 1;
  533. this.panel_Catm1Mode.Click += new System.EventHandler(this.label_Catm1Test_Click);
  534. this.panel_Catm1Mode.MouseLeave += new System.EventHandler(this.panel_PanelMode_MouseLeave);
  535. this.panel_Catm1Mode.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_PanelMode_MouseMove);
  536. //
  537. // label_Catm1Test
  538. //
  539. this.label_Catm1Test.AutoSize = true;
  540. this.label_Catm1Test.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  541. this.label_Catm1Test.ForeColor = System.Drawing.Color.Snow;
  542. this.label_Catm1Test.Location = new System.Drawing.Point(28, 17);
  543. this.label_Catm1Test.Name = "label_Catm1Test";
  544. this.label_Catm1Test.Size = new System.Drawing.Size(95, 19);
  545. this.label_Catm1Test.TabIndex = 31;
  546. this.label_Catm1Test.Text = "CAT M1 Test";
  547. this.label_Catm1Test.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  548. this.label_Catm1Test.Click += new System.EventHandler(this.label_Catm1Test_Click);
  549. this.label_Catm1Test.MouseLeave += new System.EventHandler(this.label_Check_MouseLeave);
  550. this.label_Catm1Test.MouseMove += new System.Windows.Forms.MouseEventHandler(this.label_Catm1Test_MouseMove);
  551. //
  552. // panel_GpsMode
  553. //
  554. this.panel_GpsMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  555. this.panel_GpsMode.Controls.Add(this.label_GPSTest);
  556. this.panel_GpsMode.Location = new System.Drawing.Point(0, 50);
  557. this.panel_GpsMode.Name = "panel_GpsMode";
  558. this.panel_GpsMode.Size = new System.Drawing.Size(156, 53);
  559. this.panel_GpsMode.TabIndex = 0;
  560. this.panel_GpsMode.Click += new System.EventHandler(this.label_GPSTest_Click);
  561. this.panel_GpsMode.MouseLeave += new System.EventHandler(this.panel_PanelMode_MouseLeave);
  562. this.panel_GpsMode.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_PanelMode_MouseMove);
  563. //
  564. // label_GPSTest
  565. //
  566. this.label_GPSTest.AutoSize = true;
  567. this.label_GPSTest.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Bold);
  568. this.label_GPSTest.ForeColor = System.Drawing.Color.Snow;
  569. this.label_GPSTest.Location = new System.Drawing.Point(39, 17);
  570. this.label_GPSTest.Margin = new System.Windows.Forms.Padding(0);
  571. this.label_GPSTest.Name = "label_GPSTest";
  572. this.label_GPSTest.Size = new System.Drawing.Size(73, 19);
  573. this.label_GPSTest.TabIndex = 31;
  574. this.label_GPSTest.Text = "GPS TEST";
  575. this.label_GPSTest.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  576. this.label_GPSTest.Click += new System.EventHandler(this.label_GPSTest_Click);
  577. this.label_GPSTest.MouseLeave += new System.EventHandler(this.label_Check_MouseLeave);
  578. this.label_GPSTest.MouseMove += new System.Windows.Forms.MouseEventHandler(this.label_GPSTest_MouseMove);
  579. //
  580. // panel_SensorTest
  581. //
  582. this.panel_SensorTest.Controls.Add(this.checkBox_Usim_Imei_Phone_Num);
  583. this.panel_SensorTest.Controls.Add(this.button_Write);
  584. this.panel_SensorTest.Controls.Add(this.button_Rewrite);
  585. this.panel_SensorTest.Controls.Add(this.textBox_PrevNum);
  586. this.panel_SensorTest.Controls.Add(this.textBox_Write);
  587. this.panel_SensorTest.Controls.Add(this.textBox_AfterNum);
  588. this.panel_SensorTest.Controls.Add(this.button_SnRead);
  589. this.panel_SensorTest.Controls.Add(this.numericUpDown_ExcelOpenDelay);
  590. this.panel_SensorTest.Controls.Add(this.button_ExcelOpen);
  591. this.panel_SensorTest.Controls.Add(this.checkBox_ExcelOpen);
  592. this.panel_SensorTest.Controls.Add(this.richTextBox_Sensor);
  593. this.panel_SensorTest.Controls.Add(this.dataGridView_Sensor);
  594. this.panel_SensorTest.Location = new System.Drawing.Point(149, 44);
  595. this.panel_SensorTest.Name = "panel_SensorTest";
  596. this.panel_SensorTest.Size = new System.Drawing.Size(1207, 599);
  597. this.panel_SensorTest.TabIndex = 27;
  598. //
  599. // checkBox_Usim_Imei_Phone_Num
  600. //
  601. this.checkBox_Usim_Imei_Phone_Num.AutoSize = true;
  602. this.checkBox_Usim_Imei_Phone_Num.Checked = true;
  603. this.checkBox_Usim_Imei_Phone_Num.CheckState = System.Windows.Forms.CheckState.Checked;
  604. this.checkBox_Usim_Imei_Phone_Num.Location = new System.Drawing.Point(739, 574);
  605. this.checkBox_Usim_Imei_Phone_Num.Name = "checkBox_Usim_Imei_Phone_Num";
  606. this.checkBox_Usim_Imei_Phone_Num.Size = new System.Drawing.Size(145, 16);
  607. this.checkBox_Usim_Imei_Phone_Num.TabIndex = 99;
  608. this.checkBox_Usim_Imei_Phone_Num.Text = "USIM Default Number";
  609. this.checkBox_Usim_Imei_Phone_Num.UseVisualStyleBackColor = true;
  610. //
  611. // button_Write
  612. //
  613. this.button_Write.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  614. this.button_Write.Location = new System.Drawing.Point(402, 571);
  615. this.button_Write.Name = "button_Write";
  616. this.button_Write.Size = new System.Drawing.Size(75, 23);
  617. this.button_Write.TabIndex = 98;
  618. this.button_Write.Text = "Write";
  619. this.button_Write.UseVisualStyleBackColor = false;
  620. this.button_Write.Click += new System.EventHandler(this.button_Write_Click);
  621. //
  622. // button_Rewrite
  623. //
  624. this.button_Rewrite.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  625. this.button_Rewrite.Location = new System.Drawing.Point(238, 571);
  626. this.button_Rewrite.Name = "button_Rewrite";
  627. this.button_Rewrite.Size = new System.Drawing.Size(75, 23);
  628. this.button_Rewrite.TabIndex = 98;
  629. this.button_Rewrite.Text = "Rewrite";
  630. this.button_Rewrite.UseVisualStyleBackColor = false;
  631. this.button_Rewrite.Click += new System.EventHandler(this.button_Rewrite_Click);
  632. //
  633. // textBox_PrevNum
  634. //
  635. this.textBox_PrevNum.Location = new System.Drawing.Point(26, 571);
  636. this.textBox_PrevNum.Name = "textBox_PrevNum";
  637. this.textBox_PrevNum.Size = new System.Drawing.Size(100, 21);
  638. this.textBox_PrevNum.TabIndex = 97;
  639. //
  640. // textBox_Write
  641. //
  642. this.textBox_Write.Location = new System.Drawing.Point(316, 571);
  643. this.textBox_Write.Name = "textBox_Write";
  644. this.textBox_Write.Size = new System.Drawing.Size(80, 21);
  645. this.textBox_Write.TabIndex = 97;
  646. //
  647. // textBox_AfterNum
  648. //
  649. this.textBox_AfterNum.Location = new System.Drawing.Point(132, 571);
  650. this.textBox_AfterNum.Name = "textBox_AfterNum";
  651. this.textBox_AfterNum.Size = new System.Drawing.Size(100, 21);
  652. this.textBox_AfterNum.TabIndex = 97;
  653. //
  654. // button_SnRead
  655. //
  656. this.button_SnRead.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  657. this.button_SnRead.Location = new System.Drawing.Point(480, 571);
  658. this.button_SnRead.Name = "button_SnRead";
  659. this.button_SnRead.Size = new System.Drawing.Size(75, 23);
  660. this.button_SnRead.TabIndex = 96;
  661. this.button_SnRead.Text = "SN Read";
  662. this.button_SnRead.UseVisualStyleBackColor = false;
  663. this.button_SnRead.Click += new System.EventHandler(this.button_SnRead_Click);
  664. //
  665. // numericUpDown_ExcelOpenDelay
  666. //
  667. this.numericUpDown_ExcelOpenDelay.Location = new System.Drawing.Point(886, 570);
  668. this.numericUpDown_ExcelOpenDelay.Maximum = new decimal(new int[] {
  669. 10000,
  670. 0,
  671. 0,
  672. 0});
  673. this.numericUpDown_ExcelOpenDelay.Name = "numericUpDown_ExcelOpenDelay";
  674. this.numericUpDown_ExcelOpenDelay.Size = new System.Drawing.Size(120, 21);
  675. this.numericUpDown_ExcelOpenDelay.TabIndex = 95;
  676. this.numericUpDown_ExcelOpenDelay.Value = new decimal(new int[] {
  677. 3000,
  678. 0,
  679. 0,
  680. 0});
  681. //
  682. // button_ExcelOpen
  683. //
  684. this.button_ExcelOpen.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  685. this.button_ExcelOpen.Location = new System.Drawing.Point(565, 571);
  686. this.button_ExcelOpen.Name = "button_ExcelOpen";
  687. this.button_ExcelOpen.Size = new System.Drawing.Size(75, 23);
  688. this.button_ExcelOpen.TabIndex = 94;
  689. this.button_ExcelOpen.Text = "ExcelOpen";
  690. this.button_ExcelOpen.UseVisualStyleBackColor = false;
  691. this.button_ExcelOpen.Click += new System.EventHandler(this.button_ExcelOpen_Click);
  692. //
  693. // checkBox_ExcelOpen
  694. //
  695. this.checkBox_ExcelOpen.AutoSize = true;
  696. this.checkBox_ExcelOpen.Location = new System.Drawing.Point(646, 575);
  697. this.checkBox_ExcelOpen.Name = "checkBox_ExcelOpen";
  698. this.checkBox_ExcelOpen.Size = new System.Drawing.Size(86, 16);
  699. this.checkBox_ExcelOpen.TabIndex = 93;
  700. this.checkBox_ExcelOpen.Text = "ExcelOpen";
  701. this.checkBox_ExcelOpen.UseVisualStyleBackColor = true;
  702. //
  703. // richTextBox_Sensor
  704. //
  705. this.richTextBox_Sensor.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  706. this.richTextBox_Sensor.Font = new System.Drawing.Font("나눔고딕", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  707. this.richTextBox_Sensor.ForeColor = System.Drawing.Color.Yellow;
  708. this.richTextBox_Sensor.Location = new System.Drawing.Point(21, 67);
  709. this.richTextBox_Sensor.Name = "richTextBox_Sensor";
  710. this.richTextBox_Sensor.Size = new System.Drawing.Size(1178, 500);
  711. this.richTextBox_Sensor.TabIndex = 26;
  712. this.richTextBox_Sensor.Text = "";
  713. //
  714. // dataGridView_Sensor
  715. //
  716. this.dataGridView_Sensor.AllowUserToAddRows = false;
  717. this.dataGridView_Sensor.BackgroundColor = System.Drawing.Color.Gray;
  718. this.dataGridView_Sensor.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  719. this.dataGridView_Sensor.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  720. this.ProductNumber,
  721. this.SN,
  722. this.IMEI,
  723. this.Phone,
  724. this.USIM,
  725. this.Version,
  726. this.BatteryVoltage,
  727. this.SystemVoltage,
  728. this.Temp,
  729. this.BMA_X,
  730. this.BMA_Y,
  731. this.BMA_Z,
  732. this.BLE,
  733. this.BattMin,
  734. this.SystemVoltmin,
  735. this.TempMax,
  736. this.TempMin,
  737. this.BMAX_Max,
  738. this.BMAX_Min,
  739. this.BMAY_Max,
  740. this.BMAY_Min,
  741. this.BMAZ_Max,
  742. this.BMAZ_Min});
  743. this.dataGridView_Sensor.GridColor = System.Drawing.Color.Green;
  744. this.dataGridView_Sensor.Location = new System.Drawing.Point(20, 3);
  745. this.dataGridView_Sensor.Name = "dataGridView_Sensor";
  746. this.dataGridView_Sensor.RowTemplate.Height = 23;
  747. this.dataGridView_Sensor.Size = new System.Drawing.Size(1182, 58);
  748. this.dataGridView_Sensor.TabIndex = 15;
  749. this.dataGridView_Sensor.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_Sensor_CellClick);
  750. //
  751. // ProductNumber
  752. //
  753. this.ProductNumber.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  754. this.ProductNumber.HeaderText = "생산번호";
  755. this.ProductNumber.Name = "ProductNumber";
  756. this.ProductNumber.Width = 78;
  757. //
  758. // SN
  759. //
  760. this.SN.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  761. this.SN.HeaderText = "일련번호";
  762. this.SN.Name = "SN";
  763. this.SN.Width = 78;
  764. //
  765. // IMEI
  766. //
  767. this.IMEI.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  768. this.IMEI.HeaderText = "IMEI";
  769. this.IMEI.Name = "IMEI";
  770. this.IMEI.Width = 55;
  771. //
  772. // Phone
  773. //
  774. this.Phone.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  775. this.Phone.HeaderText = "Phone";
  776. this.Phone.Name = "Phone";
  777. this.Phone.Width = 66;
  778. //
  779. // USIM
  780. //
  781. this.USIM.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  782. this.USIM.HeaderText = "USIM";
  783. this.USIM.Name = "USIM";
  784. this.USIM.Width = 60;
  785. //
  786. // Version
  787. //
  788. this.Version.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  789. this.Version.HeaderText = "버전";
  790. this.Version.Name = "Version";
  791. this.Version.Width = 54;
  792. //
  793. // BatteryVoltage
  794. //
  795. this.BatteryVoltage.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  796. this.BatteryVoltage.HeaderText = "BatteryVoltage";
  797. this.BatteryVoltage.Name = "BatteryVoltage";
  798. this.BatteryVoltage.Width = 111;
  799. //
  800. // SystemVoltage
  801. //
  802. this.SystemVoltage.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  803. this.SystemVoltage.HeaderText = "SystemVoltage";
  804. this.SystemVoltage.Name = "SystemVoltage";
  805. this.SystemVoltage.Width = 115;
  806. //
  807. // Temp
  808. //
  809. this.Temp.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  810. this.Temp.HeaderText = "온도";
  811. this.Temp.Name = "Temp";
  812. this.Temp.Width = 54;
  813. //
  814. // BMA_X
  815. //
  816. this.BMA_X.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  817. this.BMA_X.HeaderText = "가속도 X";
  818. this.BMA_X.Name = "BMA_X";
  819. this.BMA_X.Width = 78;
  820. //
  821. // BMA_Y
  822. //
  823. this.BMA_Y.HeaderText = "가속도 Y";
  824. this.BMA_Y.Name = "BMA_Y";
  825. //
  826. // BMA_Z
  827. //
  828. this.BMA_Z.HeaderText = "가속도 Z";
  829. this.BMA_Z.Name = "BMA_Z";
  830. //
  831. // BLE
  832. //
  833. this.BLE.HeaderText = "BLE";
  834. this.BLE.Name = "BLE";
  835. //
  836. // BattMin
  837. //
  838. this.BattMin.HeaderText = "BattMin";
  839. this.BattMin.Name = "BattMin";
  840. //
  841. // SystemVoltmin
  842. //
  843. this.SystemVoltmin.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  844. this.SystemVoltmin.HeaderText = "SystemVoltmin";
  845. this.SystemVoltmin.Name = "SystemVoltmin";
  846. this.SystemVoltmin.Width = 115;
  847. //
  848. // TempMax
  849. //
  850. this.TempMax.HeaderText = "TempMax";
  851. this.TempMax.Name = "TempMax";
  852. //
  853. // TempMin
  854. //
  855. this.TempMin.HeaderText = "TempMin";
  856. this.TempMin.Name = "TempMin";
  857. //
  858. // BMAX_Max
  859. //
  860. this.BMAX_Max.HeaderText = "BMAX_Max";
  861. this.BMAX_Max.Name = "BMAX_Max";
  862. //
  863. // BMAX_Min
  864. //
  865. this.BMAX_Min.HeaderText = "BMAX_Min";
  866. this.BMAX_Min.Name = "BMAX_Min";
  867. //
  868. // BMAY_Max
  869. //
  870. this.BMAY_Max.HeaderText = "BMAY_Max";
  871. this.BMAY_Max.Name = "BMAY_Max";
  872. //
  873. // BMAY_Min
  874. //
  875. this.BMAY_Min.HeaderText = "BMAY_Min";
  876. this.BMAY_Min.Name = "BMAY_Min";
  877. //
  878. // BMAZ_Max
  879. //
  880. this.BMAZ_Max.HeaderText = "BMAZ_Max";
  881. this.BMAZ_Max.Name = "BMAZ_Max";
  882. //
  883. // BMAZ_Min
  884. //
  885. this.BMAZ_Min.HeaderText = "BMAZ_Min";
  886. this.BMAZ_Min.Name = "BMAZ_Min";
  887. //
  888. // panel_MergeMain
  889. //
  890. this.panel_MergeMain.Controls.Add(this.label7);
  891. this.panel_MergeMain.Controls.Add(this.label_Cnt);
  892. this.panel_MergeMain.Controls.Add(this.numericUpDown1);
  893. this.panel_MergeMain.Controls.Add(this.button_Merge);
  894. this.panel_MergeMain.Controls.Add(this.button_PrevFile);
  895. this.panel_MergeMain.Controls.Add(this.button_AfterFile);
  896. this.panel_MergeMain.Controls.Add(this.listBox_AfterFile);
  897. this.panel_MergeMain.Controls.Add(this.listBox_PreviousFile);
  898. this.panel_MergeMain.Controls.Add(this.progressBar_Merge);
  899. this.panel_MergeMain.Location = new System.Drawing.Point(160, 44);
  900. this.panel_MergeMain.Name = "panel_MergeMain";
  901. this.panel_MergeMain.Size = new System.Drawing.Size(1202, 599);
  902. this.panel_MergeMain.TabIndex = 88;
  903. //
  904. // label7
  905. //
  906. this.label7.AutoSize = true;
  907. this.label7.Location = new System.Drawing.Point(119, 31);
  908. this.label7.Name = "label7";
  909. this.label7.Size = new System.Drawing.Size(29, 12);
  910. this.label7.TabIndex = 7;
  911. this.label7.Text = "Line";
  912. //
  913. // label_Cnt
  914. //
  915. this.label_Cnt.AutoSize = true;
  916. this.label_Cnt.Font = new System.Drawing.Font("굴림", 14F, System.Drawing.FontStyle.Bold);
  917. this.label_Cnt.Location = new System.Drawing.Point(357, 25);
  918. this.label_Cnt.Name = "label_Cnt";
  919. this.label_Cnt.Size = new System.Drawing.Size(94, 19);
  920. this.label_Cnt.TabIndex = 6;
  921. this.label_Cnt.Text = "Count : 0";
  922. //
  923. // numericUpDown1
  924. //
  925. this.numericUpDown1.Location = new System.Drawing.Point(160, 26);
  926. this.numericUpDown1.Name = "numericUpDown1";
  927. this.numericUpDown1.Size = new System.Drawing.Size(102, 21);
  928. this.numericUpDown1.TabIndex = 5;
  929. //
  930. // button_Merge
  931. //
  932. this.button_Merge.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
  933. this.button_Merge.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  934. this.button_Merge.Location = new System.Drawing.Point(23, 21);
  935. this.button_Merge.Name = "button_Merge";
  936. this.button_Merge.Size = new System.Drawing.Size(75, 38);
  937. this.button_Merge.TabIndex = 4;
  938. this.button_Merge.Text = "Merge";
  939. this.button_Merge.UseVisualStyleBackColor = false;
  940. this.button_Merge.Click += new System.EventHandler(this.button_Merge_Click);
  941. //
  942. // button_PrevFile
  943. //
  944. this.button_PrevFile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  945. this.button_PrevFile.Location = new System.Drawing.Point(21, 65);
  946. this.button_PrevFile.Name = "button_PrevFile";
  947. this.button_PrevFile.Size = new System.Drawing.Size(75, 522);
  948. this.button_PrevFile.TabIndex = 3;
  949. this.button_PrevFile.Text = "PrevFind";
  950. this.button_PrevFile.UseVisualStyleBackColor = false;
  951. this.button_PrevFile.Click += new System.EventHandler(this.button_PrevFile_Click);
  952. //
  953. // button_AfterFile
  954. //
  955. this.button_AfterFile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  956. this.button_AfterFile.Location = new System.Drawing.Point(621, 63);
  957. this.button_AfterFile.Name = "button_AfterFile";
  958. this.button_AfterFile.Size = new System.Drawing.Size(75, 524);
  959. this.button_AfterFile.TabIndex = 3;
  960. this.button_AfterFile.Text = "AfterFile";
  961. this.button_AfterFile.UseVisualStyleBackColor = false;
  962. this.button_AfterFile.Click += new System.EventHandler(this.button_AfterFile_Click);
  963. //
  964. // listBox_AfterFile
  965. //
  966. this.listBox_AfterFile.FormattingEnabled = true;
  967. this.listBox_AfterFile.ItemHeight = 12;
  968. this.listBox_AfterFile.Location = new System.Drawing.Point(702, 67);
  969. this.listBox_AfterFile.Name = "listBox_AfterFile";
  970. this.listBox_AfterFile.Size = new System.Drawing.Size(486, 520);
  971. this.listBox_AfterFile.TabIndex = 2;
  972. //
  973. // listBox_PreviousFile
  974. //
  975. this.listBox_PreviousFile.FormattingEnabled = true;
  976. this.listBox_PreviousFile.ItemHeight = 12;
  977. this.listBox_PreviousFile.Location = new System.Drawing.Point(104, 67);
  978. this.listBox_PreviousFile.Name = "listBox_PreviousFile";
  979. this.listBox_PreviousFile.Size = new System.Drawing.Size(511, 520);
  980. this.listBox_PreviousFile.TabIndex = 2;
  981. //
  982. // progressBar_Merge
  983. //
  984. this.progressBar_Merge.Location = new System.Drawing.Point(621, 21);
  985. this.progressBar_Merge.Name = "progressBar_Merge";
  986. this.progressBar_Merge.Size = new System.Drawing.Size(567, 40);
  987. this.progressBar_Merge.TabIndex = 0;
  988. //
  989. // panel_Catm1Test
  990. //
  991. this.panel_Catm1Test.Controls.Add(this.richTextBox_catm1);
  992. this.panel_Catm1Test.Controls.Add(this.dataGridView_Catm1);
  993. this.panel_Catm1Test.Location = new System.Drawing.Point(149, 44);
  994. this.panel_Catm1Test.Name = "panel_Catm1Test";
  995. this.panel_Catm1Test.Size = new System.Drawing.Size(1202, 599);
  996. this.panel_Catm1Test.TabIndex = 87;
  997. //
  998. // richTextBox_catm1
  999. //
  1000. this.richTextBox_catm1.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  1001. this.richTextBox_catm1.Font = new System.Drawing.Font("나눔고딕", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1002. this.richTextBox_catm1.ForeColor = System.Drawing.Color.Yellow;
  1003. this.richTextBox_catm1.Location = new System.Drawing.Point(17, 65);
  1004. this.richTextBox_catm1.Name = "richTextBox_catm1";
  1005. this.richTextBox_catm1.Size = new System.Drawing.Size(1176, 502);
  1006. this.richTextBox_catm1.TabIndex = 26;
  1007. this.richTextBox_catm1.Text = "";
  1008. //
  1009. // dataGridView_Catm1
  1010. //
  1011. this.dataGridView_Catm1.AllowUserToAddRows = false;
  1012. this.dataGridView_Catm1.BackgroundColor = System.Drawing.Color.Gray;
  1013. this.dataGridView_Catm1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1014. this.dataGridView_Catm1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1015. this.Catm1_SerialNumber,
  1016. this.Modem_Ver,
  1017. this.RSRP,
  1018. this.RSRQ});
  1019. this.dataGridView_Catm1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(230)))));
  1020. this.dataGridView_Catm1.Location = new System.Drawing.Point(17, 3);
  1021. this.dataGridView_Catm1.Name = "dataGridView_Catm1";
  1022. this.dataGridView_Catm1.RowTemplate.Height = 23;
  1023. this.dataGridView_Catm1.Size = new System.Drawing.Size(1176, 56);
  1024. this.dataGridView_Catm1.TabIndex = 15;
  1025. this.dataGridView_Catm1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_Catm1_CellClick);
  1026. //
  1027. // Catm1_SerialNumber
  1028. //
  1029. this.Catm1_SerialNumber.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  1030. this.Catm1_SerialNumber.HeaderText = "생산번호";
  1031. this.Catm1_SerialNumber.Name = "Catm1_SerialNumber";
  1032. this.Catm1_SerialNumber.Width = 78;
  1033. //
  1034. // Modem_Ver
  1035. //
  1036. this.Modem_Ver.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  1037. this.Modem_Ver.HeaderText = "Modem Ver";
  1038. this.Modem_Ver.Name = "Modem_Ver";
  1039. this.Modem_Ver.Width = 96;
  1040. //
  1041. // RSRP
  1042. //
  1043. this.RSRP.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  1044. this.RSRP.HeaderText = "RSRP";
  1045. this.RSRP.Name = "RSRP";
  1046. this.RSRP.Width = 62;
  1047. //
  1048. // RSRQ
  1049. //
  1050. this.RSRQ.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  1051. this.RSRQ.HeaderText = "RSRQ";
  1052. this.RSRQ.Name = "RSRQ";
  1053. this.RSRQ.Width = 63;
  1054. //
  1055. // panel_SnCheckMain
  1056. //
  1057. this.panel_SnCheckMain.Controls.Add(this.button_DiffClear);
  1058. this.panel_SnCheckMain.Controls.Add(this.button_DuplicateClear);
  1059. this.panel_SnCheckMain.Controls.Add(this.button_SNClear);
  1060. this.panel_SnCheckMain.Controls.Add(this.button_ChkStart);
  1061. this.panel_SnCheckMain.Controls.Add(this.label_Diff);
  1062. this.panel_SnCheckMain.Controls.Add(this.label8);
  1063. this.panel_SnCheckMain.Controls.Add(this.label_Duplicate);
  1064. this.panel_SnCheckMain.Controls.Add(this.listBox_Diff);
  1065. this.panel_SnCheckMain.Controls.Add(this.listBox_ProductDuplicate);
  1066. this.panel_SnCheckMain.Controls.Add(this.listBox_SNDuplicate);
  1067. this.panel_SnCheckMain.Controls.Add(this.dataGridView_Chk);
  1068. this.panel_SnCheckMain.Controls.Add(this.button_FileFindLoad);
  1069. this.panel_SnCheckMain.Controls.Add(this.progressBar2);
  1070. this.panel_SnCheckMain.Location = new System.Drawing.Point(163, 44);
  1071. this.panel_SnCheckMain.Name = "panel_SnCheckMain";
  1072. this.panel_SnCheckMain.Size = new System.Drawing.Size(1202, 599);
  1073. this.panel_SnCheckMain.TabIndex = 90;
  1074. //
  1075. // button_DiffClear
  1076. //
  1077. this.button_DiffClear.Location = new System.Drawing.Point(826, 549);
  1078. this.button_DiffClear.Name = "button_DiffClear";
  1079. this.button_DiffClear.Size = new System.Drawing.Size(167, 40);
  1080. this.button_DiffClear.TabIndex = 8;
  1081. this.button_DiffClear.Text = "Clear";
  1082. this.button_DiffClear.UseVisualStyleBackColor = true;
  1083. this.button_DiffClear.Click += new System.EventHandler(this.button_DiffClear_Click);
  1084. //
  1085. // button_DuplicateClear
  1086. //
  1087. this.button_DuplicateClear.Location = new System.Drawing.Point(653, 549);
  1088. this.button_DuplicateClear.Name = "button_DuplicateClear";
  1089. this.button_DuplicateClear.Size = new System.Drawing.Size(167, 40);
  1090. this.button_DuplicateClear.TabIndex = 8;
  1091. this.button_DuplicateClear.Text = "Clear";
  1092. this.button_DuplicateClear.UseVisualStyleBackColor = true;
  1093. this.button_DuplicateClear.Click += new System.EventHandler(this.button_DuplicateClear_Click);
  1094. //
  1095. // button_SNClear
  1096. //
  1097. this.button_SNClear.Location = new System.Drawing.Point(481, 549);
  1098. this.button_SNClear.Name = "button_SNClear";
  1099. this.button_SNClear.Size = new System.Drawing.Size(167, 40);
  1100. this.button_SNClear.TabIndex = 8;
  1101. this.button_SNClear.Text = "Clear";
  1102. this.button_SNClear.UseVisualStyleBackColor = true;
  1103. this.button_SNClear.Click += new System.EventHandler(this.button_SNClear_Click);
  1104. //
  1105. // button_ChkStart
  1106. //
  1107. this.button_ChkStart.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  1108. this.button_ChkStart.Location = new System.Drawing.Point(1007, 68);
  1109. this.button_ChkStart.Name = "button_ChkStart";
  1110. this.button_ChkStart.Size = new System.Drawing.Size(75, 519);
  1111. this.button_ChkStart.TabIndex = 7;
  1112. this.button_ChkStart.Text = "Start";
  1113. this.button_ChkStart.UseVisualStyleBackColor = false;
  1114. this.button_ChkStart.Click += new System.EventHandler(this.button_ChkStart_Click);
  1115. //
  1116. // label_Diff
  1117. //
  1118. this.label_Diff.AutoSize = true;
  1119. this.label_Diff.Font = new System.Drawing.Font("굴림", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1120. this.label_Diff.Location = new System.Drawing.Point(843, 78);
  1121. this.label_Diff.Name = "label_Diff";
  1122. this.label_Diff.Size = new System.Drawing.Size(143, 19);
  1123. this.label_Diff.TabIndex = 6;
  1124. this.label_Diff.Text = "짝이 틀린 항목";
  1125. //
  1126. // label8
  1127. //
  1128. this.label8.AutoSize = true;
  1129. this.label8.Font = new System.Drawing.Font("굴림", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1130. this.label8.Location = new System.Drawing.Point(649, 76);
  1131. this.label8.Name = "label8";
  1132. this.label8.Size = new System.Drawing.Size(190, 19);
  1133. this.label8.TabIndex = 6;
  1134. this.label8.Text = "생산 번호 중복 항목";
  1135. //
  1136. // label_Duplicate
  1137. //
  1138. this.label_Duplicate.AutoSize = true;
  1139. this.label_Duplicate.Font = new System.Drawing.Font("굴림", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1140. this.label_Duplicate.Location = new System.Drawing.Point(499, 78);
  1141. this.label_Duplicate.Name = "label_Duplicate";
  1142. this.label_Duplicate.Size = new System.Drawing.Size(137, 19);
  1143. this.label_Duplicate.TabIndex = 6;
  1144. this.label_Duplicate.Text = "S/N 중복 항목";
  1145. //
  1146. // listBox_Diff
  1147. //
  1148. this.listBox_Diff.FormattingEnabled = true;
  1149. this.listBox_Diff.ItemHeight = 12;
  1150. this.listBox_Diff.Location = new System.Drawing.Point(828, 110);
  1151. this.listBox_Diff.Name = "listBox_Diff";
  1152. this.listBox_Diff.Size = new System.Drawing.Size(168, 436);
  1153. this.listBox_Diff.TabIndex = 5;
  1154. //
  1155. // listBox_ProductDuplicate
  1156. //
  1157. this.listBox_ProductDuplicate.FormattingEnabled = true;
  1158. this.listBox_ProductDuplicate.ItemHeight = 12;
  1159. this.listBox_ProductDuplicate.Location = new System.Drawing.Point(654, 110);
  1160. this.listBox_ProductDuplicate.Name = "listBox_ProductDuplicate";
  1161. this.listBox_ProductDuplicate.Size = new System.Drawing.Size(168, 436);
  1162. this.listBox_ProductDuplicate.TabIndex = 5;
  1163. //
  1164. // listBox_SNDuplicate
  1165. //
  1166. this.listBox_SNDuplicate.FormattingEnabled = true;
  1167. this.listBox_SNDuplicate.ItemHeight = 12;
  1168. this.listBox_SNDuplicate.Location = new System.Drawing.Point(480, 110);
  1169. this.listBox_SNDuplicate.Name = "listBox_SNDuplicate";
  1170. this.listBox_SNDuplicate.Size = new System.Drawing.Size(168, 436);
  1171. this.listBox_SNDuplicate.TabIndex = 5;
  1172. //
  1173. // dataGridView_Chk
  1174. //
  1175. this.dataGridView_Chk.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
  1176. this.dataGridView_Chk.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1177. this.dataGridView_Chk.Location = new System.Drawing.Point(102, 65);
  1178. this.dataGridView_Chk.Name = "dataGridView_Chk";
  1179. this.dataGridView_Chk.RowTemplate.Height = 23;
  1180. this.dataGridView_Chk.Size = new System.Drawing.Size(372, 524);
  1181. this.dataGridView_Chk.TabIndex = 4;
  1182. //
  1183. // button_FileFindLoad
  1184. //
  1185. this.button_FileFindLoad.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  1186. this.button_FileFindLoad.Location = new System.Drawing.Point(21, 65);
  1187. this.button_FileFindLoad.Name = "button_FileFindLoad";
  1188. this.button_FileFindLoad.Size = new System.Drawing.Size(75, 519);
  1189. this.button_FileFindLoad.TabIndex = 3;
  1190. this.button_FileFindLoad.Text = "Load";
  1191. this.button_FileFindLoad.UseVisualStyleBackColor = false;
  1192. this.button_FileFindLoad.Click += new System.EventHandler(this.button_FileFindLoad_Click);
  1193. //
  1194. // progressBar2
  1195. //
  1196. this.progressBar2.Location = new System.Drawing.Point(21, 21);
  1197. this.progressBar2.Name = "progressBar2";
  1198. this.progressBar2.Size = new System.Drawing.Size(1159, 40);
  1199. this.progressBar2.TabIndex = 0;
  1200. //
  1201. // panel_GpsTest
  1202. //
  1203. this.panel_GpsTest.Controls.Add(this.button_GpsClear);
  1204. this.panel_GpsTest.Controls.Add(this.button_GpsTestSave);
  1205. this.panel_GpsTest.Controls.Add(this.checkBox_GPGSV);
  1206. this.panel_GpsTest.Controls.Add(this.dataGridView_Gps);
  1207. this.panel_GpsTest.Controls.Add(this.richTextBox_Gps);
  1208. this.panel_GpsTest.Location = new System.Drawing.Point(149, 44);
  1209. this.panel_GpsTest.Name = "panel_GpsTest";
  1210. this.panel_GpsTest.Size = new System.Drawing.Size(1202, 599);
  1211. this.panel_GpsTest.TabIndex = 86;
  1212. //
  1213. // button_GpsClear
  1214. //
  1215. this.button_GpsClear.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  1216. this.button_GpsClear.Font = new System.Drawing.Font("굴림", 16F, System.Drawing.FontStyle.Bold);
  1217. this.button_GpsClear.Location = new System.Drawing.Point(1073, 4);
  1218. this.button_GpsClear.Name = "button_GpsClear";
  1219. this.button_GpsClear.Size = new System.Drawing.Size(121, 58);
  1220. this.button_GpsClear.TabIndex = 90;
  1221. this.button_GpsClear.Text = "Clear";
  1222. this.button_GpsClear.UseVisualStyleBackColor = false;
  1223. this.button_GpsClear.Click += new System.EventHandler(this.button_GpsClear_Click);
  1224. //
  1225. // button_GpsTestSave
  1226. //
  1227. this.button_GpsTestSave.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(200)))));
  1228. this.button_GpsTestSave.Font = new System.Drawing.Font("굴림", 16F, System.Drawing.FontStyle.Bold);
  1229. this.button_GpsTestSave.Location = new System.Drawing.Point(921, 4);
  1230. this.button_GpsTestSave.Name = "button_GpsTestSave";
  1231. this.button_GpsTestSave.Size = new System.Drawing.Size(124, 58);
  1232. this.button_GpsTestSave.TabIndex = 89;
  1233. this.button_GpsTestSave.Text = "SAVE";
  1234. this.button_GpsTestSave.UseVisualStyleBackColor = false;
  1235. this.button_GpsTestSave.Click += new System.EventHandler(this.button_GpsTestSave_Click);
  1236. //
  1237. // checkBox_GPGSV
  1238. //
  1239. this.checkBox_GPGSV.AutoSize = true;
  1240. this.checkBox_GPGSV.Location = new System.Drawing.Point(26, 573);
  1241. this.checkBox_GPGSV.Name = "checkBox_GPGSV";
  1242. this.checkBox_GPGSV.Size = new System.Drawing.Size(106, 16);
  1243. this.checkBox_GPGSV.TabIndex = 88;
  1244. this.checkBox_GPGSV.Text = "GPGSV Mode";
  1245. this.checkBox_GPGSV.UseVisualStyleBackColor = true;
  1246. //
  1247. // dataGridView_Gps
  1248. //
  1249. this.dataGridView_Gps.AllowUserToAddRows = false;
  1250. this.dataGridView_Gps.BackgroundColor = System.Drawing.Color.Gray;
  1251. this.dataGridView_Gps.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1252. this.dataGridView_Gps.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1253. this.Gps_SerialNumber,
  1254. this.dataGridViewTextBoxColumn8,
  1255. this.LimitMax,
  1256. this.LimitMin,
  1257. this.Sec,
  1258. this.MaxSec,
  1259. this.MinSec});
  1260. this.dataGridView_Gps.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(159)))), ((int)(((byte)(230)))));
  1261. this.dataGridView_Gps.Location = new System.Drawing.Point(26, 3);
  1262. this.dataGridView_Gps.Name = "dataGridView_Gps";
  1263. this.dataGridView_Gps.RowTemplate.Height = 23;
  1264. this.dataGridView_Gps.Size = new System.Drawing.Size(889, 56);
  1265. this.dataGridView_Gps.TabIndex = 15;
  1266. this.dataGridView_Gps.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_Gps_CellClick);
  1267. this.dataGridView_Gps.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dataGridView_Gps_KeyDown);
  1268. //
  1269. // Gps_SerialNumber
  1270. //
  1271. this.Gps_SerialNumber.HeaderText = "생산번호";
  1272. this.Gps_SerialNumber.Name = "Gps_SerialNumber";
  1273. //
  1274. // dataGridViewTextBoxColumn8
  1275. //
  1276. this.dataGridViewTextBoxColumn8.HeaderText = "GPS SNR";
  1277. this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
  1278. //
  1279. // LimitMax
  1280. //
  1281. this.LimitMax.HeaderText = "Maximum";
  1282. this.LimitMax.Name = "LimitMax";
  1283. //
  1284. // LimitMin
  1285. //
  1286. this.LimitMin.HeaderText = "Minimum";
  1287. this.LimitMin.Name = "LimitMin";
  1288. //
  1289. // Sec
  1290. //
  1291. this.Sec.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  1292. this.Sec.HeaderText = "Sec";
  1293. this.Sec.Name = "Sec";
  1294. this.Sec.Width = 52;
  1295. //
  1296. // MaxSec
  1297. //
  1298. this.MaxSec.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  1299. this.MaxSec.HeaderText = "MaxSec";
  1300. this.MaxSec.Name = "MaxSec";
  1301. this.MaxSec.Width = 77;
  1302. //
  1303. // MinSec
  1304. //
  1305. this.MinSec.HeaderText = "MinSec";
  1306. this.MinSec.Name = "MinSec";
  1307. //
  1308. // richTextBox_Gps
  1309. //
  1310. this.richTextBox_Gps.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  1311. this.richTextBox_Gps.Font = new System.Drawing.Font("나눔고딕", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1312. this.richTextBox_Gps.ForeColor = System.Drawing.Color.Yellow;
  1313. this.richTextBox_Gps.Location = new System.Drawing.Point(26, 67);
  1314. this.richTextBox_Gps.Name = "richTextBox_Gps";
  1315. this.richTextBox_Gps.Size = new System.Drawing.Size(1167, 500);
  1316. this.richTextBox_Gps.TabIndex = 26;
  1317. this.richTextBox_Gps.Text = "";
  1318. //
  1319. // panel_SnTest
  1320. //
  1321. this.panel_SnTest.Controls.Add(this.radioButton_Usim);
  1322. this.panel_SnTest.Controls.Add(this.radioButton_Imei);
  1323. this.panel_SnTest.Controls.Add(this.dataGridView_SnInsert);
  1324. this.panel_SnTest.Location = new System.Drawing.Point(163, 44);
  1325. this.panel_SnTest.Name = "panel_SnTest";
  1326. this.panel_SnTest.Size = new System.Drawing.Size(1207, 599);
  1327. this.panel_SnTest.TabIndex = 31;
  1328. //
  1329. // radioButton_Usim
  1330. //
  1331. this.radioButton_Usim.AutoSize = true;
  1332. this.radioButton_Usim.Location = new System.Drawing.Point(150, 4);
  1333. this.radioButton_Usim.Name = "radioButton_Usim";
  1334. this.radioButton_Usim.Size = new System.Drawing.Size(53, 16);
  1335. this.radioButton_Usim.TabIndex = 17;
  1336. this.radioButton_Usim.Text = "USIM";
  1337. this.radioButton_Usim.UseVisualStyleBackColor = true;
  1338. this.radioButton_Usim.CheckedChanged += new System.EventHandler(this.radioButton_Usim_CheckedChanged);
  1339. //
  1340. // radioButton_Imei
  1341. //
  1342. this.radioButton_Imei.AutoSize = true;
  1343. this.radioButton_Imei.Checked = true;
  1344. this.radioButton_Imei.Location = new System.Drawing.Point(51, 4);
  1345. this.radioButton_Imei.Name = "radioButton_Imei";
  1346. this.radioButton_Imei.Size = new System.Drawing.Size(48, 16);
  1347. this.radioButton_Imei.TabIndex = 16;
  1348. this.radioButton_Imei.TabStop = true;
  1349. this.radioButton_Imei.Text = "IMEI";
  1350. this.radioButton_Imei.UseVisualStyleBackColor = true;
  1351. this.radioButton_Imei.CheckedChanged += new System.EventHandler(this.radioButton_Imei_CheckedChanged);
  1352. //
  1353. // dataGridView_SnInsert
  1354. //
  1355. this.dataGridView_SnInsert.AllowUserToAddRows = false;
  1356. this.dataGridView_SnInsert.BackgroundColor = System.Drawing.Color.Gray;
  1357. this.dataGridView_SnInsert.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1358. this.dataGridView_SnInsert.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1359. this.dataGridViewTextBoxColumn1,
  1360. this.dataGridViewTextBoxColumn2,
  1361. this.dataGridViewTextBoxColumn3});
  1362. this.dataGridView_SnInsert.GridColor = System.Drawing.Color.Green;
  1363. this.dataGridView_SnInsert.Location = new System.Drawing.Point(20, 31);
  1364. this.dataGridView_SnInsert.Name = "dataGridView_SnInsert";
  1365. this.dataGridView_SnInsert.RowTemplate.Height = 23;
  1366. this.dataGridView_SnInsert.Size = new System.Drawing.Size(1170, 536);
  1367. this.dataGridView_SnInsert.TabIndex = 15;
  1368. this.dataGridView_SnInsert.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_SnInsert_CellClick);
  1369. //
  1370. // dataGridViewTextBoxColumn1
  1371. //
  1372. this.dataGridViewTextBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  1373. this.dataGridViewTextBoxColumn1.HeaderText = "생산번호";
  1374. this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
  1375. this.dataGridViewTextBoxColumn1.Width = 78;
  1376. //
  1377. // dataGridViewTextBoxColumn2
  1378. //
  1379. this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  1380. this.dataGridViewTextBoxColumn2.HeaderText = "일련번호";
  1381. this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
  1382. this.dataGridViewTextBoxColumn2.Width = 78;
  1383. //
  1384. // dataGridViewTextBoxColumn3
  1385. //
  1386. this.dataGridViewTextBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  1387. this.dataGridViewTextBoxColumn3.HeaderText = "IMEI";
  1388. this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
  1389. this.dataGridViewTextBoxColumn3.Width = 55;
  1390. //
  1391. // openFileDialog
  1392. //
  1393. this.openFileDialog.Multiselect = true;
  1394. //
  1395. // label_Version
  1396. //
  1397. this.label_Version.AutoSize = true;
  1398. this.label_Version.Location = new System.Drawing.Point(20, 43);
  1399. this.label_Version.Name = "label_Version";
  1400. this.label_Version.Size = new System.Drawing.Size(38, 12);
  1401. this.label_Version.TabIndex = 27;
  1402. this.label_Version.Text = "label2";
  1403. //
  1404. // Main
  1405. //
  1406. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
  1407. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1408. this.ClientSize = new System.Drawing.Size(1354, 706);
  1409. this.Controls.Add(this.panel_Main);
  1410. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  1411. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  1412. this.Name = "Main";
  1413. this.Text = "APL Test Check";
  1414. this.Load += new System.EventHandler(this.Main_Load);
  1415. this.panel_Main.ResumeLayout(false);
  1416. this.panel_Main.PerformLayout();
  1417. this.panel4.ResumeLayout(false);
  1418. this.panel4.PerformLayout();
  1419. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
  1420. this.panel1.ResumeLayout(false);
  1421. this.panel1.PerformLayout();
  1422. this.panel_Sninsert.ResumeLayout(false);
  1423. this.panel_Sninsert.PerformLayout();
  1424. this.panel_SnCheck.ResumeLayout(false);
  1425. this.panel_SnCheck.PerformLayout();
  1426. this.panel_Merge.ResumeLayout(false);
  1427. this.panel_Merge.PerformLayout();
  1428. this.groupBox9.ResumeLayout(false);
  1429. this.groupBox9.PerformLayout();
  1430. this.panel_Port.ResumeLayout(false);
  1431. this.panel_Port.PerformLayout();
  1432. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
  1433. this.panel_SensorMode.ResumeLayout(false);
  1434. this.panel_SensorMode.PerformLayout();
  1435. this.panel_Catm1Mode.ResumeLayout(false);
  1436. this.panel_Catm1Mode.PerformLayout();
  1437. this.panel_GpsMode.ResumeLayout(false);
  1438. this.panel_GpsMode.PerformLayout();
  1439. this.panel_SensorTest.ResumeLayout(false);
  1440. this.panel_SensorTest.PerformLayout();
  1441. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ExcelOpenDelay)).EndInit();
  1442. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Sensor)).EndInit();
  1443. this.panel_MergeMain.ResumeLayout(false);
  1444. this.panel_MergeMain.PerformLayout();
  1445. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
  1446. this.panel_Catm1Test.ResumeLayout(false);
  1447. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Catm1)).EndInit();
  1448. this.panel_SnCheckMain.ResumeLayout(false);
  1449. this.panel_SnCheckMain.PerformLayout();
  1450. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Chk)).EndInit();
  1451. this.panel_GpsTest.ResumeLayout(false);
  1452. this.panel_GpsTest.PerformLayout();
  1453. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Gps)).EndInit();
  1454. this.panel_SnTest.ResumeLayout(false);
  1455. this.panel_SnTest.PerformLayout();
  1456. ((System.ComponentModel.ISupportInitialize)(this.dataGridView_SnInsert)).EndInit();
  1457. this.ResumeLayout(false);
  1458. }
  1459. #endregion
  1460. private System.IO.Ports.SerialPort serialPort;
  1461. private System.Windows.Forms.Panel panel_Main;
  1462. private System.Windows.Forms.Panel panel_SensorTest;
  1463. private System.Windows.Forms.RichTextBox richTextBox_Sensor;
  1464. private System.Windows.Forms.DataGridView dataGridView_Sensor;
  1465. private System.Windows.Forms.Panel panel1;
  1466. private System.Windows.Forms.PictureBox pictureBox6;
  1467. private System.Windows.Forms.Panel panel_SensorMode;
  1468. private System.Windows.Forms.Panel panel_Catm1Mode;
  1469. private System.Windows.Forms.Panel panel_GpsMode;
  1470. private System.Windows.Forms.Label label1;
  1471. private System.Windows.Forms.Label label_SensorTest;
  1472. private System.Windows.Forms.Label label_Catm1Test;
  1473. private System.Windows.Forms.Label label_GPSTest;
  1474. private System.Windows.Forms.Label label6;
  1475. private System.Windows.Forms.GroupBox groupBox9;
  1476. private System.Windows.Forms.ComboBox comboBox_Port;
  1477. private System.Windows.Forms.ComboBox comboBox_bps;
  1478. private System.Windows.Forms.Label cmCom_Port;
  1479. private System.Windows.Forms.Label cmBaudRate;
  1480. private System.Windows.Forms.Panel panel_Port;
  1481. private System.Windows.Forms.Label label_Port;
  1482. private System.Windows.Forms.Panel panel4;
  1483. private System.Windows.Forms.PictureBox pictureBox5;
  1484. private System.Windows.Forms.Panel panel_Catm1Test;
  1485. private System.Windows.Forms.RichTextBox richTextBox_catm1;
  1486. private System.Windows.Forms.DataGridView dataGridView_Catm1;
  1487. private System.Windows.Forms.Panel panel_GpsTest;
  1488. private System.Windows.Forms.RichTextBox richTextBox_Gps;
  1489. private System.Windows.Forms.DataGridView dataGridView_Gps;
  1490. private System.Windows.Forms.CheckBox checkBox_TerminalStop;
  1491. private System.Windows.Forms.CheckBox checkBox_Edit;
  1492. private System.Windows.Forms.Button button_Clear;
  1493. private System.Windows.Forms.CheckBox checkBox_GPGSV;
  1494. private System.Windows.Forms.Button button_GpsTestSave;
  1495. private System.Windows.Forms.Button button_Path;
  1496. private System.Windows.Forms.Panel panel_Merge;
  1497. private System.Windows.Forms.Label label_Merge;
  1498. private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog_Mainpath;
  1499. private System.Windows.Forms.Panel panel_SnCheck;
  1500. private System.Windows.Forms.Label label_SnCheck;
  1501. private System.Windows.Forms.Panel panel_MergeMain;
  1502. private System.Windows.Forms.ProgressBar progressBar_Merge;
  1503. private System.Windows.Forms.Button button_PrevFile;
  1504. private System.Windows.Forms.Button button_AfterFile;
  1505. private System.Windows.Forms.ListBox listBox_AfterFile;
  1506. private System.Windows.Forms.ListBox listBox_PreviousFile;
  1507. private System.Windows.Forms.OpenFileDialog openFileDialog;
  1508. private System.Windows.Forms.Panel panel_SnCheckMain;
  1509. private System.Windows.Forms.DataGridView dataGridView_Chk;
  1510. private System.Windows.Forms.Button button_FileFindLoad;
  1511. private System.Windows.Forms.ProgressBar progressBar2;
  1512. private System.Windows.Forms.Button button_Merge;
  1513. private System.Windows.Forms.Label label_Cnt;
  1514. private System.Windows.Forms.NumericUpDown numericUpDown1;
  1515. private System.Windows.Forms.Label label7;
  1516. private System.Windows.Forms.Button button_ChkStart;
  1517. private System.Windows.Forms.Label label_Diff;
  1518. private System.Windows.Forms.Label label_Duplicate;
  1519. private System.Windows.Forms.ListBox listBox_Diff;
  1520. private System.Windows.Forms.ListBox listBox_SNDuplicate;
  1521. private System.Windows.Forms.Label label8;
  1522. private System.Windows.Forms.ListBox listBox_ProductDuplicate;
  1523. private System.Windows.Forms.Button button_DiffClear;
  1524. private System.Windows.Forms.Button button_DuplicateClear;
  1525. private System.Windows.Forms.Button button_SNClear;
  1526. private System.Windows.Forms.DataGridViewTextBoxColumn Catm1_SerialNumber;
  1527. private System.Windows.Forms.DataGridViewTextBoxColumn Modem_Ver;
  1528. private System.Windows.Forms.DataGridViewTextBoxColumn RSRP;
  1529. private System.Windows.Forms.DataGridViewTextBoxColumn RSRQ;
  1530. private System.Windows.Forms.Panel panel_SnTest;
  1531. private System.Windows.Forms.DataGridView dataGridView_SnInsert;
  1532. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
  1533. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
  1534. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
  1535. private System.Windows.Forms.Panel panel_Sninsert;
  1536. private System.Windows.Forms.Label label_Sninsert;
  1537. private System.Windows.Forms.DataGridViewTextBoxColumn Gps_SerialNumber;
  1538. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
  1539. private System.Windows.Forms.DataGridViewTextBoxColumn LimitMax;
  1540. private System.Windows.Forms.DataGridViewTextBoxColumn LimitMin;
  1541. private System.Windows.Forms.DataGridViewTextBoxColumn Sec;
  1542. private System.Windows.Forms.DataGridViewTextBoxColumn MaxSec;
  1543. private System.Windows.Forms.DataGridViewTextBoxColumn MinSec;
  1544. private System.Windows.Forms.Button button_GpsClear;
  1545. private System.Windows.Forms.RadioButton radioButton_Usim;
  1546. private System.Windows.Forms.RadioButton radioButton_Imei;
  1547. private System.Windows.Forms.CheckBox checkBox_ExcelOpen;
  1548. private System.Windows.Forms.Button button_ExcelOpen;
  1549. private System.Windows.Forms.NumericUpDown numericUpDown_ExcelOpenDelay;
  1550. private System.Windows.Forms.Button button_SnRead;
  1551. private System.Windows.Forms.Button button_Rewrite;
  1552. private System.Windows.Forms.TextBox textBox_PrevNum;
  1553. private System.Windows.Forms.TextBox textBox_AfterNum;
  1554. private System.Windows.Forms.CheckBox checkBox_Usim_Imei_Phone_Num;
  1555. private System.Windows.Forms.DataGridViewTextBoxColumn ProductNumber;
  1556. private System.Windows.Forms.DataGridViewTextBoxColumn SN;
  1557. private System.Windows.Forms.DataGridViewTextBoxColumn IMEI;
  1558. private System.Windows.Forms.DataGridViewTextBoxColumn Phone;
  1559. private System.Windows.Forms.DataGridViewTextBoxColumn USIM;
  1560. private System.Windows.Forms.DataGridViewTextBoxColumn Version;
  1561. private System.Windows.Forms.DataGridViewTextBoxColumn BatteryVoltage;
  1562. private System.Windows.Forms.DataGridViewTextBoxColumn SystemVoltage;
  1563. private System.Windows.Forms.DataGridViewTextBoxColumn Temp;
  1564. private System.Windows.Forms.DataGridViewTextBoxColumn BMA_X;
  1565. private System.Windows.Forms.DataGridViewTextBoxColumn BMA_Y;
  1566. private System.Windows.Forms.DataGridViewTextBoxColumn BMA_Z;
  1567. private System.Windows.Forms.DataGridViewTextBoxColumn BLE;
  1568. private System.Windows.Forms.DataGridViewTextBoxColumn BattMin;
  1569. private System.Windows.Forms.DataGridViewTextBoxColumn SystemVoltmin;
  1570. private System.Windows.Forms.DataGridViewTextBoxColumn TempMax;
  1571. private System.Windows.Forms.DataGridViewTextBoxColumn TempMin;
  1572. private System.Windows.Forms.DataGridViewTextBoxColumn BMAX_Max;
  1573. private System.Windows.Forms.DataGridViewTextBoxColumn BMAX_Min;
  1574. private System.Windows.Forms.DataGridViewTextBoxColumn BMAY_Max;
  1575. private System.Windows.Forms.DataGridViewTextBoxColumn BMAY_Min;
  1576. private System.Windows.Forms.DataGridViewTextBoxColumn BMAZ_Max;
  1577. private System.Windows.Forms.DataGridViewTextBoxColumn BMAZ_Min;
  1578. private System.Windows.Forms.Button button_Write;
  1579. private System.Windows.Forms.TextBox textBox_Write;
  1580. private System.Windows.Forms.Label label_SerialWrite;
  1581. private System.Windows.Forms.Label label_Version;
  1582. }
  1583. }