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

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