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

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