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

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