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

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