UAS_出货标签管理.Designer.cs 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920
  1. namespace UAS_LabelMachine
  2. {
  3. partial class UAS_出货标签打印
  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 窗体设计器生成的代码
  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(UAS_出货标签打印));
  30. this.pi_inoutno_label = new System.Windows.Forms.Label();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.label22 = new System.Windows.Forms.Label();
  34. this.AutoMatch = new System.Windows.Forms.CheckBox();
  35. this.pr_code_label = new System.Windows.Forms.Label();
  36. this.label24 = new System.Windows.Forms.Label();
  37. this.CollectionUnit = new System.Windows.Forms.ComboBox();
  38. this.CollectionUnit_label = new System.Windows.Forms.Label();
  39. this.GenerateBarCode = new System.Windows.Forms.Button();
  40. this.LabelMainTain = new System.Windows.Forms.Button();
  41. this.SaveGrid = new System.Windows.Forms.Button();
  42. this.sg_separator_label = new System.Windows.Forms.Label();
  43. this.CollectionSetting = new System.Windows.Forms.Button();
  44. this.Si_ItemDGV = new System.Windows.Forms.DataGridView();
  45. this.si_detno = new System.Windows.Forms.DataGridViewTextBoxColumn();
  46. this.si_index = new System.Windows.Forms.DataGridViewTextBoxColumn();
  47. this.si_kind = new System.Windows.Forms.DataGridViewTextBoxColumn();
  48. this.si_indexstring = new System.Windows.Forms.DataGridViewTextBoxColumn();
  49. this.si_length = new System.Windows.Forms.DataGridViewTextBoxColumn();
  50. this.si_expression = new System.Windows.Forms.DataGridViewTextBoxColumn();
  51. this.si_item = new System.Windows.Forms.DataGridViewTextBoxColumn();
  52. this.CleanDetail = new System.Windows.Forms.Button();
  53. this.pib_id = new System.Windows.Forms.Label();
  54. this.pi_cardcode = new System.Windows.Forms.Label();
  55. this.pi_cardcode_label = new System.Windows.Forms.Label();
  56. this.Fresh = new System.Windows.Forms.LinkLabel();
  57. this.label3 = new System.Windows.Forms.Label();
  58. this.CleanInputAfterCollect = new System.Windows.Forms.CheckBox();
  59. this.AllCollected = new System.Windows.Forms.Button();
  60. this.PowerSetting = new System.Windows.Forms.Button();
  61. this.RefreshDBConnect = new System.Windows.Forms.Timer(this.components);
  62. this.GetGridOnly = new System.Windows.Forms.CheckBox();
  63. this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  64. this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  65. this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  66. this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  67. this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  68. this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  69. this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  70. this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  71. this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  72. this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  73. this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  74. this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  75. this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  76. this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  77. this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  78. this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  79. this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  80. this.dataGridViewCheckBoxColumn2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  81. this.dataGridViewCheckBoxColumn3 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  82. this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  83. this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  84. this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  85. this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  86. this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  87. this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  88. this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  89. this.MidSource = new System.Windows.Forms.BindingSource(this.components);
  90. this.ChooseAll = new System.Windows.Forms.Button();
  91. this.ExportFileDialog = new System.Windows.Forms.FolderBrowserDialog();
  92. this.groupBoxWithBorder1 = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  93. this.ExportData = new System.Windows.Forms.Button();
  94. this.label18 = new System.Windows.Forms.Label();
  95. this.MidBoxEnd = new UAS_LabelMachine.CustomControl.EnterTextBox();
  96. this.MidBoxBegin = new UAS_LabelMachine.CustomControl.EnterTextBox();
  97. this.label16 = new System.Windows.Forms.Label();
  98. this.SingleBoxEnd = new UAS_LabelMachine.CustomControl.EnterTextBox();
  99. this.SingleBoxBegin = new UAS_LabelMachine.CustomControl.EnterTextBox();
  100. this.label12 = new System.Windows.Forms.Label();
  101. this.label7 = new System.Windows.Forms.Label();
  102. this.pr_code = new UAS_LabelMachine.CustomControl.SearchTextBox();
  103. this.CollectionProcess = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  104. this.Capacity = new System.Windows.Forms.Label();
  105. this.Process_midboxcode = new System.Windows.Forms.Label();
  106. this.Process_outboxcode = new System.Windows.Forms.Label();
  107. this.TotalCount = new System.Windows.Forms.Label();
  108. this.label17 = new System.Windows.Forms.Label();
  109. this.CollectedCount = new System.Windows.Forms.Label();
  110. this.label14 = new System.Windows.Forms.Label();
  111. this.label11 = new System.Windows.Forms.Label();
  112. this.label13 = new System.Windows.Forms.Label();
  113. this.Installed = new System.Windows.Forms.Label();
  114. this.Process = new System.Windows.Forms.Label();
  115. this.sg_separator = new UAS_LabelMachine.CustomControl.EnterTextBox();
  116. this.Input = new UAS_LabelMachine.CustomControl.EnterTextBox();
  117. this.griddetno = new UAS_LabelMachine.CustomControl.EnterTextBox();
  118. this.sg_code = new UAS_LabelMachine.CustomControl.SearchTextBox();
  119. this.MessageLog = new UAS_LabelMachine.CustomControl.RichText.RichTextAutoBottom();
  120. this.LabelInf = new UAS_LabelMachine.CustomControl.DataGridViewWithSerialNum();
  121. this.pi_inoutno = new UAS_LabelMachine.CustomControl.EnterTextBox();
  122. this.SingleLabel = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  123. this.ViVoPlate = new System.Windows.Forms.Button();
  124. this.SingleLabelPrinter = new UAS_LabelMachine.CustomControl.PrinterCombox();
  125. this.SingleLabelPrint = new System.Windows.Forms.Button();
  126. this.SingleLabelAutoPrint = new System.Windows.Forms.CheckBox();
  127. this.SingleLabelCombox = new System.Windows.Forms.ComboBox();
  128. this.MidLabel = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  129. this.MidLabelNum = new UAS_LabelMachine.CustomControl.EnterTextBox();
  130. this.label5 = new System.Windows.Forms.Label();
  131. this.label4 = new System.Windows.Forms.Label();
  132. this.MidLabelPrinter = new UAS_LabelMachine.CustomControl.PrinterCombox();
  133. this.label15 = new System.Windows.Forms.Label();
  134. this.MidBoxCapacity = new System.Windows.Forms.NumericUpDown();
  135. this.MidLabelPrint = new System.Windows.Forms.Button();
  136. this.MidLabelAutoPrint = new System.Windows.Forms.CheckBox();
  137. this.MidLabelCombox = new System.Windows.Forms.ComboBox();
  138. this.OutBoxLabel = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  139. this.LogingOut = new System.Windows.Forms.LinkLabel();
  140. this.GetOutBoxCode = new System.Windows.Forms.Button();
  141. this.OutBoxNum = new UAS_LabelMachine.CustomControl.EnterTextBox();
  142. this.label10 = new System.Windows.Forms.Label();
  143. this.WeightNet = new UAS_LabelMachine.CustomControl.EnterTextBox();
  144. this.label9 = new System.Windows.Forms.Label();
  145. this.WeightGross = new UAS_LabelMachine.CustomControl.EnterTextBox();
  146. this.label8 = new System.Windows.Forms.Label();
  147. this.label6 = new System.Windows.Forms.Label();
  148. this.OutBoxPrinter = new UAS_LabelMachine.CustomControl.PrinterCombox();
  149. this.OutboxCapacity = new System.Windows.Forms.NumericUpDown();
  150. this.OutBoxLabelPackage = new System.Windows.Forms.Button();
  151. this.OutBoxLabelPrint = new System.Windows.Forms.Button();
  152. this.OutBoxLabelAutoPrint = new System.Windows.Forms.CheckBox();
  153. this.OutBoxCombox = new System.Windows.Forms.ComboBox();
  154. this.Choose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  155. this.pib_ifpick = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  156. this.pib_ifprint = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  157. this.pib_id1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  158. this.pib_pdno = new System.Windows.Forms.DataGridViewTextBoxColumn();
  159. this.pib_prodcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  160. this.pr_vendprodcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  161. this.pr_brand = new System.Windows.Forms.DataGridViewTextBoxColumn();
  162. this.pib_madein = new System.Windows.Forms.DataGridViewTextBoxColumn();
  163. this.pib_lotno = new System.Windows.Forms.DataGridViewTextBoxColumn();
  164. this.pib_datecode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  165. this.pib_cusbarcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  166. this.pib_cusoutboxcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  167. this.pib_datecode1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  168. this.pib_qty = new System.Windows.Forms.DataGridViewTextBoxColumn();
  169. this.pib_barcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  170. this.pib_custbarcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  171. this.pd_pocode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  172. this.pd_custprodcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  173. this.pd_custprodspec = new System.Windows.Forms.DataGridViewTextBoxColumn();
  174. this.pib_outboxcode1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  175. this.pib_outboxcode2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  176. ((System.ComponentModel.ISupportInitialize)(this.Si_ItemDGV)).BeginInit();
  177. ((System.ComponentModel.ISupportInitialize)(this.MidSource)).BeginInit();
  178. this.groupBoxWithBorder1.SuspendLayout();
  179. this.CollectionProcess.SuspendLayout();
  180. ((System.ComponentModel.ISupportInitialize)(this.LabelInf)).BeginInit();
  181. this.SingleLabel.SuspendLayout();
  182. this.MidLabel.SuspendLayout();
  183. ((System.ComponentModel.ISupportInitialize)(this.MidBoxCapacity)).BeginInit();
  184. this.OutBoxLabel.SuspendLayout();
  185. ((System.ComponentModel.ISupportInitialize)(this.OutboxCapacity)).BeginInit();
  186. this.SuspendLayout();
  187. //
  188. // pi_inoutno_label
  189. //
  190. this.pi_inoutno_label.AutoSize = true;
  191. this.pi_inoutno_label.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  192. this.pi_inoutno_label.Location = new System.Drawing.Point(3, 10);
  193. this.pi_inoutno_label.Name = "pi_inoutno_label";
  194. this.pi_inoutno_label.Size = new System.Drawing.Size(65, 20);
  195. this.pi_inoutno_label.TabIndex = 3;
  196. this.pi_inoutno_label.Text = "出货单号";
  197. //
  198. // label1
  199. //
  200. this.label1.AutoSize = true;
  201. this.label1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  202. this.label1.Location = new System.Drawing.Point(3, 66);
  203. this.label1.Name = "label1";
  204. this.label1.Size = new System.Drawing.Size(65, 20);
  205. this.label1.TabIndex = 31;
  206. this.label1.Text = "采集策略";
  207. //
  208. // label2
  209. //
  210. this.label2.AutoSize = true;
  211. this.label2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  212. this.label2.Location = new System.Drawing.Point(5, 106);
  213. this.label2.Name = "label2";
  214. this.label2.Size = new System.Drawing.Size(65, 20);
  215. this.label2.TabIndex = 33;
  216. this.label2.Text = "当前采集";
  217. //
  218. // label22
  219. //
  220. this.label22.AutoSize = true;
  221. this.label22.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  222. this.label22.Location = new System.Drawing.Point(72, 106);
  223. this.label22.Name = "label22";
  224. this.label22.Size = new System.Drawing.Size(65, 20);
  225. this.label22.TabIndex = 34;
  226. this.label22.Text = "明细序号";
  227. //
  228. // AutoMatch
  229. //
  230. this.AutoMatch.AutoSize = true;
  231. this.AutoMatch.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  232. this.AutoMatch.Location = new System.Drawing.Point(144, 106);
  233. this.AutoMatch.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  234. this.AutoMatch.Name = "AutoMatch";
  235. this.AutoMatch.Size = new System.Drawing.Size(84, 24);
  236. this.AutoMatch.TabIndex = 49;
  237. this.AutoMatch.Text = "自动匹配";
  238. this.AutoMatch.UseVisualStyleBackColor = true;
  239. //
  240. // pr_code_label
  241. //
  242. this.pr_code_label.AutoSize = true;
  243. this.pr_code_label.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  244. this.pr_code_label.Location = new System.Drawing.Point(72, 158);
  245. this.pr_code_label.Name = "pr_code_label";
  246. this.pr_code_label.Size = new System.Drawing.Size(65, 20);
  247. this.pr_code_label.TabIndex = 51;
  248. this.pr_code_label.Text = "物料编号";
  249. //
  250. // label24
  251. //
  252. this.label24.AutoSize = true;
  253. this.label24.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  254. this.label24.Location = new System.Drawing.Point(9, 218);
  255. this.label24.Name = "label24";
  256. this.label24.Size = new System.Drawing.Size(51, 20);
  257. this.label24.TabIndex = 55;
  258. this.label24.Text = "输入框";
  259. //
  260. // CollectionUnit
  261. //
  262. this.CollectionUnit.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  263. this.CollectionUnit.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  264. this.CollectionUnit.FormattingEnabled = true;
  265. this.CollectionUnit.Items.AddRange(new object[] {
  266. "盘",
  267. "盒",
  268. "全部"});
  269. this.CollectionUnit.Location = new System.Drawing.Point(296, 182);
  270. this.CollectionUnit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  271. this.CollectionUnit.Name = "CollectionUnit";
  272. this.CollectionUnit.Size = new System.Drawing.Size(54, 25);
  273. this.CollectionUnit.TabIndex = 41;
  274. //
  275. // CollectionUnit_label
  276. //
  277. this.CollectionUnit_label.AutoSize = true;
  278. this.CollectionUnit_label.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  279. this.CollectionUnit_label.Location = new System.Drawing.Point(228, 182);
  280. this.CollectionUnit_label.Name = "CollectionUnit_label";
  281. this.CollectionUnit_label.Size = new System.Drawing.Size(65, 20);
  282. this.CollectionUnit_label.TabIndex = 56;
  283. this.CollectionUnit_label.Text = "采集单位";
  284. //
  285. // GenerateBarCode
  286. //
  287. this.GenerateBarCode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  288. this.GenerateBarCode.Location = new System.Drawing.Point(374, 178);
  289. this.GenerateBarCode.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  290. this.GenerateBarCode.Name = "GenerateBarCode";
  291. this.GenerateBarCode.Size = new System.Drawing.Size(68, 26);
  292. this.GenerateBarCode.TabIndex = 41;
  293. this.GenerateBarCode.Text = "生成条码";
  294. this.GenerateBarCode.UseVisualStyleBackColor = true;
  295. this.GenerateBarCode.Click += new System.EventHandler(this.GenerateBarCode_Click);
  296. //
  297. // LabelMainTain
  298. //
  299. this.LabelMainTain.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  300. this.LabelMainTain.Location = new System.Drawing.Point(448, 178);
  301. this.LabelMainTain.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  302. this.LabelMainTain.Name = "LabelMainTain";
  303. this.LabelMainTain.Size = new System.Drawing.Size(68, 26);
  304. this.LabelMainTain.TabIndex = 57;
  305. this.LabelMainTain.Text = "标签维护";
  306. this.LabelMainTain.UseVisualStyleBackColor = true;
  307. this.LabelMainTain.Click += new System.EventHandler(this.LabelMaintain_Click);
  308. //
  309. // SaveGrid
  310. //
  311. this.SaveGrid.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  312. this.SaveGrid.Location = new System.Drawing.Point(448, 216);
  313. this.SaveGrid.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  314. this.SaveGrid.Name = "SaveGrid";
  315. this.SaveGrid.Size = new System.Drawing.Size(68, 26);
  316. this.SaveGrid.TabIndex = 59;
  317. this.SaveGrid.Text = "保存明细";
  318. this.SaveGrid.UseVisualStyleBackColor = true;
  319. this.SaveGrid.Click += new System.EventHandler(this.SaveGrid_Click);
  320. //
  321. // sg_separator_label
  322. //
  323. this.sg_separator_label.AutoSize = true;
  324. this.sg_separator_label.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  325. this.sg_separator_label.Location = new System.Drawing.Point(233, 66);
  326. this.sg_separator_label.Name = "sg_separator_label";
  327. this.sg_separator_label.Size = new System.Drawing.Size(51, 20);
  328. this.sg_separator_label.TabIndex = 61;
  329. this.sg_separator_label.Text = "分隔符";
  330. //
  331. // CollectionSetting
  332. //
  333. this.CollectionSetting.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  334. this.CollectionSetting.Location = new System.Drawing.Point(230, 104);
  335. this.CollectionSetting.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  336. this.CollectionSetting.Name = "CollectionSetting";
  337. this.CollectionSetting.Size = new System.Drawing.Size(88, 26);
  338. this.CollectionSetting.TabIndex = 63;
  339. this.CollectionSetting.Text = "采集策略设置";
  340. this.CollectionSetting.UseVisualStyleBackColor = true;
  341. this.CollectionSetting.Click += new System.EventHandler(this.CollectionSetting_Click);
  342. //
  343. // Si_ItemDGV
  344. //
  345. this.Si_ItemDGV.AllowUserToAddRows = false;
  346. this.Si_ItemDGV.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
  347. this.Si_ItemDGV.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  348. this.Si_ItemDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  349. this.si_detno,
  350. this.si_index,
  351. this.si_kind,
  352. this.si_indexstring,
  353. this.si_length,
  354. this.si_expression,
  355. this.si_item});
  356. this.Si_ItemDGV.Location = new System.Drawing.Point(324, 16);
  357. this.Si_ItemDGV.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  358. this.Si_ItemDGV.Name = "Si_ItemDGV";
  359. this.Si_ItemDGV.RowTemplate.Height = 23;
  360. this.Si_ItemDGV.Size = new System.Drawing.Size(134, 144);
  361. this.Si_ItemDGV.TabIndex = 65;
  362. //
  363. // si_detno
  364. //
  365. this.si_detno.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  366. this.si_detno.DataPropertyName = "si_detno";
  367. this.si_detno.HeaderText = "顺序";
  368. this.si_detno.Name = "si_detno";
  369. this.si_detno.ReadOnly = true;
  370. this.si_detno.Width = 60;
  371. //
  372. // si_index
  373. //
  374. this.si_index.DataPropertyName = "si_index";
  375. this.si_index.HeaderText = "起始位置";
  376. this.si_index.Name = "si_index";
  377. this.si_index.Visible = false;
  378. //
  379. // si_kind
  380. //
  381. this.si_kind.DataPropertyName = "si_kind";
  382. this.si_kind.HeaderText = "解析方式";
  383. this.si_kind.Name = "si_kind";
  384. this.si_kind.Visible = false;
  385. //
  386. // si_indexstring
  387. //
  388. this.si_indexstring.DataPropertyName = "si_indexstring";
  389. this.si_indexstring.HeaderText = "索引字符";
  390. this.si_indexstring.Name = "si_indexstring";
  391. this.si_indexstring.Visible = false;
  392. //
  393. // si_length
  394. //
  395. this.si_length.DataPropertyName = "si_length";
  396. this.si_length.HeaderText = "长度";
  397. this.si_length.Name = "si_length";
  398. this.si_length.Visible = false;
  399. //
  400. // si_expression
  401. //
  402. this.si_expression.DataPropertyName = "si_expression";
  403. this.si_expression.HeaderText = "正则表达式";
  404. this.si_expression.Name = "si_expression";
  405. this.si_expression.Visible = false;
  406. //
  407. // si_item
  408. //
  409. this.si_item.DataPropertyName = "si_item";
  410. this.si_item.HeaderText = "采集项目";
  411. this.si_item.Name = "si_item";
  412. this.si_item.ReadOnly = true;
  413. this.si_item.Width = 80;
  414. //
  415. // CleanDetail
  416. //
  417. this.CleanDetail.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  418. this.CleanDetail.Location = new System.Drawing.Point(374, 216);
  419. this.CleanDetail.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  420. this.CleanDetail.Name = "CleanDetail";
  421. this.CleanDetail.Size = new System.Drawing.Size(68, 26);
  422. this.CleanDetail.TabIndex = 66;
  423. this.CleanDetail.Text = "清除明细";
  424. this.CleanDetail.UseVisualStyleBackColor = true;
  425. this.CleanDetail.Click += new System.EventHandler(this.CleanDetail_Click);
  426. //
  427. // pib_id
  428. //
  429. this.pib_id.AutoSize = true;
  430. this.pib_id.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  431. this.pib_id.Location = new System.Drawing.Point(142, 160);
  432. this.pib_id.Name = "pib_id";
  433. this.pib_id.Size = new System.Drawing.Size(0, 20);
  434. this.pib_id.TabIndex = 69;
  435. this.pib_id.Visible = false;
  436. //
  437. // pi_cardcode
  438. //
  439. this.pi_cardcode.AutoSize = true;
  440. this.pi_cardcode.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  441. this.pi_cardcode.Location = new System.Drawing.Point(77, 38);
  442. this.pi_cardcode.Name = "pi_cardcode";
  443. this.pi_cardcode.Size = new System.Drawing.Size(0, 20);
  444. this.pi_cardcode.TabIndex = 71;
  445. //
  446. // pi_cardcode_label
  447. //
  448. this.pi_cardcode_label.AutoSize = true;
  449. this.pi_cardcode_label.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  450. this.pi_cardcode_label.Location = new System.Drawing.Point(3, 38);
  451. this.pi_cardcode_label.Name = "pi_cardcode_label";
  452. this.pi_cardcode_label.Size = new System.Drawing.Size(65, 20);
  453. this.pi_cardcode_label.TabIndex = 72;
  454. this.pi_cardcode_label.Text = "客户编号";
  455. //
  456. // Fresh
  457. //
  458. this.Fresh.AutoSize = true;
  459. this.Fresh.Location = new System.Drawing.Point(228, 14);
  460. this.Fresh.Name = "Fresh";
  461. this.Fresh.Size = new System.Drawing.Size(29, 12);
  462. this.Fresh.TabIndex = 73;
  463. this.Fresh.TabStop = true;
  464. this.Fresh.Text = "刷新";
  465. this.Fresh.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.Refresh_LinkClicked);
  466. //
  467. // label3
  468. //
  469. this.label3.AutoSize = true;
  470. this.label3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  471. this.label3.Location = new System.Drawing.Point(2, 582);
  472. this.label3.Name = "label3";
  473. this.label3.Size = new System.Drawing.Size(74, 21);
  474. this.label3.TabIndex = 29;
  475. this.label3.Text = "输出日志";
  476. //
  477. // CleanInputAfterCollect
  478. //
  479. this.CleanInputAfterCollect.AutoSize = true;
  480. this.CleanInputAfterCollect.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  481. this.CleanInputAfterCollect.Location = new System.Drawing.Point(231, 218);
  482. this.CleanInputAfterCollect.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  483. this.CleanInputAfterCollect.Name = "CleanInputAfterCollect";
  484. this.CleanInputAfterCollect.Size = new System.Drawing.Size(123, 21);
  485. this.CleanInputAfterCollect.TabIndex = 74;
  486. this.CleanInputAfterCollect.Text = "采集后清除输入框";
  487. this.CleanInputAfterCollect.UseVisualStyleBackColor = true;
  488. //
  489. // AllCollected
  490. //
  491. this.AllCollected.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  492. this.AllCollected.Location = new System.Drawing.Point(521, 218);
  493. this.AllCollected.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  494. this.AllCollected.Name = "AllCollected";
  495. this.AllCollected.Size = new System.Drawing.Size(68, 26);
  496. this.AllCollected.TabIndex = 75;
  497. this.AllCollected.Text = "全部已采";
  498. this.AllCollected.UseVisualStyleBackColor = true;
  499. this.AllCollected.Click += new System.EventHandler(this.AllCollected_Click);
  500. //
  501. // PowerSetting
  502. //
  503. this.PowerSetting.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  504. this.PowerSetting.Location = new System.Drawing.Point(521, 178);
  505. this.PowerSetting.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  506. this.PowerSetting.Name = "PowerSetting";
  507. this.PowerSetting.Size = new System.Drawing.Size(68, 26);
  508. this.PowerSetting.TabIndex = 76;
  509. this.PowerSetting.Text = "权限设置";
  510. this.PowerSetting.UseVisualStyleBackColor = true;
  511. this.PowerSetting.Visible = false;
  512. this.PowerSetting.Click += new System.EventHandler(this.PowerSetting_Click);
  513. //
  514. // GetGridOnly
  515. //
  516. this.GetGridOnly.AutoSize = true;
  517. this.GetGridOnly.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  518. this.GetGridOnly.Location = new System.Drawing.Point(230, 38);
  519. this.GetGridOnly.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  520. this.GetGridOnly.Name = "GetGridOnly";
  521. this.GetGridOnly.Size = new System.Drawing.Size(77, 20);
  522. this.GetGridOnly.TabIndex = 82;
  523. this.GetGridOnly.Text = "仅获取表格";
  524. this.GetGridOnly.UseVisualStyleBackColor = true;
  525. //
  526. // dataGridViewCheckBoxColumn1
  527. //
  528. this.dataGridViewCheckBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  529. this.dataGridViewCheckBoxColumn1.HeaderText = "勾选";
  530. this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
  531. this.dataGridViewCheckBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  532. this.dataGridViewCheckBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  533. this.dataGridViewCheckBoxColumn1.Width = 60;
  534. //
  535. // dataGridViewTextBoxColumn1
  536. //
  537. this.dataGridViewTextBoxColumn1.DataPropertyName = "si_detno";
  538. this.dataGridViewTextBoxColumn1.HeaderText = "bi_id";
  539. this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
  540. this.dataGridViewTextBoxColumn1.ReadOnly = true;
  541. this.dataGridViewTextBoxColumn1.Visible = false;
  542. this.dataGridViewTextBoxColumn1.Width = 80;
  543. //
  544. // dataGridViewTextBoxColumn2
  545. //
  546. this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  547. this.dataGridViewTextBoxColumn2.DataPropertyName = "si_index";
  548. this.dataGridViewTextBoxColumn2.HeaderText = "明细序号";
  549. this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
  550. this.dataGridViewTextBoxColumn2.ReadOnly = true;
  551. this.dataGridViewTextBoxColumn2.Visible = false;
  552. this.dataGridViewTextBoxColumn2.Width = 96;
  553. //
  554. // dataGridViewTextBoxColumn3
  555. //
  556. this.dataGridViewTextBoxColumn3.DataPropertyName = "bi_prodcode";
  557. this.dataGridViewTextBoxColumn3.HeaderText = "物料编号";
  558. this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
  559. this.dataGridViewTextBoxColumn3.ReadOnly = true;
  560. this.dataGridViewTextBoxColumn3.Visible = false;
  561. this.dataGridViewTextBoxColumn3.Width = 78;
  562. //
  563. // dataGridViewTextBoxColumn4
  564. //
  565. this.dataGridViewTextBoxColumn4.DataPropertyName = "si_indexstring";
  566. this.dataGridViewTextBoxColumn4.HeaderText = "MPN";
  567. this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
  568. this.dataGridViewTextBoxColumn4.Visible = false;
  569. this.dataGridViewTextBoxColumn4.Width = 54;
  570. //
  571. // dataGridViewTextBoxColumn5
  572. //
  573. this.dataGridViewTextBoxColumn5.DataPropertyName = "si_length";
  574. this.dataGridViewTextBoxColumn5.HeaderText = "LotNo";
  575. this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
  576. this.dataGridViewTextBoxColumn5.ReadOnly = true;
  577. this.dataGridViewTextBoxColumn5.Visible = false;
  578. this.dataGridViewTextBoxColumn5.Width = 48;
  579. //
  580. // dataGridViewTextBoxColumn6
  581. //
  582. this.dataGridViewTextBoxColumn6.DataPropertyName = "si_expression";
  583. this.dataGridViewTextBoxColumn6.HeaderText = "DateCode";
  584. this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
  585. this.dataGridViewTextBoxColumn6.Visible = false;
  586. this.dataGridViewTextBoxColumn6.Width = 60;
  587. //
  588. // dataGridViewTextBoxColumn7
  589. //
  590. this.dataGridViewTextBoxColumn7.DataPropertyName = "bi_inqty";
  591. this.dataGridViewTextBoxColumn7.HeaderText = "数量";
  592. this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
  593. this.dataGridViewTextBoxColumn7.ReadOnly = true;
  594. this.dataGridViewTextBoxColumn7.Width = 80;
  595. //
  596. // dataGridViewTextBoxColumn8
  597. //
  598. this.dataGridViewTextBoxColumn8.DataPropertyName = "pib_cusbarcode";
  599. this.dataGridViewTextBoxColumn8.HeaderText = "唯一条码";
  600. this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
  601. this.dataGridViewTextBoxColumn8.Width = 90;
  602. //
  603. // dataGridViewTextBoxColumn9
  604. //
  605. this.dataGridViewTextBoxColumn9.DataPropertyName = "pib_cusoutboxcode";
  606. this.dataGridViewTextBoxColumn9.HeaderText = "中盒号";
  607. this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
  608. this.dataGridViewTextBoxColumn9.Width = 78;
  609. //
  610. // dataGridViewTextBoxColumn10
  611. //
  612. this.dataGridViewTextBoxColumn10.HeaderText = "外箱号";
  613. this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
  614. this.dataGridViewTextBoxColumn10.Visible = false;
  615. this.dataGridViewTextBoxColumn10.Width = 108;
  616. //
  617. // dataGridViewTextBoxColumn11
  618. //
  619. this.dataGridViewTextBoxColumn11.DataPropertyName = "si_item";
  620. this.dataGridViewTextBoxColumn11.HeaderText = "采集项次";
  621. this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
  622. this.dataGridViewTextBoxColumn11.ReadOnly = true;
  623. this.dataGridViewTextBoxColumn11.Width = 54;
  624. //
  625. // dataGridViewTextBoxColumn12
  626. //
  627. this.dataGridViewTextBoxColumn12.DataPropertyName = "si_kind";
  628. this.dataGridViewTextBoxColumn12.HeaderText = "解析方式";
  629. this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
  630. this.dataGridViewTextBoxColumn12.ReadOnly = true;
  631. this.dataGridViewTextBoxColumn12.Width = 78;
  632. //
  633. // dataGridViewTextBoxColumn13
  634. //
  635. this.dataGridViewTextBoxColumn13.DataPropertyName = "si_expression";
  636. this.dataGridViewTextBoxColumn13.HeaderText = "正则表达式";
  637. this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
  638. this.dataGridViewTextBoxColumn13.ReadOnly = true;
  639. this.dataGridViewTextBoxColumn13.Width = 66;
  640. //
  641. // dataGridViewTextBoxColumn14
  642. //
  643. this.dataGridViewTextBoxColumn14.DataPropertyName = "si_index";
  644. this.dataGridViewTextBoxColumn14.HeaderText = "起始位置";
  645. this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
  646. this.dataGridViewTextBoxColumn14.Width = 78;
  647. //
  648. // dataGridViewTextBoxColumn15
  649. //
  650. this.dataGridViewTextBoxColumn15.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  651. this.dataGridViewTextBoxColumn15.DataPropertyName = "si_length";
  652. this.dataGridViewTextBoxColumn15.HeaderText = "字符长度";
  653. this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
  654. this.dataGridViewTextBoxColumn15.Width = 90;
  655. //
  656. // dataGridViewTextBoxColumn16
  657. //
  658. this.dataGridViewTextBoxColumn16.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  659. this.dataGridViewTextBoxColumn16.DataPropertyName = "pib_outboxcode2";
  660. this.dataGridViewTextBoxColumn16.HeaderText = "外箱号";
  661. this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
  662. this.dataGridViewTextBoxColumn16.Width = 90;
  663. //
  664. // dataGridViewCheckBoxColumn2
  665. //
  666. this.dataGridViewCheckBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  667. this.dataGridViewCheckBoxColumn2.DataPropertyName = "pib_ifpick";
  668. this.dataGridViewCheckBoxColumn2.HeaderText = "已采集";
  669. this.dataGridViewCheckBoxColumn2.Name = "dataGridViewCheckBoxColumn2";
  670. this.dataGridViewCheckBoxColumn2.Width = 60;
  671. //
  672. // dataGridViewCheckBoxColumn3
  673. //
  674. this.dataGridViewCheckBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  675. this.dataGridViewCheckBoxColumn3.DataPropertyName = "pib_ifprint";
  676. this.dataGridViewCheckBoxColumn3.HeaderText = "已打印";
  677. this.dataGridViewCheckBoxColumn3.Name = "dataGridViewCheckBoxColumn3";
  678. this.dataGridViewCheckBoxColumn3.Width = 60;
  679. //
  680. // dataGridViewTextBoxColumn17
  681. //
  682. this.dataGridViewTextBoxColumn17.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  683. this.dataGridViewTextBoxColumn17.DataPropertyName = "si_detno";
  684. this.dataGridViewTextBoxColumn17.HeaderText = "顺序";
  685. this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
  686. this.dataGridViewTextBoxColumn17.ReadOnly = true;
  687. this.dataGridViewTextBoxColumn17.Width = 60;
  688. //
  689. // dataGridViewTextBoxColumn18
  690. //
  691. this.dataGridViewTextBoxColumn18.DataPropertyName = "si_index";
  692. this.dataGridViewTextBoxColumn18.HeaderText = "起始位置";
  693. this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
  694. this.dataGridViewTextBoxColumn18.Visible = false;
  695. //
  696. // dataGridViewTextBoxColumn19
  697. //
  698. this.dataGridViewTextBoxColumn19.DataPropertyName = "si_kind";
  699. this.dataGridViewTextBoxColumn19.HeaderText = "解析方式";
  700. this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
  701. this.dataGridViewTextBoxColumn19.Visible = false;
  702. //
  703. // dataGridViewTextBoxColumn20
  704. //
  705. this.dataGridViewTextBoxColumn20.DataPropertyName = "si_indexstring";
  706. this.dataGridViewTextBoxColumn20.HeaderText = "索引字符";
  707. this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
  708. this.dataGridViewTextBoxColumn20.Visible = false;
  709. //
  710. // dataGridViewTextBoxColumn21
  711. //
  712. this.dataGridViewTextBoxColumn21.DataPropertyName = "si_length";
  713. this.dataGridViewTextBoxColumn21.HeaderText = "长度";
  714. this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
  715. this.dataGridViewTextBoxColumn21.Visible = false;
  716. //
  717. // dataGridViewTextBoxColumn22
  718. //
  719. this.dataGridViewTextBoxColumn22.DataPropertyName = "si_expression";
  720. this.dataGridViewTextBoxColumn22.HeaderText = "正则表达式";
  721. this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
  722. this.dataGridViewTextBoxColumn22.Visible = false;
  723. //
  724. // dataGridViewTextBoxColumn23
  725. //
  726. this.dataGridViewTextBoxColumn23.DataPropertyName = "si_item";
  727. this.dataGridViewTextBoxColumn23.HeaderText = "采集项目";
  728. this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
  729. this.dataGridViewTextBoxColumn23.ReadOnly = true;
  730. this.dataGridViewTextBoxColumn23.Width = 80;
  731. //
  732. // ChooseAll
  733. //
  734. this.ChooseAll.Location = new System.Drawing.Point(4, 252);
  735. this.ChooseAll.Margin = new System.Windows.Forms.Padding(2);
  736. this.ChooseAll.Name = "ChooseAll";
  737. this.ChooseAll.Size = new System.Drawing.Size(38, 22);
  738. this.ChooseAll.TabIndex = 84;
  739. this.ChooseAll.Text = "全选";
  740. this.ChooseAll.UseVisualStyleBackColor = true;
  741. this.ChooseAll.Click += new System.EventHandler(this.ChooseAll_Click);
  742. //
  743. // groupBoxWithBorder1
  744. //
  745. this.groupBoxWithBorder1.Controls.Add(this.ExportData);
  746. this.groupBoxWithBorder1.Controls.Add(this.label18);
  747. this.groupBoxWithBorder1.Controls.Add(this.MidBoxEnd);
  748. this.groupBoxWithBorder1.Controls.Add(this.MidBoxBegin);
  749. this.groupBoxWithBorder1.Controls.Add(this.label16);
  750. this.groupBoxWithBorder1.Controls.Add(this.SingleBoxEnd);
  751. this.groupBoxWithBorder1.Controls.Add(this.SingleBoxBegin);
  752. this.groupBoxWithBorder1.Controls.Add(this.label12);
  753. this.groupBoxWithBorder1.Controls.Add(this.label7);
  754. this.groupBoxWithBorder1.Location = new System.Drawing.Point(598, 6);
  755. this.groupBoxWithBorder1.Margin = new System.Windows.Forms.Padding(2);
  756. this.groupBoxWithBorder1.Name = "groupBoxWithBorder1";
  757. this.groupBoxWithBorder1.Padding = new System.Windows.Forms.Padding(2);
  758. this.groupBoxWithBorder1.Size = new System.Drawing.Size(151, 238);
  759. this.groupBoxWithBorder1.TabIndex = 81;
  760. this.groupBoxWithBorder1.TabStop = false;
  761. this.groupBoxWithBorder1.Text = " 打印参数设置";
  762. //
  763. // ExportData
  764. //
  765. this.ExportData.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  766. this.ExportData.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  767. this.ExportData.Location = new System.Drawing.Point(74, 202);
  768. this.ExportData.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  769. this.ExportData.Name = "ExportData";
  770. this.ExportData.Size = new System.Drawing.Size(68, 26);
  771. this.ExportData.TabIndex = 91;
  772. this.ExportData.Text = "导出数据";
  773. this.ExportData.UseVisualStyleBackColor = true;
  774. this.ExportData.Click += new System.EventHandler(this.ExportData_Click);
  775. //
  776. // label18
  777. //
  778. this.label18.AutoSize = true;
  779. this.label18.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  780. this.label18.Location = new System.Drawing.Point(68, 149);
  781. this.label18.Name = "label18";
  782. this.label18.Size = new System.Drawing.Size(13, 17);
  783. this.label18.TabIndex = 90;
  784. this.label18.Text = "-";
  785. //
  786. // MidBoxEnd
  787. //
  788. this.MidBoxEnd.ID = null;
  789. this.MidBoxEnd.Location = new System.Drawing.Point(88, 148);
  790. this.MidBoxEnd.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  791. this.MidBoxEnd.Name = "MidBoxEnd";
  792. this.MidBoxEnd.Size = new System.Drawing.Size(50, 21);
  793. this.MidBoxEnd.Str = null;
  794. this.MidBoxEnd.Str1 = null;
  795. this.MidBoxEnd.Str2 = null;
  796. this.MidBoxEnd.TabIndex = 89;
  797. //
  798. // MidBoxBegin
  799. //
  800. this.MidBoxBegin.ID = null;
  801. this.MidBoxBegin.Location = new System.Drawing.Point(13, 148);
  802. this.MidBoxBegin.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  803. this.MidBoxBegin.Name = "MidBoxBegin";
  804. this.MidBoxBegin.Size = new System.Drawing.Size(50, 21);
  805. this.MidBoxBegin.Str = null;
  806. this.MidBoxBegin.Str1 = null;
  807. this.MidBoxBegin.Str2 = null;
  808. this.MidBoxBegin.TabIndex = 88;
  809. //
  810. // label16
  811. //
  812. this.label16.AutoSize = true;
  813. this.label16.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  814. this.label16.Location = new System.Drawing.Point(67, 75);
  815. this.label16.Name = "label16";
  816. this.label16.Size = new System.Drawing.Size(13, 17);
  817. this.label16.TabIndex = 87;
  818. this.label16.Text = "-";
  819. //
  820. // SingleBoxEnd
  821. //
  822. this.SingleBoxEnd.ID = null;
  823. this.SingleBoxEnd.Location = new System.Drawing.Point(87, 75);
  824. this.SingleBoxEnd.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  825. this.SingleBoxEnd.Name = "SingleBoxEnd";
  826. this.SingleBoxEnd.Size = new System.Drawing.Size(50, 21);
  827. this.SingleBoxEnd.Str = null;
  828. this.SingleBoxEnd.Str1 = null;
  829. this.SingleBoxEnd.Str2 = null;
  830. this.SingleBoxEnd.TabIndex = 86;
  831. //
  832. // SingleBoxBegin
  833. //
  834. this.SingleBoxBegin.ID = null;
  835. this.SingleBoxBegin.Location = new System.Drawing.Point(12, 75);
  836. this.SingleBoxBegin.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  837. this.SingleBoxBegin.Name = "SingleBoxBegin";
  838. this.SingleBoxBegin.Size = new System.Drawing.Size(50, 21);
  839. this.SingleBoxBegin.Str = null;
  840. this.SingleBoxBegin.Str1 = null;
  841. this.SingleBoxBegin.Str2 = null;
  842. this.SingleBoxBegin.TabIndex = 85;
  843. //
  844. // label12
  845. //
  846. this.label12.AutoSize = true;
  847. this.label12.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  848. this.label12.Location = new System.Drawing.Point(12, 113);
  849. this.label12.Name = "label12";
  850. this.label12.Size = new System.Drawing.Size(56, 17);
  851. this.label12.TabIndex = 77;
  852. this.label12.Text = "中盒范围";
  853. //
  854. // label7
  855. //
  856. this.label7.AutoSize = true;
  857. this.label7.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  858. this.label7.Location = new System.Drawing.Point(12, 39);
  859. this.label7.Name = "label7";
  860. this.label7.Size = new System.Drawing.Size(56, 17);
  861. this.label7.TabIndex = 76;
  862. this.label7.Text = "单盘范围";
  863. //
  864. // pr_code
  865. //
  866. this.pr_code.Caller = null;
  867. this.pr_code.Condition = null;
  868. this.pr_code.FormName = null;
  869. this.pr_code.Location = new System.Drawing.Point(76, 182);
  870. this.pr_code.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  871. this.pr_code.Name = "pr_code";
  872. this.pr_code.SelectField = null;
  873. this.pr_code.SetValueField = null;
  874. this.pr_code.Size = new System.Drawing.Size(149, 22);
  875. this.pr_code.TabIndex = 68;
  876. this.pr_code.TableName = null;
  877. this.pr_code.UserControlTextChanged += new UAS_LabelMachine.CustomControl.SearchTextBox.OnTextChange(this.pr_code_UserControlTextChanged);
  878. this.pr_code.SearchIconClick += new UAS_LabelMachine.CustomControl.SearchTextBox.Icon_Click(this.pr_code_SearchIconClick);
  879. //
  880. // CollectionProcess
  881. //
  882. this.CollectionProcess.Controls.Add(this.Capacity);
  883. this.CollectionProcess.Controls.Add(this.Process_midboxcode);
  884. this.CollectionProcess.Controls.Add(this.Process_outboxcode);
  885. this.CollectionProcess.Controls.Add(this.TotalCount);
  886. this.CollectionProcess.Controls.Add(this.label17);
  887. this.CollectionProcess.Controls.Add(this.CollectedCount);
  888. this.CollectionProcess.Controls.Add(this.label14);
  889. this.CollectionProcess.Controls.Add(this.label11);
  890. this.CollectionProcess.Controls.Add(this.label13);
  891. this.CollectionProcess.Controls.Add(this.Installed);
  892. this.CollectionProcess.Controls.Add(this.Process);
  893. this.CollectionProcess.Location = new System.Drawing.Point(464, 10);
  894. this.CollectionProcess.Margin = new System.Windows.Forms.Padding(2);
  895. this.CollectionProcess.Name = "CollectionProcess";
  896. this.CollectionProcess.Padding = new System.Windows.Forms.Padding(2);
  897. this.CollectionProcess.Size = new System.Drawing.Size(130, 152);
  898. this.CollectionProcess.TabIndex = 80;
  899. this.CollectionProcess.TabStop = false;
  900. this.CollectionProcess.Text = " ";
  901. //
  902. // Capacity
  903. //
  904. this.Capacity.AutoSize = true;
  905. this.Capacity.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  906. this.Capacity.Location = new System.Drawing.Point(60, 66);
  907. this.Capacity.Name = "Capacity";
  908. this.Capacity.Size = new System.Drawing.Size(0, 17);
  909. this.Capacity.TabIndex = 75;
  910. //
  911. // Process_midboxcode
  912. //
  913. this.Process_midboxcode.AutoSize = true;
  914. this.Process_midboxcode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  915. this.Process_midboxcode.Location = new System.Drawing.Point(60, 110);
  916. this.Process_midboxcode.Name = "Process_midboxcode";
  917. this.Process_midboxcode.Size = new System.Drawing.Size(15, 17);
  918. this.Process_midboxcode.TabIndex = 74;
  919. this.Process_midboxcode.Text = "0";
  920. //
  921. // Process_outboxcode
  922. //
  923. this.Process_outboxcode.AutoSize = true;
  924. this.Process_outboxcode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  925. this.Process_outboxcode.Location = new System.Drawing.Point(60, 86);
  926. this.Process_outboxcode.Name = "Process_outboxcode";
  927. this.Process_outboxcode.Size = new System.Drawing.Size(15, 17);
  928. this.Process_outboxcode.TabIndex = 73;
  929. this.Process_outboxcode.Text = "0";
  930. //
  931. // TotalCount
  932. //
  933. this.TotalCount.AutoSize = true;
  934. this.TotalCount.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  935. this.TotalCount.ForeColor = System.Drawing.Color.Blue;
  936. this.TotalCount.Location = new System.Drawing.Point(94, 18);
  937. this.TotalCount.Name = "TotalCount";
  938. this.TotalCount.Size = new System.Drawing.Size(15, 17);
  939. this.TotalCount.TabIndex = 72;
  940. this.TotalCount.Text = "0";
  941. //
  942. // label17
  943. //
  944. this.label17.AutoSize = true;
  945. this.label17.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  946. this.label17.Location = new System.Drawing.Point(81, 18);
  947. this.label17.Name = "label17";
  948. this.label17.Size = new System.Drawing.Size(13, 17);
  949. this.label17.TabIndex = 71;
  950. this.label17.Text = "/";
  951. //
  952. // CollectedCount
  953. //
  954. this.CollectedCount.AutoSize = true;
  955. this.CollectedCount.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  956. this.CollectedCount.ForeColor = System.Drawing.Color.Red;
  957. this.CollectedCount.Location = new System.Drawing.Point(63, 18);
  958. this.CollectedCount.Name = "CollectedCount";
  959. this.CollectedCount.Size = new System.Drawing.Size(15, 17);
  960. this.CollectedCount.TabIndex = 70;
  961. this.CollectedCount.Text = "0";
  962. //
  963. // label14
  964. //
  965. this.label14.AutoSize = true;
  966. this.label14.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  967. this.label14.Location = new System.Drawing.Point(10, 87);
  968. this.label14.Name = "label14";
  969. this.label14.Size = new System.Drawing.Size(32, 17);
  970. this.label14.TabIndex = 69;
  971. this.label14.Text = "箱号";
  972. //
  973. // label11
  974. //
  975. this.label11.AutoSize = true;
  976. this.label11.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  977. this.label11.Location = new System.Drawing.Point(10, 110);
  978. this.label11.Name = "label11";
  979. this.label11.Size = new System.Drawing.Size(32, 17);
  980. this.label11.TabIndex = 68;
  981. this.label11.Text = "盒号";
  982. //
  983. // label13
  984. //
  985. this.label13.AutoSize = true;
  986. this.label13.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  987. this.label13.Location = new System.Drawing.Point(10, 46);
  988. this.label13.Name = "label13";
  989. this.label13.Size = new System.Drawing.Size(44, 17);
  990. this.label13.TabIndex = 67;
  991. this.label13.Text = "当前盒";
  992. //
  993. // Installed
  994. //
  995. this.Installed.AutoSize = true;
  996. this.Installed.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  997. this.Installed.Location = new System.Drawing.Point(60, 46);
  998. this.Installed.Name = "Installed";
  999. this.Installed.Size = new System.Drawing.Size(0, 17);
  1000. this.Installed.TabIndex = 66;
  1001. //
  1002. // Process
  1003. //
  1004. this.Process.AutoSize = true;
  1005. this.Process.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1006. this.Process.Location = new System.Drawing.Point(10, 18);
  1007. this.Process.Name = "Process";
  1008. this.Process.Size = new System.Drawing.Size(44, 17);
  1009. this.Process.TabIndex = 65;
  1010. this.Process.Text = "总进度";
  1011. //
  1012. // sg_separator
  1013. //
  1014. this.sg_separator.Enabled = false;
  1015. this.sg_separator.ID = null;
  1016. this.sg_separator.Location = new System.Drawing.Point(290, 66);
  1017. this.sg_separator.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1018. this.sg_separator.Name = "sg_separator";
  1019. this.sg_separator.Size = new System.Drawing.Size(28, 21);
  1020. this.sg_separator.Str = null;
  1021. this.sg_separator.Str1 = null;
  1022. this.sg_separator.Str2 = null;
  1023. this.sg_separator.TabIndex = 62;
  1024. //
  1025. // Input
  1026. //
  1027. this.Input.ID = null;
  1028. this.Input.Location = new System.Drawing.Point(76, 218);
  1029. this.Input.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1030. this.Input.Name = "Input";
  1031. this.Input.Size = new System.Drawing.Size(150, 21);
  1032. this.Input.Str = null;
  1033. this.Input.Str1 = null;
  1034. this.Input.Str2 = null;
  1035. this.Input.TabIndex = 54;
  1036. this.Input.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Input_KeyDown);
  1037. //
  1038. // griddetno
  1039. //
  1040. this.griddetno.ID = null;
  1041. this.griddetno.Location = new System.Drawing.Point(76, 132);
  1042. this.griddetno.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1043. this.griddetno.Name = "griddetno";
  1044. this.griddetno.Size = new System.Drawing.Size(102, 21);
  1045. this.griddetno.Str = null;
  1046. this.griddetno.Str1 = null;
  1047. this.griddetno.Str2 = null;
  1048. this.griddetno.TabIndex = 50;
  1049. this.griddetno.KeyDown += new System.Windows.Forms.KeyEventHandler(this.griddetno_KeyDown);
  1050. //
  1051. // sg_code
  1052. //
  1053. this.sg_code.Caller = null;
  1054. this.sg_code.Condition = null;
  1055. this.sg_code.FormName = null;
  1056. this.sg_code.Location = new System.Drawing.Point(76, 66);
  1057. this.sg_code.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1058. this.sg_code.Name = "sg_code";
  1059. this.sg_code.SelectField = null;
  1060. this.sg_code.SetValueField = null;
  1061. this.sg_code.Size = new System.Drawing.Size(149, 24);
  1062. this.sg_code.TabIndex = 32;
  1063. this.sg_code.TableName = null;
  1064. this.sg_code.UserControlTextChanged += new UAS_LabelMachine.CustomControl.SearchTextBox.OnTextChange(this.sg_code_UserControlTextChanged);
  1065. //
  1066. // MessageLog
  1067. //
  1068. this.MessageLog.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1069. this.MessageLog.Location = new System.Drawing.Point(0, 610);
  1070. this.MessageLog.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1071. this.MessageLog.Name = "MessageLog";
  1072. this.MessageLog.Size = new System.Drawing.Size(1253, 74);
  1073. this.MessageLog.TabIndex = 28;
  1074. this.MessageLog.Text = "";
  1075. //
  1076. // LabelInf
  1077. //
  1078. this.LabelInf.AllowUserToAddRows = false;
  1079. this.LabelInf.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
  1080. this.LabelInf.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
  1081. this.LabelInf.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1082. this.LabelInf.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1083. this.Choose,
  1084. this.pib_ifpick,
  1085. this.pib_ifprint,
  1086. this.pib_id1,
  1087. this.pib_pdno,
  1088. this.pib_prodcode,
  1089. this.pr_vendprodcode,
  1090. this.pr_brand,
  1091. this.pib_madein,
  1092. this.pib_lotno,
  1093. this.pib_datecode,
  1094. this.pib_cusbarcode,
  1095. this.pib_cusoutboxcode,
  1096. this.pib_datecode1,
  1097. this.pib_qty,
  1098. this.pib_barcode,
  1099. this.pib_custbarcode,
  1100. this.pd_pocode,
  1101. this.pd_custprodcode,
  1102. this.pd_custprodspec,
  1103. this.pib_outboxcode1,
  1104. this.pib_outboxcode2});
  1105. this.LabelInf.Location = new System.Drawing.Point(2, 252);
  1106. this.LabelInf.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1107. this.LabelInf.Name = "LabelInf";
  1108. this.LabelInf.RowTemplate.Height = 23;
  1109. this.LabelInf.Size = new System.Drawing.Size(1251, 326);
  1110. this.LabelInf.TabIndex = 27;
  1111. this.LabelInf.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.LabelInf_CellEndEdit);
  1112. this.LabelInf.CellPainting += new System.Windows.Forms.DataGridViewCellPaintingEventHandler(this.LabelInf_CellPainting);
  1113. this.LabelInf.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.LabelInf_CellValueChanged);
  1114. this.LabelInf.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.LabelInf_DataError);
  1115. //
  1116. // pi_inoutno
  1117. //
  1118. this.pi_inoutno.ID = null;
  1119. this.pi_inoutno.Location = new System.Drawing.Point(76, 10);
  1120. this.pi_inoutno.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1121. this.pi_inoutno.Name = "pi_inoutno";
  1122. this.pi_inoutno.Size = new System.Drawing.Size(150, 21);
  1123. this.pi_inoutno.Str = null;
  1124. this.pi_inoutno.Str1 = null;
  1125. this.pi_inoutno.Str2 = null;
  1126. this.pi_inoutno.TabIndex = 2;
  1127. this.pi_inoutno.KeyDown += new System.Windows.Forms.KeyEventHandler(this.pi_inoutno_KeyDown);
  1128. //
  1129. // SingleLabel
  1130. //
  1131. this.SingleLabel.Controls.Add(this.ViVoPlate);
  1132. this.SingleLabel.Controls.Add(this.SingleLabelPrinter);
  1133. this.SingleLabel.Controls.Add(this.SingleLabelPrint);
  1134. this.SingleLabel.Controls.Add(this.SingleLabelAutoPrint);
  1135. this.SingleLabel.Controls.Add(this.SingleLabelCombox);
  1136. this.SingleLabel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1137. this.SingleLabel.Location = new System.Drawing.Point(754, 6);
  1138. this.SingleLabel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1139. this.SingleLabel.Name = "SingleLabel";
  1140. this.SingleLabel.Padding = new System.Windows.Forms.Padding(2);
  1141. this.SingleLabel.Size = new System.Drawing.Size(156, 238);
  1142. this.SingleLabel.TabIndex = 77;
  1143. this.SingleLabel.TabStop = false;
  1144. this.SingleLabel.Text = "单盘标签";
  1145. //
  1146. // ViVoPlate
  1147. //
  1148. this.ViVoPlate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1149. this.ViVoPlate.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1150. this.ViVoPlate.Location = new System.Drawing.Point(80, 166);
  1151. this.ViVoPlate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1152. this.ViVoPlate.Name = "ViVoPlate";
  1153. this.ViVoPlate.Size = new System.Drawing.Size(68, 26);
  1154. this.ViVoPlate.TabIndex = 41;
  1155. this.ViVoPlate.Text = "ViVo料盘";
  1156. this.ViVoPlate.UseVisualStyleBackColor = true;
  1157. this.ViVoPlate.Click += new System.EventHandler(this.ViVoPlate_Click);
  1158. //
  1159. // SingleLabelPrinter
  1160. //
  1161. this.SingleLabelPrinter.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1162. this.SingleLabelPrinter.Location = new System.Drawing.Point(6, 78);
  1163. this.SingleLabelPrinter.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
  1164. this.SingleLabelPrinter.Name = "SingleLabelPrinter";
  1165. this.SingleLabelPrinter.Size = new System.Drawing.Size(142, 30);
  1166. this.SingleLabelPrinter.TabIndex = 40;
  1167. //
  1168. // SingleLabelPrint
  1169. //
  1170. this.SingleLabelPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1171. this.SingleLabelPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1172. this.SingleLabelPrint.Location = new System.Drawing.Point(80, 202);
  1173. this.SingleLabelPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1174. this.SingleLabelPrint.Name = "SingleLabelPrint";
  1175. this.SingleLabelPrint.Size = new System.Drawing.Size(68, 26);
  1176. this.SingleLabelPrint.TabIndex = 36;
  1177. this.SingleLabelPrint.Text = "打印盘标";
  1178. this.SingleLabelPrint.UseVisualStyleBackColor = true;
  1179. this.SingleLabelPrint.Click += new System.EventHandler(this.SingleLabelPrint_Click);
  1180. //
  1181. // SingleLabelAutoPrint
  1182. //
  1183. this.SingleLabelAutoPrint.AutoSize = true;
  1184. this.SingleLabelAutoPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1185. this.SingleLabelAutoPrint.Location = new System.Drawing.Point(8, 109);
  1186. this.SingleLabelAutoPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1187. this.SingleLabelAutoPrint.Name = "SingleLabelAutoPrint";
  1188. this.SingleLabelAutoPrint.Size = new System.Drawing.Size(75, 21);
  1189. this.SingleLabelAutoPrint.TabIndex = 30;
  1190. this.SingleLabelAutoPrint.Text = "自动打印";
  1191. this.SingleLabelAutoPrint.UseVisualStyleBackColor = true;
  1192. //
  1193. // SingleLabelCombox
  1194. //
  1195. this.SingleLabelCombox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1196. this.SingleLabelCombox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1197. this.SingleLabelCombox.FormattingEnabled = true;
  1198. this.SingleLabelCombox.Location = new System.Drawing.Point(7, 46);
  1199. this.SingleLabelCombox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1200. this.SingleLabelCombox.Name = "SingleLabelCombox";
  1201. this.SingleLabelCombox.Size = new System.Drawing.Size(143, 25);
  1202. this.SingleLabelCombox.TabIndex = 0;
  1203. this.SingleLabelCombox.SelectedIndexChanged += new System.EventHandler(this.SingleLabelCombox_SelectedIndexChanged);
  1204. //
  1205. // MidLabel
  1206. //
  1207. this.MidLabel.Controls.Add(this.MidLabelNum);
  1208. this.MidLabel.Controls.Add(this.label5);
  1209. this.MidLabel.Controls.Add(this.label4);
  1210. this.MidLabel.Controls.Add(this.MidLabelPrinter);
  1211. this.MidLabel.Controls.Add(this.label15);
  1212. this.MidLabel.Controls.Add(this.MidBoxCapacity);
  1213. this.MidLabel.Controls.Add(this.MidLabelPrint);
  1214. this.MidLabel.Controls.Add(this.MidLabelAutoPrint);
  1215. this.MidLabel.Controls.Add(this.MidLabelCombox);
  1216. this.MidLabel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1217. this.MidLabel.Location = new System.Drawing.Point(912, 6);
  1218. this.MidLabel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1219. this.MidLabel.Name = "MidLabel";
  1220. this.MidLabel.Padding = new System.Windows.Forms.Padding(2);
  1221. this.MidLabel.Size = new System.Drawing.Size(158, 238);
  1222. this.MidLabel.TabIndex = 78;
  1223. this.MidLabel.TabStop = false;
  1224. this.MidLabel.Text = "中盒标签";
  1225. //
  1226. // MidLabelNum
  1227. //
  1228. this.MidLabelNum.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1229. this.MidLabelNum.ID = null;
  1230. this.MidLabelNum.Location = new System.Drawing.Point(51, 165);
  1231. this.MidLabelNum.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1232. this.MidLabelNum.Name = "MidLabelNum";
  1233. this.MidLabelNum.Size = new System.Drawing.Size(64, 23);
  1234. this.MidLabelNum.Str = null;
  1235. this.MidLabelNum.Str1 = null;
  1236. this.MidLabelNum.Str2 = null;
  1237. this.MidLabelNum.TabIndex = 56;
  1238. //
  1239. // label5
  1240. //
  1241. this.label5.AutoSize = true;
  1242. this.label5.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1243. this.label5.Location = new System.Drawing.Point(6, 166);
  1244. this.label5.Name = "label5";
  1245. this.label5.Size = new System.Drawing.Size(32, 17);
  1246. this.label5.TabIndex = 50;
  1247. this.label5.Text = "盒号";
  1248. //
  1249. // label4
  1250. //
  1251. this.label4.AutoSize = true;
  1252. this.label4.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1253. this.label4.Location = new System.Drawing.Point(6, 137);
  1254. this.label4.Name = "label4";
  1255. this.label4.Size = new System.Drawing.Size(32, 17);
  1256. this.label4.TabIndex = 49;
  1257. this.label4.Text = "容量";
  1258. //
  1259. // MidLabelPrinter
  1260. //
  1261. this.MidLabelPrinter.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1262. this.MidLabelPrinter.Location = new System.Drawing.Point(6, 78);
  1263. this.MidLabelPrinter.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
  1264. this.MidLabelPrinter.Name = "MidLabelPrinter";
  1265. this.MidLabelPrinter.Size = new System.Drawing.Size(142, 30);
  1266. this.MidLabelPrinter.TabIndex = 41;
  1267. //
  1268. // label15
  1269. //
  1270. this.label15.AutoSize = true;
  1271. this.label15.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1272. this.label15.Location = new System.Drawing.Point(93, 136);
  1273. this.label15.Name = "label15";
  1274. this.label15.Size = new System.Drawing.Size(20, 17);
  1275. this.label15.TabIndex = 40;
  1276. this.label15.Text = "盘";
  1277. //
  1278. // MidBoxCapacity
  1279. //
  1280. this.MidBoxCapacity.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1281. this.MidBoxCapacity.Location = new System.Drawing.Point(52, 135);
  1282. this.MidBoxCapacity.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1283. this.MidBoxCapacity.Name = "MidBoxCapacity";
  1284. this.MidBoxCapacity.Size = new System.Drawing.Size(38, 23);
  1285. this.MidBoxCapacity.TabIndex = 30;
  1286. //
  1287. // MidLabelPrint
  1288. //
  1289. this.MidLabelPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1290. this.MidLabelPrint.Location = new System.Drawing.Point(80, 202);
  1291. this.MidLabelPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1292. this.MidLabelPrint.Name = "MidLabelPrint";
  1293. this.MidLabelPrint.Size = new System.Drawing.Size(68, 26);
  1294. this.MidLabelPrint.TabIndex = 42;
  1295. this.MidLabelPrint.Text = "打印盒签";
  1296. this.MidLabelPrint.UseVisualStyleBackColor = true;
  1297. this.MidLabelPrint.Click += new System.EventHandler(this.MidLabelPrint_Click);
  1298. //
  1299. // MidLabelAutoPrint
  1300. //
  1301. this.MidLabelAutoPrint.AutoSize = true;
  1302. this.MidLabelAutoPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1303. this.MidLabelAutoPrint.Location = new System.Drawing.Point(9, 107);
  1304. this.MidLabelAutoPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1305. this.MidLabelAutoPrint.Name = "MidLabelAutoPrint";
  1306. this.MidLabelAutoPrint.Size = new System.Drawing.Size(75, 21);
  1307. this.MidLabelAutoPrint.TabIndex = 41;
  1308. this.MidLabelAutoPrint.Text = "自动打印";
  1309. this.MidLabelAutoPrint.UseVisualStyleBackColor = true;
  1310. //
  1311. // MidLabelCombox
  1312. //
  1313. this.MidLabelCombox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1314. this.MidLabelCombox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1315. this.MidLabelCombox.FormattingEnabled = true;
  1316. this.MidLabelCombox.Location = new System.Drawing.Point(7, 46);
  1317. this.MidLabelCombox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1318. this.MidLabelCombox.Name = "MidLabelCombox";
  1319. this.MidLabelCombox.Size = new System.Drawing.Size(143, 25);
  1320. this.MidLabelCombox.TabIndex = 40;
  1321. this.MidLabelCombox.SelectedIndexChanged += new System.EventHandler(this.MidLabelCombox_SelectedIndexChanged);
  1322. //
  1323. // OutBoxLabel
  1324. //
  1325. this.OutBoxLabel.Controls.Add(this.LogingOut);
  1326. this.OutBoxLabel.Controls.Add(this.GetOutBoxCode);
  1327. this.OutBoxLabel.Controls.Add(this.OutBoxNum);
  1328. this.OutBoxLabel.Controls.Add(this.label10);
  1329. this.OutBoxLabel.Controls.Add(this.WeightNet);
  1330. this.OutBoxLabel.Controls.Add(this.label9);
  1331. this.OutBoxLabel.Controls.Add(this.WeightGross);
  1332. this.OutBoxLabel.Controls.Add(this.label8);
  1333. this.OutBoxLabel.Controls.Add(this.label6);
  1334. this.OutBoxLabel.Controls.Add(this.OutBoxPrinter);
  1335. this.OutBoxLabel.Controls.Add(this.OutboxCapacity);
  1336. this.OutBoxLabel.Controls.Add(this.OutBoxLabelPackage);
  1337. this.OutBoxLabel.Controls.Add(this.OutBoxLabelPrint);
  1338. this.OutBoxLabel.Controls.Add(this.OutBoxLabelAutoPrint);
  1339. this.OutBoxLabel.Controls.Add(this.OutBoxCombox);
  1340. this.OutBoxLabel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1341. this.OutBoxLabel.Location = new System.Drawing.Point(1075, 6);
  1342. this.OutBoxLabel.Margin = new System.Windows.Forms.Padding(2);
  1343. this.OutBoxLabel.Name = "OutBoxLabel";
  1344. this.OutBoxLabel.Padding = new System.Windows.Forms.Padding(2);
  1345. this.OutBoxLabel.Size = new System.Drawing.Size(172, 238);
  1346. this.OutBoxLabel.TabIndex = 79;
  1347. this.OutBoxLabel.TabStop = false;
  1348. this.OutBoxLabel.Text = "外箱标签";
  1349. //
  1350. // LogingOut
  1351. //
  1352. this.LogingOut.AutoSize = true;
  1353. this.LogingOut.Location = new System.Drawing.Point(113, 15);
  1354. this.LogingOut.Name = "LogingOut";
  1355. this.LogingOut.Size = new System.Drawing.Size(42, 21);
  1356. this.LogingOut.TabIndex = 77;
  1357. this.LogingOut.TabStop = true;
  1358. this.LogingOut.Text = "注销";
  1359. this.LogingOut.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LogingOut_LinkClicked);
  1360. //
  1361. // GetOutBoxCode
  1362. //
  1363. this.GetOutBoxCode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1364. this.GetOutBoxCode.Location = new System.Drawing.Point(89, 146);
  1365. this.GetOutBoxCode.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1366. this.GetOutBoxCode.Name = "GetOutBoxCode";
  1367. this.GetOutBoxCode.Size = new System.Drawing.Size(76, 26);
  1368. this.GetOutBoxCode.TabIndex = 93;
  1369. this.GetOutBoxCode.Text = "获取箱号";
  1370. this.GetOutBoxCode.UseVisualStyleBackColor = true;
  1371. this.GetOutBoxCode.Click += new System.EventHandler(this.GetOutBoxCode_Click);
  1372. //
  1373. // OutBoxNum
  1374. //
  1375. this.OutBoxNum.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1376. this.OutBoxNum.ID = null;
  1377. this.OutBoxNum.Location = new System.Drawing.Point(46, 180);
  1378. this.OutBoxNum.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1379. this.OutBoxNum.Name = "OutBoxNum";
  1380. this.OutBoxNum.Size = new System.Drawing.Size(37, 23);
  1381. this.OutBoxNum.Str = null;
  1382. this.OutBoxNum.Str1 = null;
  1383. this.OutBoxNum.Str2 = null;
  1384. this.OutBoxNum.TabIndex = 91;
  1385. //
  1386. // label10
  1387. //
  1388. this.label10.AutoSize = true;
  1389. this.label10.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1390. this.label10.Location = new System.Drawing.Point(7, 181);
  1391. this.label10.Name = "label10";
  1392. this.label10.Size = new System.Drawing.Size(32, 17);
  1393. this.label10.TabIndex = 90;
  1394. this.label10.Text = "箱号";
  1395. //
  1396. // WeightNet
  1397. //
  1398. this.WeightNet.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1399. this.WeightNet.ID = null;
  1400. this.WeightNet.Location = new System.Drawing.Point(128, 210);
  1401. this.WeightNet.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1402. this.WeightNet.Name = "WeightNet";
  1403. this.WeightNet.Size = new System.Drawing.Size(37, 23);
  1404. this.WeightNet.Str = null;
  1405. this.WeightNet.Str1 = null;
  1406. this.WeightNet.Str2 = null;
  1407. this.WeightNet.TabIndex = 89;
  1408. //
  1409. // label9
  1410. //
  1411. this.label9.AutoSize = true;
  1412. this.label9.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1413. this.label9.Location = new System.Drawing.Point(87, 213);
  1414. this.label9.Name = "label9";
  1415. this.label9.Size = new System.Drawing.Size(32, 17);
  1416. this.label9.TabIndex = 88;
  1417. this.label9.Text = "净重";
  1418. //
  1419. // WeightGross
  1420. //
  1421. this.WeightGross.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1422. this.WeightGross.ID = null;
  1423. this.WeightGross.Location = new System.Drawing.Point(46, 210);
  1424. this.WeightGross.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1425. this.WeightGross.Name = "WeightGross";
  1426. this.WeightGross.Size = new System.Drawing.Size(37, 23);
  1427. this.WeightGross.Str = null;
  1428. this.WeightGross.Str1 = null;
  1429. this.WeightGross.Str2 = null;
  1430. this.WeightGross.TabIndex = 85;
  1431. //
  1432. // label8
  1433. //
  1434. this.label8.AutoSize = true;
  1435. this.label8.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1436. this.label8.Location = new System.Drawing.Point(7, 213);
  1437. this.label8.Name = "label8";
  1438. this.label8.Size = new System.Drawing.Size(32, 17);
  1439. this.label8.TabIndex = 83;
  1440. this.label8.Text = "毛重";
  1441. //
  1442. // label6
  1443. //
  1444. this.label6.AutoSize = true;
  1445. this.label6.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1446. this.label6.Location = new System.Drawing.Point(7, 150);
  1447. this.label6.Name = "label6";
  1448. this.label6.Size = new System.Drawing.Size(32, 17);
  1449. this.label6.TabIndex = 87;
  1450. this.label6.Text = "容量";
  1451. //
  1452. // OutBoxPrinter
  1453. //
  1454. this.OutBoxPrinter.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1455. this.OutBoxPrinter.Location = new System.Drawing.Point(8, 78);
  1456. this.OutBoxPrinter.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
  1457. this.OutBoxPrinter.Name = "OutBoxPrinter";
  1458. this.OutBoxPrinter.Size = new System.Drawing.Size(158, 30);
  1459. this.OutBoxPrinter.TabIndex = 82;
  1460. //
  1461. // OutboxCapacity
  1462. //
  1463. this.OutboxCapacity.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1464. this.OutboxCapacity.Location = new System.Drawing.Point(46, 147);
  1465. this.OutboxCapacity.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1466. this.OutboxCapacity.Name = "OutboxCapacity";
  1467. this.OutboxCapacity.Size = new System.Drawing.Size(30, 23);
  1468. this.OutboxCapacity.TabIndex = 84;
  1469. this.OutboxCapacity.Value = new decimal(new int[] {
  1470. 1,
  1471. 0,
  1472. 0,
  1473. 0});
  1474. //
  1475. // OutBoxLabelPackage
  1476. //
  1477. this.OutBoxLabelPackage.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1478. this.OutBoxLabelPackage.Location = new System.Drawing.Point(89, 113);
  1479. this.OutBoxLabelPackage.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1480. this.OutBoxLabelPackage.Name = "OutBoxLabelPackage";
  1481. this.OutBoxLabelPackage.Size = new System.Drawing.Size(75, 26);
  1482. this.OutBoxLabelPackage.TabIndex = 81;
  1483. this.OutBoxLabelPackage.Text = "Vivo打印";
  1484. this.OutBoxLabelPackage.UseVisualStyleBackColor = true;
  1485. this.OutBoxLabelPackage.Click += new System.EventHandler(this.OutBoxLabelPackage_Click);
  1486. //
  1487. // OutBoxLabelPrint
  1488. //
  1489. this.OutBoxLabelPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1490. this.OutBoxLabelPrint.Location = new System.Drawing.Point(90, 178);
  1491. this.OutBoxLabelPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1492. this.OutBoxLabelPrint.Name = "OutBoxLabelPrint";
  1493. this.OutBoxLabelPrint.Size = new System.Drawing.Size(76, 26);
  1494. this.OutBoxLabelPrint.TabIndex = 80;
  1495. this.OutBoxLabelPrint.Text = "打印箱标";
  1496. this.OutBoxLabelPrint.UseVisualStyleBackColor = true;
  1497. this.OutBoxLabelPrint.Click += new System.EventHandler(this.OutBoxLabelPrint_Click);
  1498. //
  1499. // OutBoxLabelAutoPrint
  1500. //
  1501. this.OutBoxLabelAutoPrint.AutoSize = true;
  1502. this.OutBoxLabelAutoPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1503. this.OutBoxLabelAutoPrint.Location = new System.Drawing.Point(10, 111);
  1504. this.OutBoxLabelAutoPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1505. this.OutBoxLabelAutoPrint.Name = "OutBoxLabelAutoPrint";
  1506. this.OutBoxLabelAutoPrint.Size = new System.Drawing.Size(75, 21);
  1507. this.OutBoxLabelAutoPrint.TabIndex = 79;
  1508. this.OutBoxLabelAutoPrint.Text = "自动打印";
  1509. this.OutBoxLabelAutoPrint.UseVisualStyleBackColor = true;
  1510. //
  1511. // OutBoxCombox
  1512. //
  1513. this.OutBoxCombox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1514. this.OutBoxCombox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1515. this.OutBoxCombox.FormattingEnabled = true;
  1516. this.OutBoxCombox.Location = new System.Drawing.Point(8, 44);
  1517. this.OutBoxCombox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1518. this.OutBoxCombox.Name = "OutBoxCombox";
  1519. this.OutBoxCombox.Size = new System.Drawing.Size(158, 25);
  1520. this.OutBoxCombox.TabIndex = 78;
  1521. this.OutBoxCombox.SelectedIndexChanged += new System.EventHandler(this.OutBoxCombox_SelectedIndexChanged);
  1522. //
  1523. // Choose
  1524. //
  1525. this.Choose.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1526. this.Choose.HeaderText = "勾选";
  1527. this.Choose.Name = "Choose";
  1528. this.Choose.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1529. this.Choose.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1530. this.Choose.Width = 55;
  1531. //
  1532. // pib_ifpick
  1533. //
  1534. this.pib_ifpick.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1535. this.pib_ifpick.DataPropertyName = "pib_ifpick";
  1536. this.pib_ifpick.HeaderText = "已采集";
  1537. this.pib_ifpick.Name = "pib_ifpick";
  1538. this.pib_ifpick.Width = 60;
  1539. //
  1540. // pib_ifprint
  1541. //
  1542. this.pib_ifprint.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1543. this.pib_ifprint.DataPropertyName = "pib_ifprint";
  1544. this.pib_ifprint.HeaderText = "已打印";
  1545. this.pib_ifprint.Name = "pib_ifprint";
  1546. this.pib_ifprint.Width = 60;
  1547. //
  1548. // pib_id1
  1549. //
  1550. this.pib_id1.DataPropertyName = "pib_id";
  1551. this.pib_id1.HeaderText = "pib_id";
  1552. this.pib_id1.Name = "pib_id1";
  1553. this.pib_id1.Width = 66;
  1554. //
  1555. // pib_pdno
  1556. //
  1557. this.pib_pdno.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1558. this.pib_pdno.DataPropertyName = "pib_pdno";
  1559. this.pib_pdno.HeaderText = "明细序号";
  1560. this.pib_pdno.Name = "pib_pdno";
  1561. this.pib_pdno.ReadOnly = true;
  1562. this.pib_pdno.Width = 96;
  1563. //
  1564. // pib_prodcode
  1565. //
  1566. this.pib_prodcode.DataPropertyName = "pib_prodcode";
  1567. this.pib_prodcode.HeaderText = "物料编号";
  1568. this.pib_prodcode.Name = "pib_prodcode";
  1569. this.pib_prodcode.ReadOnly = true;
  1570. this.pib_prodcode.Width = 78;
  1571. //
  1572. // pr_vendprodcode
  1573. //
  1574. this.pr_vendprodcode.DataPropertyName = "pr_vendprodcode";
  1575. this.pr_vendprodcode.HeaderText = "MPN";
  1576. this.pr_vendprodcode.Name = "pr_vendprodcode";
  1577. this.pr_vendprodcode.ReadOnly = true;
  1578. this.pr_vendprodcode.Width = 48;
  1579. //
  1580. // pr_brand
  1581. //
  1582. this.pr_brand.DataPropertyName = "pr_brand";
  1583. this.pr_brand.HeaderText = "品牌";
  1584. this.pr_brand.Name = "pr_brand";
  1585. this.pr_brand.ReadOnly = true;
  1586. this.pr_brand.Width = 54;
  1587. //
  1588. // pib_madein
  1589. //
  1590. this.pib_madein.DataPropertyName = "pib_madein";
  1591. this.pib_madein.HeaderText = "产地";
  1592. this.pib_madein.Name = "pib_madein";
  1593. this.pib_madein.Visible = false;
  1594. this.pib_madein.Width = 54;
  1595. //
  1596. // pib_lotno
  1597. //
  1598. this.pib_lotno.DataPropertyName = "pib_lotno";
  1599. this.pib_lotno.HeaderText = "LotNo";
  1600. this.pib_lotno.Name = "pib_lotno";
  1601. this.pib_lotno.Width = 60;
  1602. //
  1603. // pib_datecode
  1604. //
  1605. this.pib_datecode.DataPropertyName = "pib_datecode";
  1606. this.pib_datecode.HeaderText = "DateCode";
  1607. this.pib_datecode.Name = "pib_datecode";
  1608. this.pib_datecode.Width = 78;
  1609. //
  1610. // pib_cusbarcode
  1611. //
  1612. this.pib_cusbarcode.DataPropertyName = "pib_cusbarcode";
  1613. this.pib_cusbarcode.HeaderText = "ViVo条码号";
  1614. this.pib_cusbarcode.Name = "pib_cusbarcode";
  1615. this.pib_cusbarcode.Width = 90;
  1616. //
  1617. // pib_cusoutboxcode
  1618. //
  1619. this.pib_cusoutboxcode.DataPropertyName = "pib_cusoutboxcode";
  1620. this.pib_cusoutboxcode.HeaderText = "ViVo外箱";
  1621. this.pib_cusoutboxcode.Name = "pib_cusoutboxcode";
  1622. this.pib_cusoutboxcode.Width = 78;
  1623. //
  1624. // pib_datecode1
  1625. //
  1626. this.pib_datecode1.DataPropertyName = "pib_datecode1";
  1627. this.pib_datecode1.HeaderText = "DateCode1";
  1628. this.pib_datecode1.Name = "pib_datecode1";
  1629. this.pib_datecode1.Visible = false;
  1630. this.pib_datecode1.Width = 84;
  1631. //
  1632. // pib_qty
  1633. //
  1634. this.pib_qty.DataPropertyName = "pib_qty";
  1635. this.pib_qty.HeaderText = "数量";
  1636. this.pib_qty.Name = "pib_qty";
  1637. this.pib_qty.ReadOnly = true;
  1638. this.pib_qty.Width = 54;
  1639. //
  1640. // pib_barcode
  1641. //
  1642. this.pib_barcode.DataPropertyName = "pib_barcode";
  1643. this.pib_barcode.HeaderText = "唯一条码";
  1644. this.pib_barcode.Name = "pib_barcode";
  1645. this.pib_barcode.ReadOnly = true;
  1646. this.pib_barcode.Width = 78;
  1647. //
  1648. // pib_custbarcode
  1649. //
  1650. this.pib_custbarcode.DataPropertyName = "pib_custbarcode";
  1651. this.pib_custbarcode.HeaderText = "客户条码";
  1652. this.pib_custbarcode.Name = "pib_custbarcode";
  1653. this.pib_custbarcode.Width = 78;
  1654. //
  1655. // pd_pocode
  1656. //
  1657. this.pd_pocode.DataPropertyName = "pd_pocode";
  1658. this.pd_pocode.HeaderText = "客户PO";
  1659. this.pd_pocode.Name = "pd_pocode";
  1660. this.pd_pocode.ReadOnly = true;
  1661. this.pd_pocode.Width = 66;
  1662. //
  1663. // pd_custprodcode
  1664. //
  1665. this.pd_custprodcode.DataPropertyName = "pd_custprodcode";
  1666. this.pd_custprodcode.HeaderText = "客户料号";
  1667. this.pd_custprodcode.Name = "pd_custprodcode";
  1668. this.pd_custprodcode.ReadOnly = true;
  1669. this.pd_custprodcode.Width = 78;
  1670. //
  1671. // pd_custprodspec
  1672. //
  1673. this.pd_custprodspec.DataPropertyName = "pd_custprodspec";
  1674. this.pd_custprodspec.HeaderText = "客户型号";
  1675. this.pd_custprodspec.Name = "pd_custprodspec";
  1676. this.pd_custprodspec.ReadOnly = true;
  1677. this.pd_custprodspec.Width = 78;
  1678. //
  1679. // pib_outboxcode1
  1680. //
  1681. this.pib_outboxcode1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1682. this.pib_outboxcode1.DataPropertyName = "pib_outboxcode1";
  1683. this.pib_outboxcode1.HeaderText = "中盒号";
  1684. this.pib_outboxcode1.Name = "pib_outboxcode1";
  1685. this.pib_outboxcode1.Width = 90;
  1686. //
  1687. // pib_outboxcode2
  1688. //
  1689. this.pib_outboxcode2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1690. this.pib_outboxcode2.DataPropertyName = "pib_outboxcode2";
  1691. this.pib_outboxcode2.HeaderText = "外箱号";
  1692. this.pib_outboxcode2.Name = "pib_outboxcode2";
  1693. this.pib_outboxcode2.Width = 90;
  1694. //
  1695. // UAS_出货标签打印
  1696. //
  1697. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1698. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1699. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(233)))), ((int)(((byte)(206)))));
  1700. this.ClientSize = new System.Drawing.Size(1257, 686);
  1701. this.Controls.Add(this.groupBoxWithBorder1);
  1702. this.Controls.Add(this.ChooseAll);
  1703. this.Controls.Add(this.GetGridOnly);
  1704. this.Controls.Add(this.PowerSetting);
  1705. this.Controls.Add(this.AllCollected);
  1706. this.Controls.Add(this.CleanInputAfterCollect);
  1707. this.Controls.Add(this.Fresh);
  1708. this.Controls.Add(this.pi_cardcode_label);
  1709. this.Controls.Add(this.pi_cardcode);
  1710. this.Controls.Add(this.pib_id);
  1711. this.Controls.Add(this.pr_code);
  1712. this.Controls.Add(this.CleanDetail);
  1713. this.Controls.Add(this.Si_ItemDGV);
  1714. this.Controls.Add(this.CollectionProcess);
  1715. this.Controls.Add(this.CollectionSetting);
  1716. this.Controls.Add(this.sg_separator);
  1717. this.Controls.Add(this.sg_separator_label);
  1718. this.Controls.Add(this.SaveGrid);
  1719. this.Controls.Add(this.LabelMainTain);
  1720. this.Controls.Add(this.GenerateBarCode);
  1721. this.Controls.Add(this.CollectionUnit_label);
  1722. this.Controls.Add(this.CollectionUnit);
  1723. this.Controls.Add(this.label24);
  1724. this.Controls.Add(this.Input);
  1725. this.Controls.Add(this.pr_code_label);
  1726. this.Controls.Add(this.griddetno);
  1727. this.Controls.Add(this.AutoMatch);
  1728. this.Controls.Add(this.label22);
  1729. this.Controls.Add(this.label2);
  1730. this.Controls.Add(this.sg_code);
  1731. this.Controls.Add(this.label1);
  1732. this.Controls.Add(this.label3);
  1733. this.Controls.Add(this.MessageLog);
  1734. this.Controls.Add(this.LabelInf);
  1735. this.Controls.Add(this.pi_inoutno_label);
  1736. this.Controls.Add(this.pi_inoutno);
  1737. this.Controls.Add(this.SingleLabel);
  1738. this.Controls.Add(this.MidLabel);
  1739. this.Controls.Add(this.OutBoxLabel);
  1740. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  1741. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  1742. this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1743. this.Name = "UAS_出货标签打印";
  1744. this.Text = " UAS-出货标签管理";
  1745. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  1746. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.贴标机条码打印_FormClosing);
  1747. this.Load += new System.EventHandler(this.贴标机条码打印_Load);
  1748. this.SizeChanged += new System.EventHandler(this.贴标机条码打印_SizeChanged);
  1749. ((System.ComponentModel.ISupportInitialize)(this.Si_ItemDGV)).EndInit();
  1750. ((System.ComponentModel.ISupportInitialize)(this.MidSource)).EndInit();
  1751. this.groupBoxWithBorder1.ResumeLayout(false);
  1752. this.groupBoxWithBorder1.PerformLayout();
  1753. this.CollectionProcess.ResumeLayout(false);
  1754. this.CollectionProcess.PerformLayout();
  1755. ((System.ComponentModel.ISupportInitialize)(this.LabelInf)).EndInit();
  1756. this.SingleLabel.ResumeLayout(false);
  1757. this.SingleLabel.PerformLayout();
  1758. this.MidLabel.ResumeLayout(false);
  1759. this.MidLabel.PerformLayout();
  1760. ((System.ComponentModel.ISupportInitialize)(this.MidBoxCapacity)).EndInit();
  1761. this.OutBoxLabel.ResumeLayout(false);
  1762. this.OutBoxLabel.PerformLayout();
  1763. ((System.ComponentModel.ISupportInitialize)(this.OutboxCapacity)).EndInit();
  1764. this.ResumeLayout(false);
  1765. this.PerformLayout();
  1766. }
  1767. #endregion
  1768. private UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder OutBoxLabel;
  1769. private CustomControl.EnterTextBox OutBoxNum;
  1770. private System.Windows.Forms.Label label10;
  1771. private CustomControl.EnterTextBox WeightNet;
  1772. private System.Windows.Forms.Label label9;
  1773. private CustomControl.EnterTextBox WeightGross;
  1774. private System.Windows.Forms.Label label8;
  1775. private CustomControl.PrinterCombox OutBoxPrinter;
  1776. private System.Windows.Forms.Button OutBoxLabelPrint;
  1777. private System.Windows.Forms.ComboBox OutBoxCombox;
  1778. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
  1779. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
  1780. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
  1781. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
  1782. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
  1783. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
  1784. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
  1785. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
  1786. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
  1787. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
  1788. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
  1789. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn2;
  1790. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn3;
  1791. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
  1792. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
  1793. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
  1794. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
  1795. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
  1796. private System.Windows.Forms.Label label6;
  1797. private System.Windows.Forms.NumericUpDown OutboxCapacity;
  1798. private System.Windows.Forms.Button OutBoxLabelPackage;
  1799. private System.Windows.Forms.CheckBox OutBoxLabelAutoPrint;
  1800. private System.Windows.Forms.ComboBox MidLabelCombox;
  1801. private System.Windows.Forms.CheckBox MidLabelAutoPrint;
  1802. private System.Windows.Forms.Button MidLabelPrint;
  1803. private System.Windows.Forms.NumericUpDown MidBoxCapacity;
  1804. private System.Windows.Forms.Label label15;
  1805. private CustomControl.PrinterCombox MidLabelPrinter;
  1806. private System.Windows.Forms.Label label4;
  1807. private System.Windows.Forms.Label label5;
  1808. private CustomControl.EnterTextBox MidLabelNum;
  1809. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder MidLabel;
  1810. private System.Windows.Forms.ComboBox SingleLabelCombox;
  1811. private System.Windows.Forms.CheckBox SingleLabelAutoPrint;
  1812. private System.Windows.Forms.Button SingleLabelPrint;
  1813. private CustomControl.PrinterCombox SingleLabelPrinter;
  1814. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder SingleLabel;
  1815. private CustomControl.EnterTextBox pi_inoutno;
  1816. private System.Windows.Forms.Label pi_inoutno_label;
  1817. private CustomControl.DataGridViewWithSerialNum LabelInf;
  1818. private CustomControl.RichText.RichTextAutoBottom MessageLog;
  1819. private System.Windows.Forms.Label label1;
  1820. private System.Windows.Forms.Label label2;
  1821. private System.Windows.Forms.Label label22;
  1822. private System.Windows.Forms.CheckBox AutoMatch;
  1823. private CustomControl.EnterTextBox griddetno;
  1824. private System.Windows.Forms.Label pr_code_label;
  1825. private CustomControl.EnterTextBox Input;
  1826. private System.Windows.Forms.Label label24;
  1827. private System.Windows.Forms.ComboBox CollectionUnit;
  1828. private System.Windows.Forms.Label CollectionUnit_label;
  1829. private System.Windows.Forms.Button GenerateBarCode;
  1830. private System.Windows.Forms.Button LabelMainTain;
  1831. private System.Windows.Forms.Button SaveGrid;
  1832. private System.Windows.Forms.Label sg_separator_label;
  1833. private CustomControl.EnterTextBox sg_separator;
  1834. private System.Windows.Forms.Button CollectionSetting;
  1835. private System.Windows.Forms.Label Process;
  1836. private System.Windows.Forms.Label Installed;
  1837. private System.Windows.Forms.Label label13;
  1838. private System.Windows.Forms.Label label11;
  1839. private System.Windows.Forms.Label label14;
  1840. private System.Windows.Forms.Label CollectedCount;
  1841. private System.Windows.Forms.Label label17;
  1842. private System.Windows.Forms.Label TotalCount;
  1843. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder CollectionProcess;
  1844. private System.Windows.Forms.DataGridView Si_ItemDGV;
  1845. private System.Windows.Forms.Button CleanDetail;
  1846. private CustomControl.SearchTextBox sg_code;
  1847. private CustomControl.SearchTextBox pr_code;
  1848. private System.Windows.Forms.Label pib_id;
  1849. private System.Windows.Forms.Label Process_midboxcode;
  1850. private System.Windows.Forms.Label Process_outboxcode;
  1851. private System.Windows.Forms.Label Capacity;
  1852. private System.Windows.Forms.Label pi_cardcode;
  1853. private System.Windows.Forms.Label pi_cardcode_label;
  1854. private System.Windows.Forms.LinkLabel Fresh;
  1855. private System.Windows.Forms.Label label3;
  1856. private System.Windows.Forms.CheckBox CleanInputAfterCollect;
  1857. private System.Windows.Forms.Button AllCollected;
  1858. private System.Windows.Forms.Button PowerSetting;
  1859. private System.Windows.Forms.Button GetOutBoxCode;
  1860. private System.Windows.Forms.LinkLabel LogingOut;
  1861. private System.Windows.Forms.DataGridViewTextBoxColumn si_detno;
  1862. private System.Windows.Forms.DataGridViewTextBoxColumn si_index;
  1863. private System.Windows.Forms.DataGridViewTextBoxColumn si_kind;
  1864. private System.Windows.Forms.DataGridViewTextBoxColumn si_indexstring;
  1865. private System.Windows.Forms.DataGridViewTextBoxColumn si_length;
  1866. private System.Windows.Forms.DataGridViewTextBoxColumn si_expression;
  1867. private System.Windows.Forms.DataGridViewTextBoxColumn si_item;
  1868. private System.Windows.Forms.Timer RefreshDBConnect;
  1869. private System.Windows.Forms.CheckBox GetGridOnly;
  1870. private System.Windows.Forms.Button ViVoPlate;
  1871. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
  1872. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
  1873. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
  1874. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
  1875. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
  1876. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
  1877. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
  1878. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
  1879. private System.Windows.Forms.BindingSource MidSource;
  1880. private System.Windows.Forms.Button ChooseAll;
  1881. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder groupBoxWithBorder1;
  1882. private System.Windows.Forms.Label label7;
  1883. private System.Windows.Forms.Label label12;
  1884. private CustomControl.EnterTextBox SingleBoxEnd;
  1885. private CustomControl.EnterTextBox SingleBoxBegin;
  1886. private System.Windows.Forms.Label label16;
  1887. private System.Windows.Forms.Label label18;
  1888. private CustomControl.EnterTextBox MidBoxEnd;
  1889. private CustomControl.EnterTextBox MidBoxBegin;
  1890. private System.Windows.Forms.Button ExportData;
  1891. private System.Windows.Forms.FolderBrowserDialog ExportFileDialog;
  1892. private System.Windows.Forms.DataGridViewCheckBoxColumn Choose;
  1893. private System.Windows.Forms.DataGridViewCheckBoxColumn pib_ifpick;
  1894. private System.Windows.Forms.DataGridViewCheckBoxColumn pib_ifprint;
  1895. private System.Windows.Forms.DataGridViewTextBoxColumn pib_id1;
  1896. private System.Windows.Forms.DataGridViewTextBoxColumn pib_pdno;
  1897. private System.Windows.Forms.DataGridViewTextBoxColumn pib_prodcode;
  1898. private System.Windows.Forms.DataGridViewTextBoxColumn pr_vendprodcode;
  1899. private System.Windows.Forms.DataGridViewTextBoxColumn pr_brand;
  1900. private System.Windows.Forms.DataGridViewTextBoxColumn pib_madein;
  1901. private System.Windows.Forms.DataGridViewTextBoxColumn pib_lotno;
  1902. private System.Windows.Forms.DataGridViewTextBoxColumn pib_datecode;
  1903. private System.Windows.Forms.DataGridViewTextBoxColumn pib_cusbarcode;
  1904. private System.Windows.Forms.DataGridViewTextBoxColumn pib_cusoutboxcode;
  1905. private System.Windows.Forms.DataGridViewTextBoxColumn pib_datecode1;
  1906. private System.Windows.Forms.DataGridViewTextBoxColumn pib_qty;
  1907. private System.Windows.Forms.DataGridViewTextBoxColumn pib_barcode;
  1908. private System.Windows.Forms.DataGridViewTextBoxColumn pib_custbarcode;
  1909. private System.Windows.Forms.DataGridViewTextBoxColumn pd_pocode;
  1910. private System.Windows.Forms.DataGridViewTextBoxColumn pd_custprodcode;
  1911. private System.Windows.Forms.DataGridViewTextBoxColumn pd_custprodspec;
  1912. private System.Windows.Forms.DataGridViewTextBoxColumn pib_outboxcode1;
  1913. private System.Windows.Forms.DataGridViewTextBoxColumn pib_outboxcode2;
  1914. }
  1915. }