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

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