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

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