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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631
  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.MidSource = new System.Windows.Forms.BindingSource(this.components);
  40. this.ChooseAll = new System.Windows.Forms.Button();
  41. this.ExportFileDialog = new System.Windows.Forms.FolderBrowserDialog();
  42. this.AttachInfo = new System.Windows.Forms.Button();
  43. this.pi_date = new System.Windows.Forms.Label();
  44. this.label19 = new System.Windows.Forms.Label();
  45. this.ExportData = new System.Windows.Forms.Button();
  46. this.PrintFooter = new System.Windows.Forms.Button();
  47. this.SetPrintStatus_label = new System.Windows.Forms.Label();
  48. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  49. this.label1 = new System.Windows.Forms.Label();
  50. this.PrintStatus = new System.Windows.Forms.Button();
  51. this.label3 = new System.Windows.Forms.Label();
  52. this.label4 = new System.Windows.Forms.Label();
  53. this.bi_inman = new System.Windows.Forms.Label();
  54. this.pib_inman = new System.Windows.Forms.Label();
  55. this.CustomerLabel = new System.Windows.Forms.Button();
  56. this.Combindetail = new System.Windows.Forms.CheckBox();
  57. this.label8 = new System.Windows.Forms.Label();
  58. this.pi_title = new System.Windows.Forms.Label();
  59. this.label9 = new System.Windows.Forms.Label();
  60. this.ProcessCount = new System.Windows.Forms.Label();
  61. this.CombindetailTwo = new System.Windows.Forms.CheckBox();
  62. this.Reset = new System.Windows.Forms.Button();
  63. this.GetPDdata = new System.Windows.Forms.Button();
  64. this.Com = new System.IO.Ports.SerialPort(this.components);
  65. this.ShowMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
  66. this.label11 = new System.Windows.Forms.Label();
  67. this.pib_indate = new System.Windows.Forms.Label();
  68. this.ShowMenu_Total = new System.Windows.Forms.ContextMenuStrip(this.components);
  69. this.清除明细ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  70. this.标签维护ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  71. this.打印唛头ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  72. this.附加信息ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  73. this.打印状态ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  74. this.标签自定义ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  75. this.重置单据ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  76. this.同步出货数据ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  77. this.贴标机参数设置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  78. this.贴标角度设置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  79. this.断开贴标机ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  80. this.MenuManage = new System.Windows.Forms.Button();
  81. this.Connect = new System.Windows.Forms.Button();
  82. this.MixPrCode = new System.Windows.Forms.CheckBox();
  83. this.PackMidBox = new System.Windows.Forms.Button();
  84. this.PackOutBox = new System.Windows.Forms.Button();
  85. this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  86. this.dataGridViewCheckBoxColumn2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  87. this.dataGridViewCheckBoxColumn3 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  88. this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  89. this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  90. this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  91. this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  92. this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  93. this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  94. this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  95. this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  96. this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  97. this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  98. this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  99. this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  100. this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  101. this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  102. this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  103. this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  104. this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  105. this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  106. this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  107. this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  108. this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  109. this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  110. this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  111. this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  112. this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  113. this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  114. this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  115. this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  116. this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  117. this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  118. this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  119. this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  120. this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  121. this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  122. this.dataGridViewTextBoxColumn35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  123. this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  124. this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  125. this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  126. this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  127. this.richTextAutoBottom1 = new UAS_LabelMachine.CustomControl.RichText.RichTextAutoBottom();
  128. this.groupBoxWithBorder2 = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  129. this.ButtonMidWeigh = new System.Windows.Forms.Button();
  130. this.CloseSerialPort = new System.Windows.Forms.Button();
  131. this.ConnectCom = new System.Windows.Forms.Button();
  132. this.ButtonWeigh = new System.Windows.Forms.Button();
  133. this.Weight = new System.Windows.Forms.Label();
  134. this.DCCheck = new UAS_LabelMachine.CustomControl.EnterTextBox();
  135. this.GridPrcode = new UAS_LabelMachine.CustomControl.DataGridViewWithSerialNum();
  136. this.pd_pdno = new System.Windows.Forms.DataGridViewTextBoxColumn();
  137. this.pd_piid = new System.Windows.Forms.DataGridViewTextBoxColumn();
  138. this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  139. this.pd_inoutno = new System.Windows.Forms.DataGridViewTextBoxColumn();
  140. this.pd_whcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  141. this.pjd_id = new System.Windows.Forms.DataGridViewTextBoxColumn();
  142. this.pd_custprodcode1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  143. this.pd_pocode1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  144. this.pd_prodcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  145. this.CollectedNum = new System.Windows.Forms.DataGridViewTextBoxColumn();
  146. this.UnCollectedNum = new System.Windows.Forms.DataGridViewTextBoxColumn();
  147. this.pd_outqty = new System.Windows.Forms.DataGridViewTextBoxColumn();
  148. this.pr_unit = new System.Windows.Forms.DataGridViewTextBoxColumn();
  149. this.pd_brand = new System.Windows.Forms.DataGridViewTextBoxColumn();
  150. this.pjd_zxbzs_user = new System.Windows.Forms.DataGridViewTextBoxColumn();
  151. this.pr_spec1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  152. this.checknum = new System.Windows.Forms.DataGridViewTextBoxColumn();
  153. this.groupBoxWithBorder1 = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  154. this.ResetHBXH = new System.Windows.Forms.Button();
  155. this.label18 = new System.Windows.Forms.Label();
  156. this.MidBoxEnd = new UAS_LabelMachine.CustomControl.EnterTextBox();
  157. this.MidBoxBegin = new UAS_LabelMachine.CustomControl.EnterTextBox();
  158. this.label16 = new System.Windows.Forms.Label();
  159. this.SingleBoxEnd = new UAS_LabelMachine.CustomControl.EnterTextBox();
  160. this.SingleBoxBegin = new UAS_LabelMachine.CustomControl.EnterTextBox();
  161. this.label12 = new System.Windows.Forms.Label();
  162. this.label7 = new System.Windows.Forms.Label();
  163. this.Input = new UAS_LabelMachine.CustomControl.EnterTextBox();
  164. this.LabelInf = new UAS_LabelMachine.CustomControl.DataGridViewWithSerialNum();
  165. this.Choose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  166. this.pib_ifprint = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  167. this.pib_midifprint = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  168. this.pib_id1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  169. this.pib_pdno = new System.Windows.Forms.DataGridViewTextBoxColumn();
  170. this.pib_prodcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  171. this.pd_custprodcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  172. this.pjd_orispeccode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  173. this.pib_brand = new System.Windows.Forms.DataGridViewTextBoxColumn();
  174. this.pr_zxbzs = new System.Windows.Forms.DataGridViewTextBoxColumn();
  175. this.pib_lotno = new System.Windows.Forms.DataGridViewTextBoxColumn();
  176. this.pib_datecode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  177. this.DateCode1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  178. this.pib_qty = new System.Windows.Forms.DataGridViewTextBoxColumn();
  179. this.pib_custbarcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  180. this.pib_custmidboxcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  181. this.pib_custoutboxcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  182. this.pd_pocode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  183. this.pr_spec = new System.Windows.Forms.DataGridViewTextBoxColumn();
  184. this.pib_midboxweight = new System.Windows.Forms.DataGridViewTextBoxColumn();
  185. this.pib_boxweight = new System.Windows.Forms.DataGridViewTextBoxColumn();
  186. this.pib_totalweight = new System.Windows.Forms.DataGridViewTextBoxColumn();
  187. this.pd_remark = new System.Windows.Forms.DataGridViewTextBoxColumn();
  188. this.pd_remark2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  189. this.pib_outboxcode1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  190. this.pib_outboxcode2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  191. this.pi_inoutno = new UAS_LabelMachine.CustomControl.EnterTextBox();
  192. this.SingleLabel = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  193. this.label14 = new System.Windows.Forms.Label();
  194. this.CurrentOutBoxNum = new System.Windows.Forms.NumericUpDown();
  195. this.label13 = new System.Windows.Forms.Label();
  196. this.CurrentBoxNum = new System.Windows.Forms.NumericUpDown();
  197. this.SingleLabelPrinter = new UAS_LabelMachine.CustomControl.PrinterCombox();
  198. this.SingleLabelPrint = new System.Windows.Forms.Button();
  199. this.SingleLabelAutoPrint = new System.Windows.Forms.CheckBox();
  200. this.SingleLabelCombox = new System.Windows.Forms.ComboBox();
  201. this.MidLabel = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  202. this.AutoPrintMidBox = new System.Windows.Forms.CheckBox();
  203. this.CurrentRowOnly = new System.Windows.Forms.CheckBox();
  204. this.MidboxCapacity = new System.Windows.Forms.NumericUpDown();
  205. this.label2 = new System.Windows.Forms.Label();
  206. this.MidLabelNum = new UAS_LabelMachine.CustomControl.EnterTextBox();
  207. this.label5 = new System.Windows.Forms.Label();
  208. this.MidLabelPrinter = new UAS_LabelMachine.CustomControl.PrinterCombox();
  209. this.MidLabelPrint = new System.Windows.Forms.Button();
  210. this.MidLabelAutoPrint = new System.Windows.Forms.CheckBox();
  211. this.MidLabelCombox = new System.Windows.Forms.ComboBox();
  212. this.OutBoxLabel = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  213. this.AutoPrintOutBox = new System.Windows.Forms.CheckBox();
  214. this.AutoSetOutBox = new System.Windows.Forms.CheckBox();
  215. this.DiffDetno = new System.Windows.Forms.CheckBox();
  216. this.DiffCPN = new System.Windows.Forms.CheckBox();
  217. this.BoxCount = new System.Windows.Forms.Label();
  218. this.DiffLotNo = new System.Windows.Forms.CheckBox();
  219. this.DiffDC = new System.Windows.Forms.CheckBox();
  220. this.OnlyOneRow = new System.Windows.Forms.CheckBox();
  221. this.AllLabel = new System.Windows.Forms.CheckBox();
  222. this.AddNewOutBox = new System.Windows.Forms.Button();
  223. this.LogingOut = new System.Windows.Forms.LinkLabel();
  224. this.OutBoxNum = new System.Windows.Forms.ComboBox();
  225. this.label10 = new System.Windows.Forms.Label();
  226. this.label6 = new System.Windows.Forms.Label();
  227. this.OutBoxPrinter = new UAS_LabelMachine.CustomControl.PrinterCombox();
  228. this.OutboxCapacity = new System.Windows.Forms.NumericUpDown();
  229. this.OutBoxLabelPrint = new System.Windows.Forms.Button();
  230. this.OutBoxCombox = new System.Windows.Forms.ComboBox();
  231. ((System.ComponentModel.ISupportInitialize)(this.MidSource)).BeginInit();
  232. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  233. this.ShowMenu_Total.SuspendLayout();
  234. this.groupBoxWithBorder2.SuspendLayout();
  235. ((System.ComponentModel.ISupportInitialize)(this.GridPrcode)).BeginInit();
  236. this.groupBoxWithBorder1.SuspendLayout();
  237. ((System.ComponentModel.ISupportInitialize)(this.LabelInf)).BeginInit();
  238. this.SingleLabel.SuspendLayout();
  239. ((System.ComponentModel.ISupportInitialize)(this.CurrentOutBoxNum)).BeginInit();
  240. ((System.ComponentModel.ISupportInitialize)(this.CurrentBoxNum)).BeginInit();
  241. this.MidLabel.SuspendLayout();
  242. ((System.ComponentModel.ISupportInitialize)(this.MidboxCapacity)).BeginInit();
  243. this.OutBoxLabel.SuspendLayout();
  244. ((System.ComponentModel.ISupportInitialize)(this.OutboxCapacity)).BeginInit();
  245. this.SuspendLayout();
  246. //
  247. // pi_inoutno_label
  248. //
  249. this.pi_inoutno_label.AutoSize = true;
  250. this.pi_inoutno_label.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  251. this.pi_inoutno_label.Location = new System.Drawing.Point(10, 20);
  252. this.pi_inoutno_label.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  253. this.pi_inoutno_label.Name = "pi_inoutno_label";
  254. this.pi_inoutno_label.Size = new System.Drawing.Size(127, 36);
  255. this.pi_inoutno_label.TabIndex = 3;
  256. this.pi_inoutno_label.Text = "出货单号";
  257. //
  258. // label24
  259. //
  260. this.label24.AutoSize = true;
  261. this.label24.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  262. this.label24.Location = new System.Drawing.Point(10, 186);
  263. this.label24.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  264. this.label24.Name = "label24";
  265. this.label24.Size = new System.Drawing.Size(99, 36);
  266. this.label24.TabIndex = 55;
  267. this.label24.Text = "输入框";
  268. //
  269. // LabelMainTain
  270. //
  271. this.LabelMainTain.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  272. this.LabelMainTain.Location = new System.Drawing.Point(292, 108);
  273. this.LabelMainTain.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  274. this.LabelMainTain.Name = "LabelMainTain";
  275. this.LabelMainTain.Size = new System.Drawing.Size(128, 52);
  276. this.LabelMainTain.TabIndex = 57;
  277. this.LabelMainTain.Text = "标签维护";
  278. this.LabelMainTain.UseVisualStyleBackColor = true;
  279. this.LabelMainTain.Visible = false;
  280. this.LabelMainTain.Click += new System.EventHandler(this.LabelMaintain_Click);
  281. //
  282. // CleanDetail
  283. //
  284. this.CleanDetail.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  285. this.CleanDetail.Location = new System.Drawing.Point(592, 96);
  286. this.CleanDetail.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  287. this.CleanDetail.Name = "CleanDetail";
  288. this.CleanDetail.Size = new System.Drawing.Size(128, 52);
  289. this.CleanDetail.TabIndex = 66;
  290. this.CleanDetail.Text = "清除明细";
  291. this.CleanDetail.UseVisualStyleBackColor = true;
  292. this.CleanDetail.Click += new System.EventHandler(this.CleanDetail_Click);
  293. //
  294. // pib_id
  295. //
  296. this.pib_id.AutoSize = true;
  297. this.pib_id.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  298. this.pib_id.Location = new System.Drawing.Point(292, 320);
  299. this.pib_id.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  300. this.pib_id.Name = "pib_id";
  301. this.pib_id.Size = new System.Drawing.Size(0, 36);
  302. this.pib_id.TabIndex = 69;
  303. this.pib_id.Visible = false;
  304. //
  305. // pi_cardcode
  306. //
  307. this.pi_cardcode.AutoSize = true;
  308. this.pi_cardcode.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  309. this.pi_cardcode.Location = new System.Drawing.Point(508, 220);
  310. this.pi_cardcode.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  311. this.pi_cardcode.Name = "pi_cardcode";
  312. this.pi_cardcode.Size = new System.Drawing.Size(0, 36);
  313. this.pi_cardcode.TabIndex = 71;
  314. this.pi_cardcode.Visible = false;
  315. //
  316. // Fresh
  317. //
  318. this.Fresh.AutoSize = true;
  319. this.Fresh.Location = new System.Drawing.Point(482, 28);
  320. this.Fresh.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  321. this.Fresh.Name = "Fresh";
  322. this.Fresh.Size = new System.Drawing.Size(58, 24);
  323. this.Fresh.TabIndex = 73;
  324. this.Fresh.TabStop = true;
  325. this.Fresh.Text = "刷新";
  326. this.Fresh.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.Refresh_LinkClicked);
  327. //
  328. // RefreshDBConnect
  329. //
  330. this.RefreshDBConnect.Interval = 10000;
  331. this.RefreshDBConnect.Tick += new System.EventHandler(this.RefreshDBConnect_Tick);
  332. //
  333. // ChooseAll
  334. //
  335. this.ChooseAll.Location = new System.Drawing.Point(0, 758);
  336. this.ChooseAll.Margin = new System.Windows.Forms.Padding(4);
  337. this.ChooseAll.Name = "ChooseAll";
  338. this.ChooseAll.Size = new System.Drawing.Size(76, 44);
  339. this.ChooseAll.TabIndex = 84;
  340. this.ChooseAll.Text = "全选";
  341. this.ChooseAll.UseVisualStyleBackColor = true;
  342. this.ChooseAll.Click += new System.EventHandler(this.ChooseAll_Click);
  343. //
  344. // AttachInfo
  345. //
  346. this.AttachInfo.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  347. this.AttachInfo.Location = new System.Drawing.Point(754, 96);
  348. this.AttachInfo.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  349. this.AttachInfo.Name = "AttachInfo";
  350. this.AttachInfo.Size = new System.Drawing.Size(128, 52);
  351. this.AttachInfo.TabIndex = 85;
  352. this.AttachInfo.Text = "附加信息设置";
  353. this.AttachInfo.UseVisualStyleBackColor = true;
  354. this.AttachInfo.Click += new System.EventHandler(this.AttachInfo_Click);
  355. //
  356. // pi_date
  357. //
  358. this.pi_date.AutoSize = true;
  359. this.pi_date.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  360. this.pi_date.Location = new System.Drawing.Point(10, 316);
  361. this.pi_date.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  362. this.pi_date.Name = "pi_date";
  363. this.pi_date.Size = new System.Drawing.Size(0, 36);
  364. this.pi_date.TabIndex = 86;
  365. this.pi_date.Visible = false;
  366. //
  367. // label19
  368. //
  369. this.label19.AutoSize = true;
  370. this.label19.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  371. this.label19.Location = new System.Drawing.Point(8, 392);
  372. this.label19.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  373. this.label19.Name = "label19";
  374. this.label19.Size = new System.Drawing.Size(146, 41);
  375. this.label19.TabIndex = 87;
  376. this.label19.Text = "物料资料";
  377. //
  378. // ExportData
  379. //
  380. this.ExportData.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  381. this.ExportData.Location = new System.Drawing.Point(754, 24);
  382. this.ExportData.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  383. this.ExportData.Name = "ExportData";
  384. this.ExportData.Size = new System.Drawing.Size(128, 52);
  385. this.ExportData.TabIndex = 91;
  386. this.ExportData.Text = "导出数据";
  387. this.ExportData.UseVisualStyleBackColor = true;
  388. this.ExportData.Click += new System.EventHandler(this.ExportData_Click);
  389. //
  390. // PrintFooter
  391. //
  392. this.PrintFooter.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  393. this.PrintFooter.Location = new System.Drawing.Point(916, 96);
  394. this.PrintFooter.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  395. this.PrintFooter.Name = "PrintFooter";
  396. this.PrintFooter.Size = new System.Drawing.Size(128, 52);
  397. this.PrintFooter.TabIndex = 89;
  398. this.PrintFooter.Text = "打印唛头";
  399. this.PrintFooter.UseVisualStyleBackColor = true;
  400. this.PrintFooter.Click += new System.EventHandler(this.PrintFooter_Click);
  401. //
  402. // SetPrintStatus_label
  403. //
  404. this.SetPrintStatus_label.AutoSize = true;
  405. this.SetPrintStatus_label.Font = new System.Drawing.Font("微软雅黑", 12F);
  406. this.SetPrintStatus_label.ForeColor = System.Drawing.Color.Green;
  407. this.SetPrintStatus_label.Location = new System.Drawing.Point(1020, 382);
  408. this.SetPrintStatus_label.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  409. this.SetPrintStatus_label.Name = "SetPrintStatus_label";
  410. this.SetPrintStatus_label.Size = new System.Drawing.Size(114, 41);
  411. this.SetPrintStatus_label.TabIndex = 76;
  412. this.SetPrintStatus_label.Text = "可打印";
  413. //
  414. // pictureBox1
  415. //
  416. this.pictureBox1.Image = global::UAS_LabelMachine.Properties.Resources.Status;
  417. this.pictureBox1.Location = new System.Drawing.Point(896, 200);
  418. this.pictureBox1.Margin = new System.Windows.Forms.Padding(6);
  419. this.pictureBox1.Name = "pictureBox1";
  420. this.pictureBox1.Size = new System.Drawing.Size(244, 128);
  421. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
  422. this.pictureBox1.TabIndex = 93;
  423. this.pictureBox1.TabStop = false;
  424. //
  425. // label1
  426. //
  427. this.label1.AutoSize = true;
  428. this.label1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  429. this.label1.Location = new System.Drawing.Point(8, 342);
  430. this.label1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  431. this.label1.Name = "label1";
  432. this.label1.Size = new System.Drawing.Size(111, 36);
  433. this.label1.TabIndex = 95;
  434. this.label1.Text = "DC校验";
  435. //
  436. // PrintStatus
  437. //
  438. this.PrintStatus.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  439. this.PrintStatus.Location = new System.Drawing.Point(292, 150);
  440. this.PrintStatus.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  441. this.PrintStatus.Name = "PrintStatus";
  442. this.PrintStatus.Size = new System.Drawing.Size(128, 52);
  443. this.PrintStatus.TabIndex = 97;
  444. this.PrintStatus.Text = "打印状态";
  445. this.PrintStatus.UseVisualStyleBackColor = true;
  446. this.PrintStatus.Visible = false;
  447. this.PrintStatus.Click += new System.EventHandler(this.PrintStatus_Click);
  448. //
  449. // label3
  450. //
  451. this.label3.AutoSize = true;
  452. this.label3.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  453. this.label3.Location = new System.Drawing.Point(474, 296);
  454. this.label3.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  455. this.label3.Name = "label3";
  456. this.label3.Size = new System.Drawing.Size(99, 36);
  457. this.label3.TabIndex = 98;
  458. this.label3.Text = "备货员";
  459. //
  460. // label4
  461. //
  462. this.label4.AutoSize = true;
  463. this.label4.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  464. this.label4.Location = new System.Drawing.Point(474, 356);
  465. this.label4.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  466. this.label4.Name = "label4";
  467. this.label4.Size = new System.Drawing.Size(99, 36);
  468. this.label4.TabIndex = 99;
  469. this.label4.Text = "出货员";
  470. //
  471. // bi_inman
  472. //
  473. this.bi_inman.AutoSize = true;
  474. this.bi_inman.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  475. this.bi_inman.Location = new System.Drawing.Point(594, 296);
  476. this.bi_inman.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  477. this.bi_inman.Name = "bi_inman";
  478. this.bi_inman.Size = new System.Drawing.Size(0, 36);
  479. this.bi_inman.TabIndex = 100;
  480. //
  481. // pib_inman
  482. //
  483. this.pib_inman.AutoSize = true;
  484. this.pib_inman.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  485. this.pib_inman.Location = new System.Drawing.Point(594, 356);
  486. this.pib_inman.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  487. this.pib_inman.Name = "pib_inman";
  488. this.pib_inman.Size = new System.Drawing.Size(0, 36);
  489. this.pib_inman.TabIndex = 101;
  490. //
  491. // CustomerLabel
  492. //
  493. this.CustomerLabel.Enabled = false;
  494. this.CustomerLabel.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  495. this.CustomerLabel.Location = new System.Drawing.Point(280, 154);
  496. this.CustomerLabel.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  497. this.CustomerLabel.Name = "CustomerLabel";
  498. this.CustomerLabel.Size = new System.Drawing.Size(168, 52);
  499. this.CustomerLabel.TabIndex = 103;
  500. this.CustomerLabel.Text = "标签自定义";
  501. this.CustomerLabel.UseVisualStyleBackColor = true;
  502. this.CustomerLabel.Visible = false;
  503. this.CustomerLabel.Click += new System.EventHandler(this.CustomerLabel_Click);
  504. //
  505. // Combindetail
  506. //
  507. this.Combindetail.AutoSize = true;
  508. this.Combindetail.Font = new System.Drawing.Font("微软雅黑", 9F);
  509. this.Combindetail.Location = new System.Drawing.Point(592, 156);
  510. this.Combindetail.Margin = new System.Windows.Forms.Padding(4);
  511. this.Combindetail.Name = "Combindetail";
  512. this.Combindetail.Size = new System.Drawing.Size(156, 35);
  513. this.Combindetail.TabIndex = 104;
  514. this.Combindetail.Text = "合并明细1";
  515. this.Combindetail.UseVisualStyleBackColor = true;
  516. this.Combindetail.CheckedChanged += new System.EventHandler(this.Combindetail_CheckedChanged);
  517. //
  518. // label8
  519. //
  520. this.label8.AutoSize = true;
  521. this.label8.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  522. this.label8.Location = new System.Drawing.Point(12, 82);
  523. this.label8.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  524. this.label8.Name = "label8";
  525. this.label8.Size = new System.Drawing.Size(127, 36);
  526. this.label8.TabIndex = 106;
  527. this.label8.Text = "客户名称";
  528. //
  529. // pi_title
  530. //
  531. this.pi_title.AutoSize = true;
  532. this.pi_title.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  533. this.pi_title.Location = new System.Drawing.Point(166, 82);
  534. this.pi_title.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  535. this.pi_title.MaximumSize = new System.Drawing.Size(310, 0);
  536. this.pi_title.Name = "pi_title";
  537. this.pi_title.Size = new System.Drawing.Size(0, 36);
  538. this.pi_title.TabIndex = 105;
  539. //
  540. // label9
  541. //
  542. this.label9.AutoSize = true;
  543. this.label9.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  544. this.label9.Location = new System.Drawing.Point(474, 400);
  545. this.label9.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  546. this.label9.Name = "label9";
  547. this.label9.Size = new System.Drawing.Size(167, 36);
  548. this.label9.TabIndex = 107;
  549. this.label9.Text = "已装箱/总数";
  550. //
  551. // ProcessCount
  552. //
  553. this.ProcessCount.AutoSize = true;
  554. this.ProcessCount.Font = new System.Drawing.Font("微软雅黑", 14.5F);
  555. this.ProcessCount.Location = new System.Drawing.Point(678, 385);
  556. this.ProcessCount.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  557. this.ProcessCount.Name = "ProcessCount";
  558. this.ProcessCount.Size = new System.Drawing.Size(0, 51);
  559. this.ProcessCount.TabIndex = 108;
  560. //
  561. // CombindetailTwo
  562. //
  563. this.CombindetailTwo.AutoSize = true;
  564. this.CombindetailTwo.Font = new System.Drawing.Font("微软雅黑", 9F);
  565. this.CombindetailTwo.Location = new System.Drawing.Point(592, 212);
  566. this.CombindetailTwo.Margin = new System.Windows.Forms.Padding(4);
  567. this.CombindetailTwo.Name = "CombindetailTwo";
  568. this.CombindetailTwo.Size = new System.Drawing.Size(231, 35);
  569. this.CombindetailTwo.TabIndex = 109;
  570. this.CombindetailTwo.Text = "合并明细2(加PO)";
  571. this.CombindetailTwo.UseVisualStyleBackColor = true;
  572. this.CombindetailTwo.CheckedChanged += new System.EventHandler(this.CombindetailTwo_CheckedChanged);
  573. //
  574. // Reset
  575. //
  576. this.Reset.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  577. this.Reset.Location = new System.Drawing.Point(280, 134);
  578. this.Reset.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  579. this.Reset.Name = "Reset";
  580. this.Reset.Size = new System.Drawing.Size(128, 52);
  581. this.Reset.TabIndex = 110;
  582. this.Reset.Text = "重置单据";
  583. this.Reset.UseVisualStyleBackColor = true;
  584. this.Reset.Visible = false;
  585. this.Reset.Click += new System.EventHandler(this.Reset_Click);
  586. //
  587. // GetPDdata
  588. //
  589. this.GetPDdata.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  590. this.GetPDdata.Location = new System.Drawing.Point(280, 108);
  591. this.GetPDdata.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  592. this.GetPDdata.Name = "GetPDdata";
  593. this.GetPDdata.Size = new System.Drawing.Size(186, 52);
  594. this.GetPDdata.TabIndex = 111;
  595. this.GetPDdata.Text = "同步出货数据";
  596. this.GetPDdata.UseVisualStyleBackColor = true;
  597. this.GetPDdata.Visible = false;
  598. this.GetPDdata.Click += new System.EventHandler(this.GetPDdata_Click);
  599. //
  600. // ShowMenu
  601. //
  602. this.ShowMenu.ImageScalingSize = new System.Drawing.Size(32, 32);
  603. this.ShowMenu.Name = "ShowMenu";
  604. this.ShowMenu.Size = new System.Drawing.Size(61, 4);
  605. this.ShowMenu.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.ShowMenu_ItemClicked);
  606. //
  607. // label11
  608. //
  609. this.label11.AutoSize = true;
  610. this.label11.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  611. this.label11.Location = new System.Drawing.Point(850, 340);
  612. this.label11.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  613. this.label11.Name = "label11";
  614. this.label11.Size = new System.Drawing.Size(127, 36);
  615. this.label11.TabIndex = 114;
  616. this.label11.Text = "装箱日期";
  617. //
  618. // pib_indate
  619. //
  620. this.pib_indate.AutoSize = true;
  621. this.pib_indate.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  622. this.pib_indate.Location = new System.Drawing.Point(988, 340);
  623. this.pib_indate.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  624. this.pib_indate.Name = "pib_indate";
  625. this.pib_indate.Size = new System.Drawing.Size(0, 36);
  626. this.pib_indate.TabIndex = 115;
  627. //
  628. // ShowMenu_Total
  629. //
  630. this.ShowMenu_Total.ImageScalingSize = new System.Drawing.Size(32, 32);
  631. this.ShowMenu_Total.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  632. this.清除明细ToolStripMenuItem,
  633. this.标签维护ToolStripMenuItem,
  634. this.打印唛头ToolStripMenuItem,
  635. this.附加信息ToolStripMenuItem,
  636. this.打印状态ToolStripMenuItem,
  637. this.标签自定义ToolStripMenuItem,
  638. this.重置单据ToolStripMenuItem,
  639. this.同步出货数据ToolStripMenuItem,
  640. this.贴标机参数设置ToolStripMenuItem,
  641. this.贴标角度设置ToolStripMenuItem,
  642. this.断开贴标机ToolStripMenuItem});
  643. this.ShowMenu_Total.Name = "ShowMenu";
  644. this.ShowMenu_Total.Size = new System.Drawing.Size(257, 400);
  645. this.ShowMenu_Total.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.ShowMenu_Total_ItemClicked);
  646. //
  647. // 清除明细ToolStripMenuItem
  648. //
  649. this.清除明细ToolStripMenuItem.Name = "清除明细ToolStripMenuItem";
  650. this.清除明细ToolStripMenuItem.Size = new System.Drawing.Size(256, 36);
  651. this.清除明细ToolStripMenuItem.Text = "清除明细";
  652. //
  653. // 标签维护ToolStripMenuItem
  654. //
  655. this.标签维护ToolStripMenuItem.Name = "标签维护ToolStripMenuItem";
  656. this.标签维护ToolStripMenuItem.Size = new System.Drawing.Size(256, 36);
  657. this.标签维护ToolStripMenuItem.Text = "标签维护";
  658. //
  659. // 打印唛头ToolStripMenuItem
  660. //
  661. this.打印唛头ToolStripMenuItem.Name = "打印唛头ToolStripMenuItem";
  662. this.打印唛头ToolStripMenuItem.Size = new System.Drawing.Size(256, 36);
  663. this.打印唛头ToolStripMenuItem.Text = "打印唛头";
  664. //
  665. // 附加信息ToolStripMenuItem
  666. //
  667. this.附加信息ToolStripMenuItem.Name = "附加信息ToolStripMenuItem";
  668. this.附加信息ToolStripMenuItem.Size = new System.Drawing.Size(256, 36);
  669. this.附加信息ToolStripMenuItem.Text = "附加信息";
  670. //
  671. // 打印状态ToolStripMenuItem
  672. //
  673. this.打印状态ToolStripMenuItem.Name = "打印状态ToolStripMenuItem";
  674. this.打印状态ToolStripMenuItem.Size = new System.Drawing.Size(256, 36);
  675. this.打印状态ToolStripMenuItem.Text = "打印状态";
  676. //
  677. // 标签自定义ToolStripMenuItem
  678. //
  679. this.标签自定义ToolStripMenuItem.Name = "标签自定义ToolStripMenuItem";
  680. this.标签自定义ToolStripMenuItem.Size = new System.Drawing.Size(256, 36);
  681. this.标签自定义ToolStripMenuItem.Text = "标签自定义";
  682. //
  683. // 重置单据ToolStripMenuItem
  684. //
  685. this.重置单据ToolStripMenuItem.Name = "重置单据ToolStripMenuItem";
  686. this.重置单据ToolStripMenuItem.Size = new System.Drawing.Size(256, 36);
  687. this.重置单据ToolStripMenuItem.Text = "重置单据";
  688. //
  689. // 同步出货数据ToolStripMenuItem
  690. //
  691. this.同步出货数据ToolStripMenuItem.Name = "同步出货数据ToolStripMenuItem";
  692. this.同步出货数据ToolStripMenuItem.Size = new System.Drawing.Size(256, 36);
  693. this.同步出货数据ToolStripMenuItem.Text = "同步出货数据";
  694. //
  695. // 贴标机参数设置ToolStripMenuItem
  696. //
  697. this.贴标机参数设置ToolStripMenuItem.Name = "贴标机参数设置ToolStripMenuItem";
  698. this.贴标机参数设置ToolStripMenuItem.Size = new System.Drawing.Size(256, 36);
  699. this.贴标机参数设置ToolStripMenuItem.Text = "贴标机参数设置";
  700. //
  701. // 贴标角度设置ToolStripMenuItem
  702. //
  703. this.贴标角度设置ToolStripMenuItem.Name = "贴标角度设置ToolStripMenuItem";
  704. this.贴标角度设置ToolStripMenuItem.Size = new System.Drawing.Size(256, 36);
  705. this.贴标角度设置ToolStripMenuItem.Text = "贴标角度设置";
  706. //
  707. // 断开贴标机ToolStripMenuItem
  708. //
  709. this.断开贴标机ToolStripMenuItem.Name = "断开贴标机ToolStripMenuItem";
  710. this.断开贴标机ToolStripMenuItem.Size = new System.Drawing.Size(256, 36);
  711. this.断开贴标机ToolStripMenuItem.Text = "断开贴标机";
  712. //
  713. // MenuManage
  714. //
  715. this.MenuManage.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  716. this.MenuManage.Location = new System.Drawing.Point(592, 24);
  717. this.MenuManage.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  718. this.MenuManage.Name = "MenuManage";
  719. this.MenuManage.Size = new System.Drawing.Size(128, 52);
  720. this.MenuManage.TabIndex = 117;
  721. this.MenuManage.Text = "后台管理";
  722. this.MenuManage.UseVisualStyleBackColor = true;
  723. this.MenuManage.Click += new System.EventHandler(this.MenuManage_Click);
  724. //
  725. // Connect
  726. //
  727. this.Connect.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  728. this.Connect.Location = new System.Drawing.Point(916, 24);
  729. this.Connect.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  730. this.Connect.Name = "Connect";
  731. this.Connect.Size = new System.Drawing.Size(144, 52);
  732. this.Connect.TabIndex = 118;
  733. this.Connect.Text = "连接贴标机";
  734. this.Connect.UseVisualStyleBackColor = true;
  735. this.Connect.Click += new System.EventHandler(this.Connect_Click);
  736. //
  737. // MixPrCode
  738. //
  739. this.MixPrCode.AutoSize = true;
  740. this.MixPrCode.Font = new System.Drawing.Font("微软雅黑", 9F);
  741. this.MixPrCode.Location = new System.Drawing.Point(592, 268);
  742. this.MixPrCode.Margin = new System.Windows.Forms.Padding(4);
  743. this.MixPrCode.Name = "MixPrCode";
  744. this.MixPrCode.Size = new System.Drawing.Size(142, 35);
  745. this.MixPrCode.TabIndex = 120;
  746. this.MixPrCode.Text = "允许混料";
  747. this.MixPrCode.UseVisualStyleBackColor = true;
  748. //
  749. // PackMidBox
  750. //
  751. this.PackMidBox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  752. this.PackMidBox.Location = new System.Drawing.Point(1006, 84);
  753. this.PackMidBox.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  754. this.PackMidBox.Name = "PackMidBox";
  755. this.PackMidBox.Size = new System.Drawing.Size(128, 52);
  756. this.PackMidBox.TabIndex = 102;
  757. this.PackMidBox.Text = "封中盒";
  758. this.PackMidBox.UseVisualStyleBackColor = true;
  759. this.PackMidBox.Visible = false;
  760. this.PackMidBox.Click += new System.EventHandler(this.PackMidBox_Click);
  761. //
  762. // PackOutBox
  763. //
  764. this.PackOutBox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  765. this.PackOutBox.Location = new System.Drawing.Point(1006, 144);
  766. this.PackOutBox.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  767. this.PackOutBox.Name = "PackOutBox";
  768. this.PackOutBox.Size = new System.Drawing.Size(128, 52);
  769. this.PackOutBox.TabIndex = 96;
  770. this.PackOutBox.Text = "封箱";
  771. this.PackOutBox.UseVisualStyleBackColor = true;
  772. this.PackOutBox.Visible = false;
  773. this.PackOutBox.Click += new System.EventHandler(this.Pack_Click);
  774. //
  775. // dataGridViewCheckBoxColumn1
  776. //
  777. this.dataGridViewCheckBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  778. this.dataGridViewCheckBoxColumn1.HeaderText = "勾选";
  779. this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
  780. this.dataGridViewCheckBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  781. this.dataGridViewCheckBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  782. this.dataGridViewCheckBoxColumn1.Width = 60;
  783. //
  784. // dataGridViewCheckBoxColumn2
  785. //
  786. this.dataGridViewCheckBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  787. this.dataGridViewCheckBoxColumn2.DataPropertyName = "pib_ifpick";
  788. this.dataGridViewCheckBoxColumn2.HeaderText = "已采集";
  789. this.dataGridViewCheckBoxColumn2.Name = "dataGridViewCheckBoxColumn2";
  790. this.dataGridViewCheckBoxColumn2.Width = 60;
  791. //
  792. // dataGridViewCheckBoxColumn3
  793. //
  794. this.dataGridViewCheckBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  795. this.dataGridViewCheckBoxColumn3.DataPropertyName = "pib_ifprint";
  796. this.dataGridViewCheckBoxColumn3.HeaderText = "已打印";
  797. this.dataGridViewCheckBoxColumn3.Name = "dataGridViewCheckBoxColumn3";
  798. this.dataGridViewCheckBoxColumn3.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  799. this.dataGridViewCheckBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  800. this.dataGridViewCheckBoxColumn3.Visible = false;
  801. this.dataGridViewCheckBoxColumn3.Width = 60;
  802. //
  803. // dataGridViewTextBoxColumn1
  804. //
  805. this.dataGridViewTextBoxColumn1.DataPropertyName = "si_detno";
  806. this.dataGridViewTextBoxColumn1.HeaderText = "bi_id";
  807. this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
  808. this.dataGridViewTextBoxColumn1.ReadOnly = true;
  809. this.dataGridViewTextBoxColumn1.Visible = false;
  810. this.dataGridViewTextBoxColumn1.Width = 80;
  811. //
  812. // dataGridViewTextBoxColumn2
  813. //
  814. this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  815. this.dataGridViewTextBoxColumn2.DataPropertyName = "si_index";
  816. this.dataGridViewTextBoxColumn2.HeaderText = "明细序号";
  817. this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
  818. this.dataGridViewTextBoxColumn2.ReadOnly = true;
  819. this.dataGridViewTextBoxColumn2.Visible = false;
  820. this.dataGridViewTextBoxColumn2.Width = 96;
  821. //
  822. // dataGridViewTextBoxColumn3
  823. //
  824. this.dataGridViewTextBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  825. this.dataGridViewTextBoxColumn3.DataPropertyName = "bi_prodcode";
  826. this.dataGridViewTextBoxColumn3.HeaderText = "物料编号";
  827. this.dataGridViewTextBoxColumn3.MinimumWidth = 120;
  828. this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
  829. this.dataGridViewTextBoxColumn3.ReadOnly = true;
  830. this.dataGridViewTextBoxColumn3.Visible = false;
  831. this.dataGridViewTextBoxColumn3.Width = 120;
  832. //
  833. // dataGridViewTextBoxColumn4
  834. //
  835. this.dataGridViewTextBoxColumn4.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  836. this.dataGridViewTextBoxColumn4.DataPropertyName = "si_indexstring";
  837. this.dataGridViewTextBoxColumn4.HeaderText = "MPN";
  838. this.dataGridViewTextBoxColumn4.MinimumWidth = 120;
  839. this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
  840. this.dataGridViewTextBoxColumn4.Visible = false;
  841. this.dataGridViewTextBoxColumn4.Width = 120;
  842. //
  843. // dataGridViewTextBoxColumn5
  844. //
  845. this.dataGridViewTextBoxColumn5.DataPropertyName = "si_length";
  846. this.dataGridViewTextBoxColumn5.HeaderText = "LotNo";
  847. this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
  848. this.dataGridViewTextBoxColumn5.ReadOnly = true;
  849. this.dataGridViewTextBoxColumn5.Visible = false;
  850. this.dataGridViewTextBoxColumn5.Width = 48;
  851. //
  852. // dataGridViewTextBoxColumn6
  853. //
  854. this.dataGridViewTextBoxColumn6.DataPropertyName = "si_expression";
  855. this.dataGridViewTextBoxColumn6.HeaderText = "DateCode";
  856. this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
  857. this.dataGridViewTextBoxColumn6.ReadOnly = true;
  858. this.dataGridViewTextBoxColumn6.Visible = false;
  859. this.dataGridViewTextBoxColumn6.Width = 60;
  860. //
  861. // dataGridViewTextBoxColumn7
  862. //
  863. this.dataGridViewTextBoxColumn7.DataPropertyName = "bi_inqty";
  864. this.dataGridViewTextBoxColumn7.HeaderText = "数量";
  865. this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
  866. this.dataGridViewTextBoxColumn7.ReadOnly = true;
  867. this.dataGridViewTextBoxColumn7.Visible = false;
  868. this.dataGridViewTextBoxColumn7.Width = 80;
  869. //
  870. // dataGridViewTextBoxColumn8
  871. //
  872. this.dataGridViewTextBoxColumn8.DataPropertyName = "pib_cusbarcode";
  873. this.dataGridViewTextBoxColumn8.HeaderText = "唯一条码";
  874. this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
  875. this.dataGridViewTextBoxColumn8.ReadOnly = true;
  876. this.dataGridViewTextBoxColumn8.Width = 90;
  877. //
  878. // dataGridViewTextBoxColumn9
  879. //
  880. this.dataGridViewTextBoxColumn9.DataPropertyName = "pib_cusoutboxcode";
  881. this.dataGridViewTextBoxColumn9.HeaderText = "中盒号";
  882. this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
  883. this.dataGridViewTextBoxColumn9.ReadOnly = true;
  884. this.dataGridViewTextBoxColumn9.Width = 78;
  885. //
  886. // dataGridViewTextBoxColumn10
  887. //
  888. this.dataGridViewTextBoxColumn10.DataPropertyName = "DateCode1";
  889. this.dataGridViewTextBoxColumn10.HeaderText = "外箱号";
  890. this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
  891. this.dataGridViewTextBoxColumn10.Visible = false;
  892. this.dataGridViewTextBoxColumn10.Width = 108;
  893. //
  894. // dataGridViewTextBoxColumn11
  895. //
  896. this.dataGridViewTextBoxColumn11.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  897. this.dataGridViewTextBoxColumn11.DataPropertyName = "si_item";
  898. this.dataGridViewTextBoxColumn11.HeaderText = "采集项次";
  899. this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
  900. this.dataGridViewTextBoxColumn11.ReadOnly = true;
  901. //
  902. // dataGridViewTextBoxColumn12
  903. //
  904. this.dataGridViewTextBoxColumn12.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
  905. this.dataGridViewTextBoxColumn12.DataPropertyName = "si_kind";
  906. this.dataGridViewTextBoxColumn12.HeaderText = "解析方式";
  907. this.dataGridViewTextBoxColumn12.MinimumWidth = 160;
  908. this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
  909. this.dataGridViewTextBoxColumn12.ReadOnly = true;
  910. //
  911. // dataGridViewTextBoxColumn13
  912. //
  913. this.dataGridViewTextBoxColumn13.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
  914. this.dataGridViewTextBoxColumn13.DataPropertyName = "si_expression";
  915. this.dataGridViewTextBoxColumn13.HeaderText = "正则表达式";
  916. this.dataGridViewTextBoxColumn13.MinimumWidth = 160;
  917. this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
  918. this.dataGridViewTextBoxColumn13.ReadOnly = true;
  919. //
  920. // dataGridViewTextBoxColumn14
  921. //
  922. this.dataGridViewTextBoxColumn14.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
  923. this.dataGridViewTextBoxColumn14.DataPropertyName = "si_index";
  924. this.dataGridViewTextBoxColumn14.HeaderText = "起始位置";
  925. this.dataGridViewTextBoxColumn14.MinimumWidth = 160;
  926. this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
  927. this.dataGridViewTextBoxColumn14.ReadOnly = true;
  928. //
  929. // dataGridViewTextBoxColumn15
  930. //
  931. this.dataGridViewTextBoxColumn15.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  932. this.dataGridViewTextBoxColumn15.DataPropertyName = "si_length";
  933. this.dataGridViewTextBoxColumn15.HeaderText = "字符长度";
  934. this.dataGridViewTextBoxColumn15.MinimumWidth = 97;
  935. this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
  936. this.dataGridViewTextBoxColumn15.ReadOnly = true;
  937. this.dataGridViewTextBoxColumn15.Width = 97;
  938. //
  939. // dataGridViewTextBoxColumn16
  940. //
  941. this.dataGridViewTextBoxColumn16.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  942. this.dataGridViewTextBoxColumn16.DataPropertyName = "pib_outboxcode2";
  943. this.dataGridViewTextBoxColumn16.HeaderText = "外箱号";
  944. this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
  945. this.dataGridViewTextBoxColumn16.ReadOnly = true;
  946. this.dataGridViewTextBoxColumn16.Visible = false;
  947. this.dataGridViewTextBoxColumn16.Width = 90;
  948. //
  949. // dataGridViewTextBoxColumn17
  950. //
  951. this.dataGridViewTextBoxColumn17.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  952. this.dataGridViewTextBoxColumn17.DataPropertyName = "si_detno";
  953. this.dataGridViewTextBoxColumn17.HeaderText = "顺序";
  954. this.dataGridViewTextBoxColumn17.MinimumWidth = 50;
  955. this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
  956. this.dataGridViewTextBoxColumn17.ReadOnly = true;
  957. this.dataGridViewTextBoxColumn17.Width = 60;
  958. //
  959. // dataGridViewTextBoxColumn18
  960. //
  961. this.dataGridViewTextBoxColumn18.DataPropertyName = "si_index";
  962. this.dataGridViewTextBoxColumn18.HeaderText = "起始位置";
  963. this.dataGridViewTextBoxColumn18.MinimumWidth = 50;
  964. this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
  965. this.dataGridViewTextBoxColumn18.Visible = false;
  966. this.dataGridViewTextBoxColumn18.Width = 103;
  967. //
  968. // dataGridViewTextBoxColumn19
  969. //
  970. this.dataGridViewTextBoxColumn19.DataPropertyName = "si_kind";
  971. this.dataGridViewTextBoxColumn19.HeaderText = "解析方式";
  972. this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
  973. this.dataGridViewTextBoxColumn19.Visible = false;
  974. this.dataGridViewTextBoxColumn19.Width = 60;
  975. //
  976. // dataGridViewTextBoxColumn20
  977. //
  978. this.dataGridViewTextBoxColumn20.DataPropertyName = "si_indexstring";
  979. this.dataGridViewTextBoxColumn20.HeaderText = "索引字符";
  980. this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
  981. this.dataGridViewTextBoxColumn20.Visible = false;
  982. this.dataGridViewTextBoxColumn20.Width = 60;
  983. //
  984. // dataGridViewTextBoxColumn21
  985. //
  986. this.dataGridViewTextBoxColumn21.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  987. this.dataGridViewTextBoxColumn21.DataPropertyName = "si_length";
  988. this.dataGridViewTextBoxColumn21.HeaderText = "长度";
  989. this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
  990. this.dataGridViewTextBoxColumn21.ReadOnly = true;
  991. this.dataGridViewTextBoxColumn21.Visible = false;
  992. this.dataGridViewTextBoxColumn21.Width = 90;
  993. //
  994. // dataGridViewTextBoxColumn22
  995. //
  996. this.dataGridViewTextBoxColumn22.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  997. this.dataGridViewTextBoxColumn22.DataPropertyName = "si_expression";
  998. this.dataGridViewTextBoxColumn22.HeaderText = "正则表达式";
  999. this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
  1000. this.dataGridViewTextBoxColumn22.ReadOnly = true;
  1001. this.dataGridViewTextBoxColumn22.Visible = false;
  1002. this.dataGridViewTextBoxColumn22.Width = 90;
  1003. //
  1004. // dataGridViewTextBoxColumn23
  1005. //
  1006. this.dataGridViewTextBoxColumn23.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  1007. this.dataGridViewTextBoxColumn23.DataPropertyName = "si_item";
  1008. this.dataGridViewTextBoxColumn23.HeaderText = "采集项目";
  1009. this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
  1010. this.dataGridViewTextBoxColumn23.ReadOnly = true;
  1011. //
  1012. // dataGridViewTextBoxColumn24
  1013. //
  1014. this.dataGridViewTextBoxColumn24.DataPropertyName = "pd_piid";
  1015. this.dataGridViewTextBoxColumn24.HeaderText = "Column1";
  1016. this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
  1017. this.dataGridViewTextBoxColumn24.Visible = false;
  1018. //
  1019. // dataGridViewTextBoxColumn25
  1020. //
  1021. this.dataGridViewTextBoxColumn25.DataPropertyName = "combined";
  1022. this.dataGridViewTextBoxColumn25.HeaderText = "Column1";
  1023. this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
  1024. this.dataGridViewTextBoxColumn25.Visible = false;
  1025. //
  1026. // dataGridViewTextBoxColumn26
  1027. //
  1028. this.dataGridViewTextBoxColumn26.DataPropertyName = "pd_inoutno";
  1029. this.dataGridViewTextBoxColumn26.HeaderText = "Column1";
  1030. this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
  1031. this.dataGridViewTextBoxColumn26.Visible = false;
  1032. //
  1033. // dataGridViewTextBoxColumn27
  1034. //
  1035. this.dataGridViewTextBoxColumn27.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  1036. this.dataGridViewTextBoxColumn27.DataPropertyName = "pd_whcode";
  1037. this.dataGridViewTextBoxColumn27.HeaderText = "仓别";
  1038. this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
  1039. //
  1040. // dataGridViewTextBoxColumn28
  1041. //
  1042. this.dataGridViewTextBoxColumn28.DataPropertyName = "pjd_id";
  1043. this.dataGridViewTextBoxColumn28.HeaderText = "pjd_id";
  1044. this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
  1045. this.dataGridViewTextBoxColumn28.Visible = false;
  1046. //
  1047. // dataGridViewTextBoxColumn29
  1048. //
  1049. this.dataGridViewTextBoxColumn29.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  1050. this.dataGridViewTextBoxColumn29.DataPropertyName = "pd_custprodcode";
  1051. this.dataGridViewTextBoxColumn29.HeaderText = "客户料号";
  1052. this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
  1053. //
  1054. // dataGridViewTextBoxColumn30
  1055. //
  1056. this.dataGridViewTextBoxColumn30.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
  1057. this.dataGridViewTextBoxColumn30.DataPropertyName = "pd_pocode";
  1058. this.dataGridViewTextBoxColumn30.HeaderText = "客户PO";
  1059. this.dataGridViewTextBoxColumn30.MinimumWidth = 200;
  1060. this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
  1061. //
  1062. // dataGridViewTextBoxColumn31
  1063. //
  1064. this.dataGridViewTextBoxColumn31.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
  1065. this.dataGridViewTextBoxColumn31.DataPropertyName = "pd_prodcode";
  1066. this.dataGridViewTextBoxColumn31.HeaderText = "物料编号";
  1067. this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
  1068. this.dataGridViewTextBoxColumn31.ReadOnly = true;
  1069. //
  1070. // dataGridViewTextBoxColumn32
  1071. //
  1072. this.dataGridViewTextBoxColumn32.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
  1073. this.dataGridViewTextBoxColumn32.DataPropertyName = "CollectedNum";
  1074. this.dataGridViewTextBoxColumn32.HeaderText = "已采数";
  1075. this.dataGridViewTextBoxColumn32.Name = "dataGridViewTextBoxColumn32";
  1076. this.dataGridViewTextBoxColumn32.ReadOnly = true;
  1077. //
  1078. // dataGridViewTextBoxColumn33
  1079. //
  1080. this.dataGridViewTextBoxColumn33.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
  1081. this.dataGridViewTextBoxColumn33.DataPropertyName = "UnCollectedNum";
  1082. this.dataGridViewTextBoxColumn33.HeaderText = "未采集";
  1083. this.dataGridViewTextBoxColumn33.Name = "dataGridViewTextBoxColumn33";
  1084. this.dataGridViewTextBoxColumn33.ReadOnly = true;
  1085. this.dataGridViewTextBoxColumn33.Visible = false;
  1086. //
  1087. // dataGridViewTextBoxColumn34
  1088. //
  1089. this.dataGridViewTextBoxColumn34.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
  1090. this.dataGridViewTextBoxColumn34.DataPropertyName = "pd_outqty";
  1091. this.dataGridViewTextBoxColumn34.HeaderText = "出库数量";
  1092. this.dataGridViewTextBoxColumn34.Name = "dataGridViewTextBoxColumn34";
  1093. this.dataGridViewTextBoxColumn34.ReadOnly = true;
  1094. this.dataGridViewTextBoxColumn34.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  1095. //
  1096. // dataGridViewTextBoxColumn35
  1097. //
  1098. this.dataGridViewTextBoxColumn35.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
  1099. this.dataGridViewTextBoxColumn35.DataPropertyName = "pr_unit";
  1100. this.dataGridViewTextBoxColumn35.HeaderText = "单位";
  1101. this.dataGridViewTextBoxColumn35.MinimumWidth = 64;
  1102. this.dataGridViewTextBoxColumn35.Name = "dataGridViewTextBoxColumn35";
  1103. this.dataGridViewTextBoxColumn35.ReadOnly = true;
  1104. this.dataGridViewTextBoxColumn35.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  1105. //
  1106. // dataGridViewTextBoxColumn36
  1107. //
  1108. this.dataGridViewTextBoxColumn36.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  1109. this.dataGridViewTextBoxColumn36.DataPropertyName = "pd_brand";
  1110. this.dataGridViewTextBoxColumn36.HeaderText = "品牌";
  1111. this.dataGridViewTextBoxColumn36.Name = "dataGridViewTextBoxColumn36";
  1112. this.dataGridViewTextBoxColumn36.ReadOnly = true;
  1113. this.dataGridViewTextBoxColumn36.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  1114. //
  1115. // dataGridViewTextBoxColumn37
  1116. //
  1117. this.dataGridViewTextBoxColumn37.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1118. this.dataGridViewTextBoxColumn37.DataPropertyName = "pjd_zxbzs_user";
  1119. this.dataGridViewTextBoxColumn37.HeaderText = "最小包装";
  1120. this.dataGridViewTextBoxColumn37.MinimumWidth = 80;
  1121. this.dataGridViewTextBoxColumn37.Name = "dataGridViewTextBoxColumn37";
  1122. this.dataGridViewTextBoxColumn37.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  1123. //
  1124. // dataGridViewTextBoxColumn38
  1125. //
  1126. this.dataGridViewTextBoxColumn38.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1127. this.dataGridViewTextBoxColumn38.DataPropertyName = "pr_spec";
  1128. this.dataGridViewTextBoxColumn38.HeaderText = "规格";
  1129. this.dataGridViewTextBoxColumn38.MinimumWidth = 250;
  1130. this.dataGridViewTextBoxColumn38.Name = "dataGridViewTextBoxColumn38";
  1131. this.dataGridViewTextBoxColumn38.Width = 250;
  1132. //
  1133. // dataGridViewTextBoxColumn39
  1134. //
  1135. this.dataGridViewTextBoxColumn39.DataPropertyName = "checknum";
  1136. this.dataGridViewTextBoxColumn39.HeaderText = "复核数量";
  1137. this.dataGridViewTextBoxColumn39.Name = "dataGridViewTextBoxColumn39";
  1138. //
  1139. // richTextAutoBottom1
  1140. //
  1141. this.richTextAutoBottom1.Location = new System.Drawing.Point(12, 1460);
  1142. this.richTextAutoBottom1.Margin = new System.Windows.Forms.Padding(4);
  1143. this.richTextAutoBottom1.Name = "richTextAutoBottom1";
  1144. this.richTextAutoBottom1.Size = new System.Drawing.Size(2532, 156);
  1145. this.richTextAutoBottom1.TabIndex = 119;
  1146. this.richTextAutoBottom1.Text = "";
  1147. //
  1148. // groupBoxWithBorder2
  1149. //
  1150. this.groupBoxWithBorder2.Controls.Add(this.ButtonMidWeigh);
  1151. this.groupBoxWithBorder2.Controls.Add(this.CloseSerialPort);
  1152. this.groupBoxWithBorder2.Controls.Add(this.ConnectCom);
  1153. this.groupBoxWithBorder2.Controls.Add(this.ButtonWeigh);
  1154. this.groupBoxWithBorder2.Controls.Add(this.Weight);
  1155. this.groupBoxWithBorder2.Location = new System.Drawing.Point(2248, 444);
  1156. this.groupBoxWithBorder2.Margin = new System.Windows.Forms.Padding(4);
  1157. this.groupBoxWithBorder2.Name = "groupBoxWithBorder2";
  1158. this.groupBoxWithBorder2.Padding = new System.Windows.Forms.Padding(4);
  1159. this.groupBoxWithBorder2.Size = new System.Drawing.Size(296, 310);
  1160. this.groupBoxWithBorder2.TabIndex = 113;
  1161. this.groupBoxWithBorder2.TabStop = false;
  1162. this.groupBoxWithBorder2.Text = "称重";
  1163. //
  1164. // ButtonMidWeigh
  1165. //
  1166. this.ButtonMidWeigh.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1167. this.ButtonMidWeigh.Location = new System.Drawing.Point(9, 250);
  1168. this.ButtonMidWeigh.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1169. this.ButtonMidWeigh.Name = "ButtonMidWeigh";
  1170. this.ButtonMidWeigh.Size = new System.Drawing.Size(132, 52);
  1171. this.ButtonMidWeigh.TabIndex = 116;
  1172. this.ButtonMidWeigh.Text = "称重中盒";
  1173. this.ButtonMidWeigh.UseVisualStyleBackColor = true;
  1174. this.ButtonMidWeigh.Click += new System.EventHandler(this.ButtonMidWeigh_Click);
  1175. //
  1176. // CloseSerialPort
  1177. //
  1178. this.CloseSerialPort.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1179. this.CloseSerialPort.Location = new System.Drawing.Point(176, 186);
  1180. this.CloseSerialPort.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1181. this.CloseSerialPort.Name = "CloseSerialPort";
  1182. this.CloseSerialPort.Size = new System.Drawing.Size(110, 52);
  1183. this.CloseSerialPort.TabIndex = 115;
  1184. this.CloseSerialPort.Text = "关闭";
  1185. this.CloseSerialPort.UseVisualStyleBackColor = true;
  1186. this.CloseSerialPort.Click += new System.EventHandler(this.CloseSerialPort_Click);
  1187. //
  1188. // ConnectCom
  1189. //
  1190. this.ConnectCom.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1191. this.ConnectCom.Location = new System.Drawing.Point(9, 186);
  1192. this.ConnectCom.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1193. this.ConnectCom.Name = "ConnectCom";
  1194. this.ConnectCom.Size = new System.Drawing.Size(160, 52);
  1195. this.ConnectCom.TabIndex = 114;
  1196. this.ConnectCom.Text = "连接电子秤";
  1197. this.ConnectCom.UseVisualStyleBackColor = true;
  1198. this.ConnectCom.Click += new System.EventHandler(this.ConnectCom_Click);
  1199. //
  1200. // ButtonWeigh
  1201. //
  1202. this.ButtonWeigh.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1203. this.ButtonWeigh.Location = new System.Drawing.Point(147, 250);
  1204. this.ButtonWeigh.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1205. this.ButtonWeigh.Name = "ButtonWeigh";
  1206. this.ButtonWeigh.Size = new System.Drawing.Size(132, 52);
  1207. this.ButtonWeigh.TabIndex = 97;
  1208. this.ButtonWeigh.Text = "称量箱重";
  1209. this.ButtonWeigh.UseVisualStyleBackColor = true;
  1210. this.ButtonWeigh.Click += new System.EventHandler(this.ButtonWeigh_Click);
  1211. //
  1212. // Weight
  1213. //
  1214. this.Weight.AutoSize = true;
  1215. this.Weight.Font = new System.Drawing.Font("微软雅黑", 30F);
  1216. this.Weight.ForeColor = System.Drawing.Color.Red;
  1217. this.Weight.Location = new System.Drawing.Point(36, 84);
  1218. this.Weight.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  1219. this.Weight.Name = "Weight";
  1220. this.Weight.Size = new System.Drawing.Size(0, 104);
  1221. this.Weight.TabIndex = 113;
  1222. //
  1223. // DCCheck
  1224. //
  1225. this.DCCheck.ID = null;
  1226. this.DCCheck.Location = new System.Drawing.Point(174, 340);
  1227. this.DCCheck.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1228. this.DCCheck.Name = "DCCheck";
  1229. this.DCCheck.Size = new System.Drawing.Size(116, 35);
  1230. this.DCCheck.Str = null;
  1231. this.DCCheck.Str1 = null;
  1232. this.DCCheck.Str2 = null;
  1233. this.DCCheck.TabIndex = 94;
  1234. this.DCCheck.Leave += new System.EventHandler(this.DCCheck_Leave);
  1235. //
  1236. // GridPrcode
  1237. //
  1238. this.GridPrcode.AllowUserToAddRows = false;
  1239. this.GridPrcode.BackgroundColor = System.Drawing.SystemColors.Control;
  1240. this.GridPrcode.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1241. this.GridPrcode.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1242. this.pd_pdno,
  1243. this.pd_piid,
  1244. this.Column1,
  1245. this.pd_inoutno,
  1246. this.pd_whcode,
  1247. this.pjd_id,
  1248. this.pd_custprodcode1,
  1249. this.pd_pocode1,
  1250. this.pd_prodcode,
  1251. this.CollectedNum,
  1252. this.UnCollectedNum,
  1253. this.pd_outqty,
  1254. this.pr_unit,
  1255. this.pd_brand,
  1256. this.pjd_zxbzs_user,
  1257. this.pr_spec1,
  1258. this.checknum});
  1259. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1260. dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
  1261. dataGridViewCellStyle1.Font = new System.Drawing.Font("微软雅黑", 12.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1262. dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
  1263. dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.ControlDark;
  1264. dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
  1265. dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1266. this.GridPrcode.DefaultCellStyle = dataGridViewCellStyle1;
  1267. this.GridPrcode.GridColor = System.Drawing.SystemColors.Control;
  1268. this.GridPrcode.Location = new System.Drawing.Point(0, 444);
  1269. this.GridPrcode.Margin = new System.Windows.Forms.Padding(6);
  1270. this.GridPrcode.MultiSelect = false;
  1271. this.GridPrcode.Name = "GridPrcode";
  1272. this.GridPrcode.RowTemplate.Height = 23;
  1273. this.GridPrcode.Size = new System.Drawing.Size(2238, 316);
  1274. this.GridPrcode.TabIndex = 88;
  1275. this.GridPrcode.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridPrcode_CellClick);
  1276. this.GridPrcode.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridPrcode_CellEndEdit);
  1277. this.GridPrcode.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.GridPrcode_CellMouseUp);
  1278. this.GridPrcode.CellPainting += new System.Windows.Forms.DataGridViewCellPaintingEventHandler(this.GridPrcode_CellPainting);
  1279. this.GridPrcode.SelectionChanged += new System.EventHandler(this.GridPrcode_SelectionChanged);
  1280. //
  1281. // pd_pdno
  1282. //
  1283. this.pd_pdno.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  1284. this.pd_pdno.DataPropertyName = "pd_pdno";
  1285. this.pd_pdno.HeaderText = "序号";
  1286. this.pd_pdno.Name = "pd_pdno";
  1287. this.pd_pdno.ReadOnly = true;
  1288. this.pd_pdno.Width = 103;
  1289. //
  1290. // pd_piid
  1291. //
  1292. this.pd_piid.DataPropertyName = "pd_piid";
  1293. this.pd_piid.HeaderText = "Column1";
  1294. this.pd_piid.Name = "pd_piid";
  1295. this.pd_piid.Visible = false;
  1296. //
  1297. // Column1
  1298. //
  1299. this.Column1.DataPropertyName = "combined";
  1300. this.Column1.HeaderText = "Column1";
  1301. this.Column1.Name = "Column1";
  1302. this.Column1.Visible = false;
  1303. //
  1304. // pd_inoutno
  1305. //
  1306. this.pd_inoutno.DataPropertyName = "pd_inoutno";
  1307. this.pd_inoutno.HeaderText = "Column1";
  1308. this.pd_inoutno.Name = "pd_inoutno";
  1309. this.pd_inoutno.Visible = false;
  1310. //
  1311. // pd_whcode
  1312. //
  1313. this.pd_whcode.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  1314. this.pd_whcode.DataPropertyName = "pd_whcode";
  1315. this.pd_whcode.HeaderText = "仓别";
  1316. this.pd_whcode.Name = "pd_whcode";
  1317. this.pd_whcode.Width = 103;
  1318. //
  1319. // pjd_id
  1320. //
  1321. this.pjd_id.DataPropertyName = "pjd_id";
  1322. this.pjd_id.HeaderText = "pjd_id";
  1323. this.pjd_id.Name = "pjd_id";
  1324. this.pjd_id.Visible = false;
  1325. //
  1326. // pd_custprodcode1
  1327. //
  1328. this.pd_custprodcode1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
  1329. this.pd_custprodcode1.DataPropertyName = "pd_custprodcode";
  1330. this.pd_custprodcode1.HeaderText = "客户料号";
  1331. this.pd_custprodcode1.Name = "pd_custprodcode1";
  1332. this.pd_custprodcode1.Width = 151;
  1333. //
  1334. // pd_pocode1
  1335. //
  1336. this.pd_pocode1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
  1337. this.pd_pocode1.DataPropertyName = "pd_pocode";
  1338. this.pd_pocode1.HeaderText = "客户PO";
  1339. this.pd_pocode1.MinimumWidth = 200;
  1340. this.pd_pocode1.Name = "pd_pocode1";
  1341. this.pd_pocode1.Width = 200;
  1342. //
  1343. // pd_prodcode
  1344. //
  1345. this.pd_prodcode.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
  1346. this.pd_prodcode.DataPropertyName = "pd_prodcode";
  1347. this.pd_prodcode.HeaderText = "物料编号";
  1348. this.pd_prodcode.Name = "pd_prodcode";
  1349. this.pd_prodcode.ReadOnly = true;
  1350. this.pd_prodcode.Width = 151;
  1351. //
  1352. // CollectedNum
  1353. //
  1354. this.CollectedNum.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
  1355. this.CollectedNum.DataPropertyName = "CollectedNum";
  1356. this.CollectedNum.HeaderText = "已采数";
  1357. this.CollectedNum.Name = "CollectedNum";
  1358. this.CollectedNum.ReadOnly = true;
  1359. this.CollectedNum.Width = 127;
  1360. //
  1361. // UnCollectedNum
  1362. //
  1363. this.UnCollectedNum.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
  1364. this.UnCollectedNum.DataPropertyName = "UnCollectedNum";
  1365. this.UnCollectedNum.HeaderText = "未采集";
  1366. this.UnCollectedNum.Name = "UnCollectedNum";
  1367. this.UnCollectedNum.ReadOnly = true;
  1368. this.UnCollectedNum.Visible = false;
  1369. //
  1370. // pd_outqty
  1371. //
  1372. this.pd_outqty.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
  1373. this.pd_outqty.DataPropertyName = "pd_outqty";
  1374. this.pd_outqty.HeaderText = "出库数量";
  1375. this.pd_outqty.Name = "pd_outqty";
  1376. this.pd_outqty.ReadOnly = true;
  1377. this.pd_outqty.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  1378. this.pd_outqty.Width = 112;
  1379. //
  1380. // pr_unit
  1381. //
  1382. this.pr_unit.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
  1383. this.pr_unit.DataPropertyName = "pr_unit";
  1384. this.pr_unit.HeaderText = "单位";
  1385. this.pr_unit.MinimumWidth = 64;
  1386. this.pr_unit.Name = "pr_unit";
  1387. this.pr_unit.ReadOnly = true;
  1388. this.pr_unit.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  1389. this.pr_unit.Width = 64;
  1390. //
  1391. // pd_brand
  1392. //
  1393. this.pd_brand.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  1394. this.pd_brand.DataPropertyName = "pd_brand";
  1395. this.pd_brand.HeaderText = "品牌";
  1396. this.pd_brand.Name = "pd_brand";
  1397. this.pd_brand.ReadOnly = true;
  1398. this.pd_brand.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  1399. this.pd_brand.Width = 64;
  1400. //
  1401. // pjd_zxbzs_user
  1402. //
  1403. this.pjd_zxbzs_user.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1404. this.pjd_zxbzs_user.DataPropertyName = "pjd_zxbzs_user";
  1405. this.pjd_zxbzs_user.HeaderText = "最小包装";
  1406. this.pjd_zxbzs_user.MinimumWidth = 80;
  1407. this.pjd_zxbzs_user.Name = "pjd_zxbzs_user";
  1408. this.pjd_zxbzs_user.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  1409. //
  1410. // pr_spec1
  1411. //
  1412. this.pr_spec1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1413. this.pr_spec1.DataPropertyName = "pr_spec";
  1414. this.pr_spec1.HeaderText = "规格";
  1415. this.pr_spec1.MinimumWidth = 250;
  1416. this.pr_spec1.Name = "pr_spec1";
  1417. this.pr_spec1.Width = 250;
  1418. //
  1419. // checknum
  1420. //
  1421. this.checknum.DataPropertyName = "checknum";
  1422. this.checknum.HeaderText = "复核数量";
  1423. this.checknum.Name = "checknum";
  1424. //
  1425. // groupBoxWithBorder1
  1426. //
  1427. this.groupBoxWithBorder1.Controls.Add(this.ResetHBXH);
  1428. this.groupBoxWithBorder1.Controls.Add(this.label18);
  1429. this.groupBoxWithBorder1.Controls.Add(this.MidBoxEnd);
  1430. this.groupBoxWithBorder1.Controls.Add(this.MidBoxBegin);
  1431. this.groupBoxWithBorder1.Controls.Add(this.label16);
  1432. this.groupBoxWithBorder1.Controls.Add(this.SingleBoxEnd);
  1433. this.groupBoxWithBorder1.Controls.Add(this.SingleBoxBegin);
  1434. this.groupBoxWithBorder1.Controls.Add(this.label12);
  1435. this.groupBoxWithBorder1.Controls.Add(this.label7);
  1436. this.groupBoxWithBorder1.Location = new System.Drawing.Point(1150, 12);
  1437. this.groupBoxWithBorder1.Margin = new System.Windows.Forms.Padding(4);
  1438. this.groupBoxWithBorder1.Name = "groupBoxWithBorder1";
  1439. this.groupBoxWithBorder1.Padding = new System.Windows.Forms.Padding(4);
  1440. this.groupBoxWithBorder1.Size = new System.Drawing.Size(280, 422);
  1441. this.groupBoxWithBorder1.TabIndex = 81;
  1442. this.groupBoxWithBorder1.TabStop = false;
  1443. this.groupBoxWithBorder1.Text = " 打印参数设置";
  1444. //
  1445. // ResetHBXH
  1446. //
  1447. this.ResetHBXH.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1448. this.ResetHBXH.Location = new System.Drawing.Point(80, 354);
  1449. this.ResetHBXH.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1450. this.ResetHBXH.Name = "ResetHBXH";
  1451. this.ResetHBXH.Size = new System.Drawing.Size(184, 52);
  1452. this.ResetHBXH.TabIndex = 112;
  1453. this.ResetHBXH.Text = "重置合并序号";
  1454. this.ResetHBXH.UseVisualStyleBackColor = true;
  1455. this.ResetHBXH.Click += new System.EventHandler(this.ResetHBXH_Click);
  1456. //
  1457. // label18
  1458. //
  1459. this.label18.AutoSize = true;
  1460. this.label18.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1461. this.label18.Location = new System.Drawing.Point(136, 252);
  1462. this.label18.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  1463. this.label18.Name = "label18";
  1464. this.label18.Size = new System.Drawing.Size(24, 31);
  1465. this.label18.TabIndex = 90;
  1466. this.label18.Text = "-";
  1467. //
  1468. // MidBoxEnd
  1469. //
  1470. this.MidBoxEnd.ID = null;
  1471. this.MidBoxEnd.Location = new System.Drawing.Point(166, 242);
  1472. this.MidBoxEnd.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1473. this.MidBoxEnd.Name = "MidBoxEnd";
  1474. this.MidBoxEnd.Size = new System.Drawing.Size(96, 35);
  1475. this.MidBoxEnd.Str = null;
  1476. this.MidBoxEnd.Str1 = null;
  1477. this.MidBoxEnd.Str2 = null;
  1478. this.MidBoxEnd.TabIndex = 89;
  1479. //
  1480. // MidBoxBegin
  1481. //
  1482. this.MidBoxBegin.ID = null;
  1483. this.MidBoxBegin.Location = new System.Drawing.Point(16, 242);
  1484. this.MidBoxBegin.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1485. this.MidBoxBegin.Name = "MidBoxBegin";
  1486. this.MidBoxBegin.Size = new System.Drawing.Size(96, 35);
  1487. this.MidBoxBegin.Str = null;
  1488. this.MidBoxBegin.Str1 = null;
  1489. this.MidBoxBegin.Str2 = null;
  1490. this.MidBoxBegin.TabIndex = 88;
  1491. //
  1492. // label16
  1493. //
  1494. this.label16.AutoSize = true;
  1495. this.label16.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1496. this.label16.Location = new System.Drawing.Point(133, 125);
  1497. this.label16.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  1498. this.label16.Name = "label16";
  1499. this.label16.Size = new System.Drawing.Size(24, 31);
  1500. this.label16.TabIndex = 87;
  1501. this.label16.Text = "-";
  1502. //
  1503. // SingleBoxEnd
  1504. //
  1505. this.SingleBoxEnd.ID = null;
  1506. this.SingleBoxEnd.Location = new System.Drawing.Point(164, 118);
  1507. this.SingleBoxEnd.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1508. this.SingleBoxEnd.Name = "SingleBoxEnd";
  1509. this.SingleBoxEnd.Size = new System.Drawing.Size(96, 35);
  1510. this.SingleBoxEnd.Str = null;
  1511. this.SingleBoxEnd.Str1 = null;
  1512. this.SingleBoxEnd.Str2 = null;
  1513. this.SingleBoxEnd.TabIndex = 86;
  1514. //
  1515. // SingleBoxBegin
  1516. //
  1517. this.SingleBoxBegin.ID = null;
  1518. this.SingleBoxBegin.Location = new System.Drawing.Point(14, 116);
  1519. this.SingleBoxBegin.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1520. this.SingleBoxBegin.Name = "SingleBoxBegin";
  1521. this.SingleBoxBegin.Size = new System.Drawing.Size(96, 35);
  1522. this.SingleBoxBegin.Str = null;
  1523. this.SingleBoxBegin.Str1 = null;
  1524. this.SingleBoxBegin.Str2 = null;
  1525. this.SingleBoxBegin.TabIndex = 85;
  1526. //
  1527. // label12
  1528. //
  1529. this.label12.AutoSize = true;
  1530. this.label12.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1531. this.label12.Location = new System.Drawing.Point(36, 200);
  1532. this.label12.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  1533. this.label12.Name = "label12";
  1534. this.label12.Size = new System.Drawing.Size(110, 31);
  1535. this.label12.TabIndex = 77;
  1536. this.label12.Text = "中盒范围";
  1537. //
  1538. // label7
  1539. //
  1540. this.label7.AutoSize = true;
  1541. this.label7.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1542. this.label7.Location = new System.Drawing.Point(32, 76);
  1543. this.label7.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  1544. this.label7.Name = "label7";
  1545. this.label7.Size = new System.Drawing.Size(110, 31);
  1546. this.label7.TabIndex = 76;
  1547. this.label7.Text = "单盘范围";
  1548. //
  1549. // Input
  1550. //
  1551. this.Input.ID = null;
  1552. this.Input.Location = new System.Drawing.Point(172, 192);
  1553. this.Input.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1554. this.Input.Multiline = true;
  1555. this.Input.Name = "Input";
  1556. this.Input.Size = new System.Drawing.Size(296, 132);
  1557. this.Input.Str = null;
  1558. this.Input.Str1 = null;
  1559. this.Input.Str2 = null;
  1560. this.Input.TabIndex = 54;
  1561. this.Input.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Input_KeyDown);
  1562. this.Input.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Input_KeyUp);
  1563. //
  1564. // LabelInf
  1565. //
  1566. this.LabelInf.AllowUserToAddRows = false;
  1567. this.LabelInf.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
  1568. this.LabelInf.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
  1569. this.LabelInf.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1570. this.LabelInf.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1571. this.Choose,
  1572. this.pib_ifprint,
  1573. this.pib_midifprint,
  1574. this.pib_id1,
  1575. this.pib_pdno,
  1576. this.pib_prodcode,
  1577. this.pd_custprodcode,
  1578. this.pjd_orispeccode,
  1579. this.pib_brand,
  1580. this.pr_zxbzs,
  1581. this.pib_lotno,
  1582. this.pib_datecode,
  1583. this.DateCode1,
  1584. this.pib_qty,
  1585. this.pib_custbarcode,
  1586. this.pib_custmidboxcode,
  1587. this.pib_custoutboxcode,
  1588. this.pd_pocode,
  1589. this.pr_spec,
  1590. this.pib_midboxweight,
  1591. this.pib_boxweight,
  1592. this.pib_totalweight,
  1593. this.pd_remark,
  1594. this.pd_remark2,
  1595. this.pib_outboxcode1,
  1596. this.pib_outboxcode2});
  1597. this.LabelInf.Location = new System.Drawing.Point(0, 762);
  1598. this.LabelInf.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1599. this.LabelInf.Name = "LabelInf";
  1600. this.LabelInf.RowTemplate.Height = 23;
  1601. this.LabelInf.Size = new System.Drawing.Size(2544, 692);
  1602. this.LabelInf.TabIndex = 27;
  1603. this.LabelInf.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.LabelInf_CellClick);
  1604. this.LabelInf.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.LabelInf_DataError);
  1605. this.LabelInf.SelectionChanged += new System.EventHandler(this.LabelInf_SelectionChanged);
  1606. //
  1607. // Choose
  1608. //
  1609. this.Choose.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1610. this.Choose.HeaderText = "勾选";
  1611. this.Choose.Name = "Choose";
  1612. this.Choose.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1613. this.Choose.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1614. this.Choose.Width = 55;
  1615. //
  1616. // pib_ifprint
  1617. //
  1618. this.pib_ifprint.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1619. this.pib_ifprint.DataPropertyName = "pib_ifprint";
  1620. this.pib_ifprint.HeaderText = "已打印";
  1621. this.pib_ifprint.Name = "pib_ifprint";
  1622. this.pib_ifprint.Width = 60;
  1623. //
  1624. // pib_midifprint
  1625. //
  1626. this.pib_midifprint.DataPropertyName = "pib_midifprint";
  1627. this.pib_midifprint.HeaderText = "中盒已打印";
  1628. this.pib_midifprint.Name = "pib_midifprint";
  1629. this.pib_midifprint.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1630. this.pib_midifprint.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1631. this.pib_midifprint.Visible = false;
  1632. this.pib_midifprint.Width = 118;
  1633. //
  1634. // pib_id1
  1635. //
  1636. this.pib_id1.DataPropertyName = "pib_id";
  1637. this.pib_id1.HeaderText = "pib_id";
  1638. this.pib_id1.Name = "pib_id1";
  1639. this.pib_id1.Visible = false;
  1640. this.pib_id1.Width = 127;
  1641. //
  1642. // pib_pdno
  1643. //
  1644. this.pib_pdno.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1645. this.pib_pdno.DataPropertyName = "pib_pdno";
  1646. this.pib_pdno.HeaderText = "序号";
  1647. this.pib_pdno.Name = "pib_pdno";
  1648. this.pib_pdno.ReadOnly = true;
  1649. this.pib_pdno.Width = 55;
  1650. //
  1651. // pib_prodcode
  1652. //
  1653. this.pib_prodcode.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1654. this.pib_prodcode.DataPropertyName = "pib_prodcode";
  1655. this.pib_prodcode.HeaderText = "物料编号";
  1656. this.pib_prodcode.MinimumWidth = 120;
  1657. this.pib_prodcode.Name = "pib_prodcode";
  1658. this.pib_prodcode.ReadOnly = true;
  1659. this.pib_prodcode.Width = 120;
  1660. //
  1661. // pd_custprodcode
  1662. //
  1663. this.pd_custprodcode.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1664. this.pd_custprodcode.DataPropertyName = "pd_custprodcode";
  1665. this.pd_custprodcode.HeaderText = "CPN";
  1666. this.pd_custprodcode.MinimumWidth = 120;
  1667. this.pd_custprodcode.Name = "pd_custprodcode";
  1668. this.pd_custprodcode.Width = 120;
  1669. //
  1670. // pjd_orispeccode
  1671. //
  1672. this.pjd_orispeccode.DataPropertyName = "pjd_orispeccode";
  1673. this.pjd_orispeccode.HeaderText = "MPN";
  1674. this.pjd_orispeccode.Name = "pjd_orispeccode";
  1675. this.pjd_orispeccode.ReadOnly = true;
  1676. this.pjd_orispeccode.Visible = false;
  1677. this.pjd_orispeccode.Width = 91;
  1678. //
  1679. // pib_brand
  1680. //
  1681. this.pib_brand.DataPropertyName = "pib_brand";
  1682. this.pib_brand.HeaderText = "品牌";
  1683. this.pib_brand.Name = "pib_brand";
  1684. this.pib_brand.ReadOnly = true;
  1685. this.pib_brand.Width = 103;
  1686. //
  1687. // pr_zxbzs
  1688. //
  1689. this.pr_zxbzs.DataPropertyName = "pr_zxbzs";
  1690. this.pr_zxbzs.HeaderText = "最小包装数";
  1691. this.pr_zxbzs.Name = "pr_zxbzs";
  1692. this.pr_zxbzs.ReadOnly = true;
  1693. this.pr_zxbzs.Visible = false;
  1694. this.pr_zxbzs.Width = 118;
  1695. //
  1696. // pib_lotno
  1697. //
  1698. this.pib_lotno.DataPropertyName = "pib_lotno";
  1699. this.pib_lotno.HeaderText = "LotNo";
  1700. this.pib_lotno.Name = "pib_lotno";
  1701. this.pib_lotno.ReadOnly = true;
  1702. this.pib_lotno.Width = 115;
  1703. //
  1704. // pib_datecode
  1705. //
  1706. this.pib_datecode.DataPropertyName = "pib_datecode";
  1707. this.pib_datecode.HeaderText = "DateCode";
  1708. this.pib_datecode.Name = "pib_datecode";
  1709. this.pib_datecode.ReadOnly = true;
  1710. this.pib_datecode.Width = 151;
  1711. //
  1712. // DateCode1
  1713. //
  1714. this.DateCode1.DataPropertyName = "DateCode1";
  1715. this.DateCode1.HeaderText = "DateCode1";
  1716. this.DateCode1.Name = "DateCode1";
  1717. this.DateCode1.Visible = false;
  1718. this.DateCode1.Width = 163;
  1719. //
  1720. // pib_qty
  1721. //
  1722. this.pib_qty.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  1723. this.pib_qty.DataPropertyName = "pib_qty";
  1724. this.pib_qty.HeaderText = "数量";
  1725. this.pib_qty.Name = "pib_qty";
  1726. this.pib_qty.ReadOnly = true;
  1727. this.pib_qty.Width = 103;
  1728. //
  1729. // pib_custbarcode
  1730. //
  1731. this.pib_custbarcode.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
  1732. this.pib_custbarcode.DataPropertyName = "pib_custbarcode";
  1733. this.pib_custbarcode.HeaderText = "料盘条码";
  1734. this.pib_custbarcode.MinimumWidth = 160;
  1735. this.pib_custbarcode.Name = "pib_custbarcode";
  1736. this.pib_custbarcode.ReadOnly = true;
  1737. this.pib_custbarcode.Width = 160;
  1738. //
  1739. // pib_custmidboxcode
  1740. //
  1741. this.pib_custmidboxcode.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
  1742. this.pib_custmidboxcode.DataPropertyName = "pib_custmidboxcode";
  1743. this.pib_custmidboxcode.HeaderText = "中盒条码";
  1744. this.pib_custmidboxcode.MinimumWidth = 160;
  1745. this.pib_custmidboxcode.Name = "pib_custmidboxcode";
  1746. this.pib_custmidboxcode.ReadOnly = true;
  1747. this.pib_custmidboxcode.Width = 160;
  1748. //
  1749. // pib_custoutboxcode
  1750. //
  1751. this.pib_custoutboxcode.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
  1752. this.pib_custoutboxcode.DataPropertyName = "pib_custoutboxcode";
  1753. this.pib_custoutboxcode.HeaderText = "外箱条码";
  1754. this.pib_custoutboxcode.MinimumWidth = 160;
  1755. this.pib_custoutboxcode.Name = "pib_custoutboxcode";
  1756. this.pib_custoutboxcode.ReadOnly = true;
  1757. this.pib_custoutboxcode.Width = 160;
  1758. //
  1759. // pd_pocode
  1760. //
  1761. this.pd_pocode.DataPropertyName = "pd_pocode";
  1762. this.pd_pocode.HeaderText = "客户PO";
  1763. this.pd_pocode.MinimumWidth = 97;
  1764. this.pd_pocode.Name = "pd_pocode";
  1765. this.pd_pocode.ReadOnly = true;
  1766. this.pd_pocode.Width = 127;
  1767. //
  1768. // pr_spec
  1769. //
  1770. this.pr_spec.DataPropertyName = "pr_spec";
  1771. this.pr_spec.HeaderText = "规格";
  1772. this.pr_spec.Name = "pr_spec";
  1773. this.pr_spec.ReadOnly = true;
  1774. this.pr_spec.Visible = false;
  1775. this.pr_spec.Width = 97;
  1776. //
  1777. // pib_midboxweight
  1778. //
  1779. this.pib_midboxweight.DataPropertyName = "pib_midboxweight";
  1780. this.pib_midboxweight.HeaderText = "中盒重量";
  1781. this.pib_midboxweight.Name = "pib_midboxweight";
  1782. this.pib_midboxweight.Width = 151;
  1783. //
  1784. // pib_boxweight
  1785. //
  1786. this.pib_boxweight.DataPropertyName = "pib_boxweight";
  1787. this.pib_boxweight.HeaderText = "箱重";
  1788. this.pib_boxweight.MinimumWidth = 50;
  1789. this.pib_boxweight.Name = "pib_boxweight";
  1790. this.pib_boxweight.Width = 103;
  1791. //
  1792. // pib_totalweight
  1793. //
  1794. this.pib_totalweight.DataPropertyName = "pib_totalweight";
  1795. this.pib_totalweight.HeaderText = "总重";
  1796. this.pib_totalweight.MinimumWidth = 50;
  1797. this.pib_totalweight.Name = "pib_totalweight";
  1798. this.pib_totalweight.Width = 103;
  1799. //
  1800. // pd_remark
  1801. //
  1802. this.pd_remark.DataPropertyName = "pd_remark";
  1803. this.pd_remark.HeaderText = "备注1";
  1804. this.pd_remark.Name = "pd_remark";
  1805. this.pd_remark.Visible = false;
  1806. this.pd_remark.Width = 86;
  1807. //
  1808. // pd_remark2
  1809. //
  1810. this.pd_remark2.DataPropertyName = "pd_remark2";
  1811. this.pd_remark2.HeaderText = "备注2";
  1812. this.pd_remark2.Name = "pd_remark2";
  1813. this.pd_remark2.Visible = false;
  1814. this.pd_remark2.Width = 86;
  1815. //
  1816. // pib_outboxcode1
  1817. //
  1818. this.pib_outboxcode1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1819. this.pib_outboxcode1.DataPropertyName = "pib_outboxcode1";
  1820. this.pib_outboxcode1.HeaderText = "中盒号";
  1821. this.pib_outboxcode1.Name = "pib_outboxcode1";
  1822. this.pib_outboxcode1.ReadOnly = true;
  1823. this.pib_outboxcode1.Width = 90;
  1824. //
  1825. // pib_outboxcode2
  1826. //
  1827. this.pib_outboxcode2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1828. this.pib_outboxcode2.DataPropertyName = "pib_outboxcode2";
  1829. this.pib_outboxcode2.HeaderText = "外箱号";
  1830. this.pib_outboxcode2.Name = "pib_outboxcode2";
  1831. this.pib_outboxcode2.ReadOnly = true;
  1832. this.pib_outboxcode2.Width = 90;
  1833. //
  1834. // pi_inoutno
  1835. //
  1836. this.pi_inoutno.ID = null;
  1837. this.pi_inoutno.Location = new System.Drawing.Point(172, 20);
  1838. this.pi_inoutno.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1839. this.pi_inoutno.Name = "pi_inoutno";
  1840. this.pi_inoutno.Size = new System.Drawing.Size(296, 35);
  1841. this.pi_inoutno.Str = null;
  1842. this.pi_inoutno.Str1 = null;
  1843. this.pi_inoutno.Str2 = null;
  1844. this.pi_inoutno.TabIndex = 2;
  1845. this.pi_inoutno.KeyDown += new System.Windows.Forms.KeyEventHandler(this.pi_inoutno_KeyDown);
  1846. //
  1847. // SingleLabel
  1848. //
  1849. this.SingleLabel.Controls.Add(this.label14);
  1850. this.SingleLabel.Controls.Add(this.CurrentOutBoxNum);
  1851. this.SingleLabel.Controls.Add(this.label13);
  1852. this.SingleLabel.Controls.Add(this.CurrentBoxNum);
  1853. this.SingleLabel.Controls.Add(this.SingleLabelPrinter);
  1854. this.SingleLabel.Controls.Add(this.SingleLabelPrint);
  1855. this.SingleLabel.Controls.Add(this.SingleLabelAutoPrint);
  1856. this.SingleLabel.Controls.Add(this.SingleLabelCombox);
  1857. this.SingleLabel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1858. this.SingleLabel.Location = new System.Drawing.Point(1436, 12);
  1859. this.SingleLabel.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1860. this.SingleLabel.Name = "SingleLabel";
  1861. this.SingleLabel.Padding = new System.Windows.Forms.Padding(4);
  1862. this.SingleLabel.Size = new System.Drawing.Size(332, 422);
  1863. this.SingleLabel.TabIndex = 77;
  1864. this.SingleLabel.TabStop = false;
  1865. this.SingleLabel.Text = "单盘标签";
  1866. //
  1867. // label14
  1868. //
  1869. this.label14.AutoSize = true;
  1870. this.label14.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1871. this.label14.Location = new System.Drawing.Point(36, 296);
  1872. this.label14.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  1873. this.label14.Name = "label14";
  1874. this.label14.Size = new System.Drawing.Size(155, 36);
  1875. this.label14.TabIndex = 121;
  1876. this.label14.Text = "当前箱数量";
  1877. //
  1878. // CurrentOutBoxNum
  1879. //
  1880. this.CurrentOutBoxNum.Location = new System.Drawing.Point(196, 284);
  1881. this.CurrentOutBoxNum.Margin = new System.Windows.Forms.Padding(6);
  1882. this.CurrentOutBoxNum.Name = "CurrentOutBoxNum";
  1883. this.CurrentOutBoxNum.Size = new System.Drawing.Size(104, 50);
  1884. this.CurrentOutBoxNum.TabIndex = 120;
  1885. this.CurrentOutBoxNum.KeyDown += new System.Windows.Forms.KeyEventHandler(this.CurrentOutBoxNum_KeyDown);
  1886. //
  1887. // label13
  1888. //
  1889. this.label13.AutoSize = true;
  1890. this.label13.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1891. this.label13.Location = new System.Drawing.Point(36, 240);
  1892. this.label13.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  1893. this.label13.Name = "label13";
  1894. this.label13.Size = new System.Drawing.Size(155, 36);
  1895. this.label13.TabIndex = 119;
  1896. this.label13.Text = "当前盒数量";
  1897. //
  1898. // CurrentBoxNum
  1899. //
  1900. this.CurrentBoxNum.Location = new System.Drawing.Point(196, 228);
  1901. this.CurrentBoxNum.Margin = new System.Windows.Forms.Padding(6);
  1902. this.CurrentBoxNum.Name = "CurrentBoxNum";
  1903. this.CurrentBoxNum.Size = new System.Drawing.Size(104, 50);
  1904. this.CurrentBoxNum.TabIndex = 41;
  1905. this.CurrentBoxNum.ValueChanged += new System.EventHandler(this.CurrentBoxNum_ValueChanged);
  1906. this.CurrentBoxNum.KeyDown += new System.Windows.Forms.KeyEventHandler(this.CurrentBoxNum_KeyDown);
  1907. //
  1908. // SingleLabelPrinter
  1909. //
  1910. this.SingleLabelPrinter.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1911. this.SingleLabelPrinter.Location = new System.Drawing.Point(14, 126);
  1912. this.SingleLabelPrinter.Margin = new System.Windows.Forms.Padding(10, 12, 10, 12);
  1913. this.SingleLabelPrinter.Name = "SingleLabelPrinter";
  1914. this.SingleLabelPrinter.Size = new System.Drawing.Size(304, 50);
  1915. this.SingleLabelPrinter.TabIndex = 40;
  1916. //
  1917. // SingleLabelPrint
  1918. //
  1919. this.SingleLabelPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1920. this.SingleLabelPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1921. this.SingleLabelPrint.Location = new System.Drawing.Point(64, 354);
  1922. this.SingleLabelPrint.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1923. this.SingleLabelPrint.Name = "SingleLabelPrint";
  1924. this.SingleLabelPrint.Size = new System.Drawing.Size(136, 52);
  1925. this.SingleLabelPrint.TabIndex = 36;
  1926. this.SingleLabelPrint.Text = "打印盘标";
  1927. this.SingleLabelPrint.UseVisualStyleBackColor = true;
  1928. this.SingleLabelPrint.Click += new System.EventHandler(this.SingleLabelPrint_Click);
  1929. //
  1930. // SingleLabelAutoPrint
  1931. //
  1932. this.SingleLabelAutoPrint.AutoSize = true;
  1933. this.SingleLabelAutoPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1934. this.SingleLabelAutoPrint.Location = new System.Drawing.Point(20, 186);
  1935. this.SingleLabelAutoPrint.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1936. this.SingleLabelAutoPrint.Name = "SingleLabelAutoPrint";
  1937. this.SingleLabelAutoPrint.Size = new System.Drawing.Size(142, 35);
  1938. this.SingleLabelAutoPrint.TabIndex = 30;
  1939. this.SingleLabelAutoPrint.Text = "自动打印";
  1940. this.SingleLabelAutoPrint.UseVisualStyleBackColor = true;
  1941. //
  1942. // SingleLabelCombox
  1943. //
  1944. this.SingleLabelCombox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1945. this.SingleLabelCombox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1946. this.SingleLabelCombox.FormattingEnabled = true;
  1947. this.SingleLabelCombox.Location = new System.Drawing.Point(14, 62);
  1948. this.SingleLabelCombox.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1949. this.SingleLabelCombox.Name = "SingleLabelCombox";
  1950. this.SingleLabelCombox.Size = new System.Drawing.Size(304, 39);
  1951. this.SingleLabelCombox.TabIndex = 0;
  1952. this.SingleLabelCombox.SelectedIndexChanged += new System.EventHandler(this.SingleLabelCombox_SelectedIndexChanged);
  1953. //
  1954. // MidLabel
  1955. //
  1956. this.MidLabel.Controls.Add(this.AutoPrintMidBox);
  1957. this.MidLabel.Controls.Add(this.CurrentRowOnly);
  1958. this.MidLabel.Controls.Add(this.MidboxCapacity);
  1959. this.MidLabel.Controls.Add(this.label2);
  1960. this.MidLabel.Controls.Add(this.MidLabelNum);
  1961. this.MidLabel.Controls.Add(this.label5);
  1962. this.MidLabel.Controls.Add(this.MidLabelPrinter);
  1963. this.MidLabel.Controls.Add(this.MidLabelPrint);
  1964. this.MidLabel.Controls.Add(this.MidLabelAutoPrint);
  1965. this.MidLabel.Controls.Add(this.MidLabelCombox);
  1966. this.MidLabel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1967. this.MidLabel.Location = new System.Drawing.Point(1784, 12);
  1968. this.MidLabel.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1969. this.MidLabel.Name = "MidLabel";
  1970. this.MidLabel.Padding = new System.Windows.Forms.Padding(4);
  1971. this.MidLabel.Size = new System.Drawing.Size(340, 422);
  1972. this.MidLabel.TabIndex = 78;
  1973. this.MidLabel.TabStop = false;
  1974. this.MidLabel.Text = "中盒标签";
  1975. //
  1976. // AutoPrintMidBox
  1977. //
  1978. this.AutoPrintMidBox.AutoSize = true;
  1979. this.AutoPrintMidBox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1980. this.AutoPrintMidBox.Location = new System.Drawing.Point(21, 373);
  1981. this.AutoPrintMidBox.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1982. this.AutoPrintMidBox.Name = "AutoPrintMidBox";
  1983. this.AutoPrintMidBox.Size = new System.Drawing.Size(166, 35);
  1984. this.AutoPrintMidBox.TabIndex = 94;
  1985. this.AutoPrintMidBox.Text = "自动打中盒";
  1986. this.AutoPrintMidBox.UseVisualStyleBackColor = true;
  1987. //
  1988. // CurrentRowOnly
  1989. //
  1990. this.CurrentRowOnly.AutoSize = true;
  1991. this.CurrentRowOnly.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1992. this.CurrentRowOnly.Location = new System.Drawing.Point(174, 196);
  1993. this.CurrentRowOnly.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  1994. this.CurrentRowOnly.Name = "CurrentRowOnly";
  1995. this.CurrentRowOnly.Size = new System.Drawing.Size(166, 35);
  1996. this.CurrentRowOnly.TabIndex = 93;
  1997. this.CurrentRowOnly.Text = "只打当前行";
  1998. this.CurrentRowOnly.UseVisualStyleBackColor = true;
  1999. //
  2000. // MidboxCapacity
  2001. //
  2002. this.MidboxCapacity.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2003. this.MidboxCapacity.Location = new System.Drawing.Point(96, 240);
  2004. this.MidboxCapacity.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2005. this.MidboxCapacity.Name = "MidboxCapacity";
  2006. this.MidboxCapacity.Size = new System.Drawing.Size(156, 39);
  2007. this.MidboxCapacity.TabIndex = 92;
  2008. this.MidboxCapacity.Value = new decimal(new int[] {
  2009. 10,
  2010. 0,
  2011. 0,
  2012. 0});
  2013. //
  2014. // label2
  2015. //
  2016. this.label2.AutoSize = true;
  2017. this.label2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2018. this.label2.Location = new System.Drawing.Point(29, 252);
  2019. this.label2.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  2020. this.label2.Name = "label2";
  2021. this.label2.Size = new System.Drawing.Size(62, 31);
  2022. this.label2.TabIndex = 92;
  2023. this.label2.Text = "容量";
  2024. //
  2025. // MidLabelNum
  2026. //
  2027. this.MidLabelNum.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2028. this.MidLabelNum.ID = null;
  2029. this.MidLabelNum.Location = new System.Drawing.Point(96, 304);
  2030. this.MidLabelNum.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2031. this.MidLabelNum.Name = "MidLabelNum";
  2032. this.MidLabelNum.Size = new System.Drawing.Size(152, 39);
  2033. this.MidLabelNum.Str = null;
  2034. this.MidLabelNum.Str1 = null;
  2035. this.MidLabelNum.Str2 = null;
  2036. this.MidLabelNum.TabIndex = 56;
  2037. //
  2038. // label5
  2039. //
  2040. this.label5.AutoSize = true;
  2041. this.label5.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2042. this.label5.Location = new System.Drawing.Point(29, 316);
  2043. this.label5.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  2044. this.label5.Name = "label5";
  2045. this.label5.Size = new System.Drawing.Size(62, 31);
  2046. this.label5.TabIndex = 50;
  2047. this.label5.Text = "盒号";
  2048. //
  2049. // MidLabelPrinter
  2050. //
  2051. this.MidLabelPrinter.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2052. this.MidLabelPrinter.Location = new System.Drawing.Point(12, 126);
  2053. this.MidLabelPrinter.Margin = new System.Windows.Forms.Padding(10, 12, 10, 12);
  2054. this.MidLabelPrinter.Name = "MidLabelPrinter";
  2055. this.MidLabelPrinter.Size = new System.Drawing.Size(316, 50);
  2056. this.MidLabelPrinter.TabIndex = 41;
  2057. //
  2058. // MidLabelPrint
  2059. //
  2060. this.MidLabelPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2061. this.MidLabelPrint.Location = new System.Drawing.Point(188, 356);
  2062. this.MidLabelPrint.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2063. this.MidLabelPrint.Name = "MidLabelPrint";
  2064. this.MidLabelPrint.Size = new System.Drawing.Size(136, 52);
  2065. this.MidLabelPrint.TabIndex = 42;
  2066. this.MidLabelPrint.Text = "打印盒签";
  2067. this.MidLabelPrint.UseVisualStyleBackColor = true;
  2068. this.MidLabelPrint.Click += new System.EventHandler(this.MidLabelPrint_Click);
  2069. //
  2070. // MidLabelAutoPrint
  2071. //
  2072. this.MidLabelAutoPrint.AutoSize = true;
  2073. this.MidLabelAutoPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2074. this.MidLabelAutoPrint.Location = new System.Drawing.Point(20, 194);
  2075. this.MidLabelAutoPrint.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2076. this.MidLabelAutoPrint.Name = "MidLabelAutoPrint";
  2077. this.MidLabelAutoPrint.Size = new System.Drawing.Size(142, 35);
  2078. this.MidLabelAutoPrint.TabIndex = 41;
  2079. this.MidLabelAutoPrint.Text = "打印尾数";
  2080. this.MidLabelAutoPrint.UseVisualStyleBackColor = true;
  2081. //
  2082. // MidLabelCombox
  2083. //
  2084. this.MidLabelCombox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  2085. this.MidLabelCombox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2086. this.MidLabelCombox.FormattingEnabled = true;
  2087. this.MidLabelCombox.Location = new System.Drawing.Point(14, 62);
  2088. this.MidLabelCombox.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2089. this.MidLabelCombox.Name = "MidLabelCombox";
  2090. this.MidLabelCombox.Size = new System.Drawing.Size(310, 39);
  2091. this.MidLabelCombox.TabIndex = 40;
  2092. this.MidLabelCombox.SelectedIndexChanged += new System.EventHandler(this.MidLabelCombox_SelectedIndexChanged);
  2093. //
  2094. // OutBoxLabel
  2095. //
  2096. this.OutBoxLabel.Controls.Add(this.AutoPrintOutBox);
  2097. this.OutBoxLabel.Controls.Add(this.AutoSetOutBox);
  2098. this.OutBoxLabel.Controls.Add(this.DiffDetno);
  2099. this.OutBoxLabel.Controls.Add(this.DiffCPN);
  2100. this.OutBoxLabel.Controls.Add(this.BoxCount);
  2101. this.OutBoxLabel.Controls.Add(this.DiffLotNo);
  2102. this.OutBoxLabel.Controls.Add(this.DiffDC);
  2103. this.OutBoxLabel.Controls.Add(this.OnlyOneRow);
  2104. this.OutBoxLabel.Controls.Add(this.AllLabel);
  2105. this.OutBoxLabel.Controls.Add(this.AddNewOutBox);
  2106. this.OutBoxLabel.Controls.Add(this.LogingOut);
  2107. this.OutBoxLabel.Controls.Add(this.OutBoxNum);
  2108. this.OutBoxLabel.Controls.Add(this.label10);
  2109. this.OutBoxLabel.Controls.Add(this.label6);
  2110. this.OutBoxLabel.Controls.Add(this.OutBoxPrinter);
  2111. this.OutBoxLabel.Controls.Add(this.OutboxCapacity);
  2112. this.OutBoxLabel.Controls.Add(this.OutBoxLabelPrint);
  2113. this.OutBoxLabel.Controls.Add(this.OutBoxCombox);
  2114. this.OutBoxLabel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2115. this.OutBoxLabel.Location = new System.Drawing.Point(2138, 12);
  2116. this.OutBoxLabel.Margin = new System.Windows.Forms.Padding(4);
  2117. this.OutBoxLabel.Name = "OutBoxLabel";
  2118. this.OutBoxLabel.Padding = new System.Windows.Forms.Padding(4);
  2119. this.OutBoxLabel.Size = new System.Drawing.Size(404, 422);
  2120. this.OutBoxLabel.TabIndex = 79;
  2121. this.OutBoxLabel.TabStop = false;
  2122. this.OutBoxLabel.Text = "外箱标签";
  2123. //
  2124. // AutoPrintOutBox
  2125. //
  2126. this.AutoPrintOutBox.AutoSize = true;
  2127. this.AutoPrintOutBox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2128. this.AutoPrintOutBox.Location = new System.Drawing.Point(155, 175);
  2129. this.AutoPrintOutBox.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2130. this.AutoPrintOutBox.Name = "AutoPrintOutBox";
  2131. this.AutoPrintOutBox.Size = new System.Drawing.Size(118, 35);
  2132. this.AutoPrintOutBox.TabIndex = 101;
  2133. this.AutoPrintOutBox.Text = "自动打";
  2134. this.AutoPrintOutBox.UseVisualStyleBackColor = true;
  2135. //
  2136. // AutoSetOutBox
  2137. //
  2138. this.AutoSetOutBox.AutoSize = true;
  2139. this.AutoSetOutBox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2140. this.AutoSetOutBox.Location = new System.Drawing.Point(12, 215);
  2141. this.AutoSetOutBox.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2142. this.AutoSetOutBox.Name = "AutoSetOutBox";
  2143. this.AutoSetOutBox.Size = new System.Drawing.Size(142, 35);
  2144. this.AutoSetOutBox.TabIndex = 100;
  2145. this.AutoSetOutBox.Text = "自动新增";
  2146. this.AutoSetOutBox.UseVisualStyleBackColor = true;
  2147. //
  2148. // DiffDetno
  2149. //
  2150. this.DiffDetno.AutoSize = true;
  2151. this.DiffDetno.Font = new System.Drawing.Font("微软雅黑", 8F);
  2152. this.DiffDetno.Location = new System.Drawing.Point(272, 383);
  2153. this.DiffDetno.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2154. this.DiffDetno.Name = "DiffDetno";
  2155. this.DiffDetno.Size = new System.Drawing.Size(133, 34);
  2156. this.DiffDetno.TabIndex = 99;
  2157. this.DiffDetno.Text = "区分行号";
  2158. this.DiffDetno.UseVisualStyleBackColor = true;
  2159. //
  2160. // DiffCPN
  2161. //
  2162. this.DiffCPN.AutoSize = true;
  2163. this.DiffCPN.Font = new System.Drawing.Font("微软雅黑", 8F);
  2164. this.DiffCPN.Location = new System.Drawing.Point(272, 339);
  2165. this.DiffCPN.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2166. this.DiffCPN.Name = "DiffCPN";
  2167. this.DiffCPN.Size = new System.Drawing.Size(135, 34);
  2168. this.DiffCPN.TabIndex = 98;
  2169. this.DiffCPN.Text = "区分CPN";
  2170. this.DiffCPN.UseVisualStyleBackColor = true;
  2171. //
  2172. // BoxCount
  2173. //
  2174. this.BoxCount.AutoSize = true;
  2175. this.BoxCount.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2176. this.BoxCount.Location = new System.Drawing.Point(284, 396);
  2177. this.BoxCount.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  2178. this.BoxCount.Name = "BoxCount";
  2179. this.BoxCount.Size = new System.Drawing.Size(0, 31);
  2180. this.BoxCount.TabIndex = 97;
  2181. //
  2182. // DiffLotNo
  2183. //
  2184. this.DiffLotNo.AutoSize = true;
  2185. this.DiffLotNo.Font = new System.Drawing.Font("微软雅黑", 8F);
  2186. this.DiffLotNo.Location = new System.Drawing.Point(272, 291);
  2187. this.DiffLotNo.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2188. this.DiffLotNo.Name = "DiffLotNo";
  2189. this.DiffLotNo.Size = new System.Drawing.Size(118, 34);
  2190. this.DiffLotNo.TabIndex = 96;
  2191. this.DiffLotNo.Text = "区分LN";
  2192. this.DiffLotNo.UseVisualStyleBackColor = true;
  2193. //
  2194. // DiffDC
  2195. //
  2196. this.DiffDC.AutoSize = true;
  2197. this.DiffDC.Font = new System.Drawing.Font("微软雅黑", 8F);
  2198. this.DiffDC.Location = new System.Drawing.Point(272, 239);
  2199. this.DiffDC.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2200. this.DiffDC.Name = "DiffDC";
  2201. this.DiffDC.Size = new System.Drawing.Size(121, 34);
  2202. this.DiffDC.TabIndex = 95;
  2203. this.DiffDC.Text = "区分DC";
  2204. this.DiffDC.UseVisualStyleBackColor = true;
  2205. //
  2206. // OnlyOneRow
  2207. //
  2208. this.OnlyOneRow.AutoSize = true;
  2209. this.OnlyOneRow.Font = new System.Drawing.Font("微软雅黑", 8F);
  2210. this.OnlyOneRow.Location = new System.Drawing.Point(272, 191);
  2211. this.OnlyOneRow.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2212. this.OnlyOneRow.Name = "OnlyOneRow";
  2213. this.OnlyOneRow.Size = new System.Drawing.Size(111, 34);
  2214. this.OnlyOneRow.TabIndex = 94;
  2215. this.OnlyOneRow.Text = "仅单行";
  2216. this.OnlyOneRow.UseVisualStyleBackColor = true;
  2217. //
  2218. // AllLabel
  2219. //
  2220. this.AllLabel.AutoSize = true;
  2221. this.AllLabel.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2222. this.AllLabel.Location = new System.Drawing.Point(12, 173);
  2223. this.AllLabel.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2224. this.AllLabel.Name = "AllLabel";
  2225. this.AllLabel.Size = new System.Drawing.Size(142, 35);
  2226. this.AllLabel.TabIndex = 93;
  2227. this.AllLabel.Text = "打印全部";
  2228. this.AllLabel.UseVisualStyleBackColor = true;
  2229. //
  2230. // AddNewOutBox
  2231. //
  2232. this.AddNewOutBox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2233. this.AddNewOutBox.Location = new System.Drawing.Point(18, 360);
  2234. this.AddNewOutBox.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2235. this.AddNewOutBox.Name = "AddNewOutBox";
  2236. this.AddNewOutBox.Size = new System.Drawing.Size(102, 52);
  2237. this.AddNewOutBox.TabIndex = 92;
  2238. this.AddNewOutBox.Text = "新增";
  2239. this.AddNewOutBox.UseVisualStyleBackColor = true;
  2240. this.AddNewOutBox.Click += new System.EventHandler(this.AddNewOutBox_Click);
  2241. //
  2242. // LogingOut
  2243. //
  2244. this.LogingOut.AutoSize = true;
  2245. this.LogingOut.Location = new System.Drawing.Point(248, 36);
  2246. this.LogingOut.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  2247. this.LogingOut.Name = "LogingOut";
  2248. this.LogingOut.Size = new System.Drawing.Size(82, 41);
  2249. this.LogingOut.TabIndex = 77;
  2250. this.LogingOut.TabStop = true;
  2251. this.LogingOut.Text = "注销";
  2252. this.LogingOut.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LogingOut_LinkClicked);
  2253. //
  2254. // OutBoxNum
  2255. //
  2256. this.OutBoxNum.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  2257. this.OutBoxNum.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2258. this.OutBoxNum.Items.AddRange(new object[] {
  2259. "新增"});
  2260. this.OutBoxNum.Location = new System.Drawing.Point(122, 314);
  2261. this.OutBoxNum.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2262. this.OutBoxNum.Name = "OutBoxNum";
  2263. this.OutBoxNum.Size = new System.Drawing.Size(100, 39);
  2264. this.OutBoxNum.TabIndex = 91;
  2265. this.OutBoxNum.SelectedIndexChanged += new System.EventHandler(this.OutBoxNum_SelectedIndexChanged);
  2266. this.OutBoxNum.SelectionChangeCommitted += new System.EventHandler(this.OutBoxNum_SelectionChangeCommitted);
  2267. this.OutBoxNum.Click += new System.EventHandler(this.OutBoxNum_Click);
  2268. //
  2269. // label10
  2270. //
  2271. this.label10.AutoSize = true;
  2272. this.label10.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2273. this.label10.Location = new System.Drawing.Point(44, 326);
  2274. this.label10.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  2275. this.label10.Name = "label10";
  2276. this.label10.Size = new System.Drawing.Size(62, 31);
  2277. this.label10.TabIndex = 90;
  2278. this.label10.Text = "箱号";
  2279. //
  2280. // label6
  2281. //
  2282. this.label6.AutoSize = true;
  2283. this.label6.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2284. this.label6.Location = new System.Drawing.Point(44, 277);
  2285. this.label6.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  2286. this.label6.Name = "label6";
  2287. this.label6.Size = new System.Drawing.Size(62, 31);
  2288. this.label6.TabIndex = 87;
  2289. this.label6.Text = "容量";
  2290. //
  2291. // OutBoxPrinter
  2292. //
  2293. this.OutBoxPrinter.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2294. this.OutBoxPrinter.Location = new System.Drawing.Point(14, 126);
  2295. this.OutBoxPrinter.Margin = new System.Windows.Forms.Padding(10, 12, 10, 12);
  2296. this.OutBoxPrinter.Name = "OutBoxPrinter";
  2297. this.OutBoxPrinter.Size = new System.Drawing.Size(352, 50);
  2298. this.OutBoxPrinter.TabIndex = 82;
  2299. //
  2300. // OutboxCapacity
  2301. //
  2302. this.OutboxCapacity.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2303. this.OutboxCapacity.Location = new System.Drawing.Point(122, 267);
  2304. this.OutboxCapacity.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2305. this.OutboxCapacity.Name = "OutboxCapacity";
  2306. this.OutboxCapacity.Size = new System.Drawing.Size(100, 39);
  2307. this.OutboxCapacity.TabIndex = 84;
  2308. this.OutboxCapacity.Value = new decimal(new int[] {
  2309. 60,
  2310. 0,
  2311. 0,
  2312. 0});
  2313. this.OutboxCapacity.Leave += new System.EventHandler(this.MidBoxCapacity_Leave);
  2314. //
  2315. // OutBoxLabelPrint
  2316. //
  2317. this.OutBoxLabelPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2318. this.OutBoxLabelPrint.Location = new System.Drawing.Point(114, 362);
  2319. this.OutBoxLabelPrint.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2320. this.OutBoxLabelPrint.Name = "OutBoxLabelPrint";
  2321. this.OutBoxLabelPrint.Size = new System.Drawing.Size(134, 52);
  2322. this.OutBoxLabelPrint.TabIndex = 80;
  2323. this.OutBoxLabelPrint.Text = "打印箱标";
  2324. this.OutBoxLabelPrint.UseVisualStyleBackColor = true;
  2325. this.OutBoxLabelPrint.Click += new System.EventHandler(this.OutBoxLabelPrint_Click);
  2326. //
  2327. // OutBoxCombox
  2328. //
  2329. this.OutBoxCombox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  2330. this.OutBoxCombox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2331. this.OutBoxCombox.FormattingEnabled = true;
  2332. this.OutBoxCombox.Location = new System.Drawing.Point(14, 62);
  2333. this.OutBoxCombox.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2334. this.OutBoxCombox.Name = "OutBoxCombox";
  2335. this.OutBoxCombox.Size = new System.Drawing.Size(350, 39);
  2336. this.OutBoxCombox.TabIndex = 78;
  2337. this.OutBoxCombox.SelectedIndexChanged += new System.EventHandler(this.OutBoxCombox_SelectedIndexChanged);
  2338. //
  2339. // UAS_出货标签打印
  2340. //
  2341. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  2342. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2343. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(233)))), ((int)(((byte)(206)))));
  2344. this.ClientSize = new System.Drawing.Size(2529, 1062);
  2345. this.Controls.Add(this.MixPrCode);
  2346. this.Controls.Add(this.richTextAutoBottom1);
  2347. this.Controls.Add(this.Connect);
  2348. this.Controls.Add(this.MenuManage);
  2349. this.Controls.Add(this.pib_indate);
  2350. this.Controls.Add(this.label11);
  2351. this.Controls.Add(this.groupBoxWithBorder2);
  2352. this.Controls.Add(this.PackMidBox);
  2353. this.Controls.Add(this.GetPDdata);
  2354. this.Controls.Add(this.PackOutBox);
  2355. this.Controls.Add(this.Reset);
  2356. this.Controls.Add(this.CombindetailTwo);
  2357. this.Controls.Add(this.ProcessCount);
  2358. this.Controls.Add(this.label9);
  2359. this.Controls.Add(this.label8);
  2360. this.Controls.Add(this.pi_title);
  2361. this.Controls.Add(this.Combindetail);
  2362. this.Controls.Add(this.CustomerLabel);
  2363. this.Controls.Add(this.pib_inman);
  2364. this.Controls.Add(this.bi_inman);
  2365. this.Controls.Add(this.label4);
  2366. this.Controls.Add(this.label3);
  2367. this.Controls.Add(this.PrintStatus);
  2368. this.Controls.Add(this.label1);
  2369. this.Controls.Add(this.DCCheck);
  2370. this.Controls.Add(this.pictureBox1);
  2371. this.Controls.Add(this.SetPrintStatus_label);
  2372. this.Controls.Add(this.PrintFooter);
  2373. this.Controls.Add(this.GridPrcode);
  2374. this.Controls.Add(this.ExportData);
  2375. this.Controls.Add(this.label19);
  2376. this.Controls.Add(this.pi_date);
  2377. this.Controls.Add(this.AttachInfo);
  2378. this.Controls.Add(this.groupBoxWithBorder1);
  2379. this.Controls.Add(this.ChooseAll);
  2380. this.Controls.Add(this.Fresh);
  2381. this.Controls.Add(this.pi_cardcode);
  2382. this.Controls.Add(this.pib_id);
  2383. this.Controls.Add(this.CleanDetail);
  2384. this.Controls.Add(this.LabelMainTain);
  2385. this.Controls.Add(this.label24);
  2386. this.Controls.Add(this.Input);
  2387. this.Controls.Add(this.LabelInf);
  2388. this.Controls.Add(this.pi_inoutno_label);
  2389. this.Controls.Add(this.pi_inoutno);
  2390. this.Controls.Add(this.SingleLabel);
  2391. this.Controls.Add(this.MidLabel);
  2392. this.Controls.Add(this.OutBoxLabel);
  2393. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  2394. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  2395. this.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  2396. this.Name = "UAS_出货标签打印";
  2397. this.Text = " UAS-出货标签管理";
  2398. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  2399. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.贴标机条码打印_FormClosing);
  2400. this.Load += new System.EventHandler(this.贴标机条码打印_Load);
  2401. this.SizeChanged += new System.EventHandler(this.贴标机条码打印_SizeChanged);
  2402. ((System.ComponentModel.ISupportInitialize)(this.MidSource)).EndInit();
  2403. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  2404. this.ShowMenu_Total.ResumeLayout(true);
  2405. this.groupBoxWithBorder2.ResumeLayout(true);
  2406. this.groupBoxWithBorder2.PerformLayout();
  2407. ((System.ComponentModel.ISupportInitialize)(this.GridPrcode)).EndInit();
  2408. this.groupBoxWithBorder1.ResumeLayout(true);
  2409. this.groupBoxWithBorder1.PerformLayout();
  2410. ((System.ComponentModel.ISupportInitialize)(this.LabelInf)).EndInit();
  2411. this.SingleLabel.ResumeLayout(true);
  2412. this.SingleLabel.PerformLayout();
  2413. ((System.ComponentModel.ISupportInitialize)(this.CurrentOutBoxNum)).EndInit();
  2414. ((System.ComponentModel.ISupportInitialize)(this.CurrentBoxNum)).EndInit();
  2415. this.MidLabel.ResumeLayout(true);
  2416. this.MidLabel.PerformLayout();
  2417. ((System.ComponentModel.ISupportInitialize)(this.MidboxCapacity)).EndInit();
  2418. this.OutBoxLabel.ResumeLayout(true);
  2419. this.OutBoxLabel.PerformLayout();
  2420. ((System.ComponentModel.ISupportInitialize)(this.OutboxCapacity)).EndInit();
  2421. this.ResumeLayout(true);
  2422. this.PerformLayout();
  2423. }
  2424. #endregion
  2425. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder OutBoxLabel;
  2426. private System.Windows.Forms.ComboBox OutBoxNum;
  2427. private System.Windows.Forms.Label label10;
  2428. private CustomControl.PrinterCombox OutBoxPrinter;
  2429. private System.Windows.Forms.Button OutBoxLabelPrint;
  2430. private System.Windows.Forms.ComboBox OutBoxCombox;
  2431. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
  2432. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
  2433. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
  2434. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
  2435. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
  2436. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
  2437. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
  2438. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
  2439. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
  2440. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
  2441. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
  2442. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn2;
  2443. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn3;
  2444. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
  2445. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
  2446. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
  2447. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
  2448. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
  2449. private System.Windows.Forms.Label label6;
  2450. private System.Windows.Forms.NumericUpDown OutboxCapacity;
  2451. private System.Windows.Forms.ComboBox MidLabelCombox;
  2452. private System.Windows.Forms.CheckBox MidLabelAutoPrint;
  2453. private System.Windows.Forms.Button MidLabelPrint;
  2454. private CustomControl.PrinterCombox MidLabelPrinter;
  2455. private System.Windows.Forms.Label label5;
  2456. private CustomControl.EnterTextBox MidLabelNum;
  2457. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder MidLabel;
  2458. private System.Windows.Forms.ComboBox SingleLabelCombox;
  2459. private System.Windows.Forms.CheckBox SingleLabelAutoPrint;
  2460. private System.Windows.Forms.Button SingleLabelPrint;
  2461. private CustomControl.PrinterCombox SingleLabelPrinter;
  2462. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder SingleLabel;
  2463. private CustomControl.EnterTextBox pi_inoutno;
  2464. private System.Windows.Forms.Label pi_inoutno_label;
  2465. private CustomControl.DataGridViewWithSerialNum LabelInf;
  2466. private CustomControl.EnterTextBox Input;
  2467. private System.Windows.Forms.Label label24;
  2468. private System.Windows.Forms.Button LabelMainTain;
  2469. private System.Windows.Forms.Button CleanDetail;
  2470. private System.Windows.Forms.Label pib_id;
  2471. private System.Windows.Forms.Label pi_cardcode;
  2472. private System.Windows.Forms.LinkLabel Fresh;
  2473. private System.Windows.Forms.LinkLabel LogingOut;
  2474. private System.Windows.Forms.Timer RefreshDBConnect;
  2475. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
  2476. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
  2477. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
  2478. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
  2479. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
  2480. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
  2481. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
  2482. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
  2483. private System.Windows.Forms.BindingSource MidSource;
  2484. private System.Windows.Forms.Button ChooseAll;
  2485. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder groupBoxWithBorder1;
  2486. private System.Windows.Forms.Label label7;
  2487. private System.Windows.Forms.Label label12;
  2488. private CustomControl.EnterTextBox SingleBoxEnd;
  2489. private CustomControl.EnterTextBox SingleBoxBegin;
  2490. private System.Windows.Forms.Label label16;
  2491. private System.Windows.Forms.Label label18;
  2492. private CustomControl.EnterTextBox MidBoxEnd;
  2493. private CustomControl.EnterTextBox MidBoxBegin;
  2494. private System.Windows.Forms.Button ExportData;
  2495. private System.Windows.Forms.FolderBrowserDialog ExportFileDialog;
  2496. private System.Windows.Forms.Button AttachInfo;
  2497. private System.Windows.Forms.Label pi_date;
  2498. private System.Windows.Forms.Label label19;
  2499. private CustomControl.DataGridViewWithSerialNum GridPrcode;
  2500. private System.Windows.Forms.Label SetPrintStatus_label;
  2501. private System.Windows.Forms.Button PrintFooter;
  2502. private System.Windows.Forms.PictureBox pictureBox1;
  2503. private CustomControl.EnterTextBox DCCheck;
  2504. private System.Windows.Forms.Label label1;
  2505. private System.Windows.Forms.NumericUpDown MidboxCapacity;
  2506. private System.Windows.Forms.Label label2;
  2507. private System.Windows.Forms.Button PackOutBox;
  2508. private System.Windows.Forms.Button PrintStatus;
  2509. private System.Windows.Forms.Label label3;
  2510. private System.Windows.Forms.Label label4;
  2511. private System.Windows.Forms.Label bi_inman;
  2512. private System.Windows.Forms.Label pib_inman;
  2513. private System.Windows.Forms.Button PackMidBox;
  2514. private System.Windows.Forms.Button CustomerLabel;
  2515. private System.Windows.Forms.CheckBox Combindetail;
  2516. private System.Windows.Forms.Label label8;
  2517. private System.Windows.Forms.Label pi_title;
  2518. private System.Windows.Forms.Label label9;
  2519. private System.Windows.Forms.Label ProcessCount;
  2520. private System.Windows.Forms.CheckBox CombindetailTwo;
  2521. private System.Windows.Forms.Button Reset;
  2522. private System.Windows.Forms.Button AddNewOutBox;
  2523. private System.Windows.Forms.Button GetPDdata;
  2524. private System.Windows.Forms.CheckBox AllLabel;
  2525. private System.Windows.Forms.CheckBox OnlyOneRow;
  2526. private System.Windows.Forms.Button ResetHBXH;
  2527. private System.Windows.Forms.CheckBox DiffLotNo;
  2528. private System.Windows.Forms.CheckBox DiffDC;
  2529. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder groupBoxWithBorder2;
  2530. private System.Windows.Forms.Label Weight;
  2531. private System.Windows.Forms.Button ButtonWeigh;
  2532. private System.IO.Ports.SerialPort Com;
  2533. private System.Windows.Forms.Button ConnectCom;
  2534. private System.Windows.Forms.CheckBox CurrentRowOnly;
  2535. private System.Windows.Forms.Label BoxCount;
  2536. private System.Windows.Forms.Button CloseSerialPort;
  2537. private System.Windows.Forms.CheckBox DiffCPN;
  2538. private System.Windows.Forms.ContextMenuStrip ShowMenu;
  2539. private System.Windows.Forms.CheckBox DiffDetno;
  2540. private System.Windows.Forms.Label label11;
  2541. private System.Windows.Forms.Label pib_indate;
  2542. private System.Windows.Forms.ContextMenuStrip ShowMenu_Total;
  2543. private System.Windows.Forms.ToolStripMenuItem 清除明细ToolStripMenuItem;
  2544. private System.Windows.Forms.ToolStripMenuItem 标签维护ToolStripMenuItem;
  2545. private System.Windows.Forms.ToolStripMenuItem 打印唛头ToolStripMenuItem;
  2546. private System.Windows.Forms.ToolStripMenuItem 附加信息ToolStripMenuItem;
  2547. private System.Windows.Forms.ToolStripMenuItem 打印状态ToolStripMenuItem;
  2548. private System.Windows.Forms.ToolStripMenuItem 标签自定义ToolStripMenuItem;
  2549. private System.Windows.Forms.ToolStripMenuItem 重置单据ToolStripMenuItem;
  2550. private System.Windows.Forms.ToolStripMenuItem 同步出货数据ToolStripMenuItem;
  2551. private System.Windows.Forms.Button MenuManage;
  2552. private System.Windows.Forms.ToolStripMenuItem 贴标机参数设置ToolStripMenuItem;
  2553. private System.Windows.Forms.Button Connect;
  2554. private System.Windows.Forms.DataGridViewTextBoxColumn pd_pdno;
  2555. private System.Windows.Forms.DataGridViewTextBoxColumn pd_piid;
  2556. private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
  2557. private System.Windows.Forms.DataGridViewTextBoxColumn pd_inoutno;
  2558. private System.Windows.Forms.DataGridViewTextBoxColumn pd_whcode;
  2559. private System.Windows.Forms.DataGridViewTextBoxColumn pjd_id;
  2560. private System.Windows.Forms.DataGridViewTextBoxColumn pd_custprodcode1;
  2561. private System.Windows.Forms.DataGridViewTextBoxColumn pd_pocode1;
  2562. private System.Windows.Forms.DataGridViewTextBoxColumn pd_prodcode;
  2563. private System.Windows.Forms.DataGridViewTextBoxColumn CollectedNum;
  2564. private System.Windows.Forms.DataGridViewTextBoxColumn UnCollectedNum;
  2565. private System.Windows.Forms.DataGridViewTextBoxColumn pd_outqty;
  2566. private System.Windows.Forms.DataGridViewTextBoxColumn pr_unit;
  2567. private System.Windows.Forms.DataGridViewTextBoxColumn pd_brand;
  2568. private System.Windows.Forms.DataGridViewTextBoxColumn pjd_zxbzs_user;
  2569. private System.Windows.Forms.DataGridViewTextBoxColumn pr_spec1;
  2570. private System.Windows.Forms.DataGridViewTextBoxColumn checknum;
  2571. private System.Windows.Forms.ToolStripMenuItem 贴标角度设置ToolStripMenuItem;
  2572. private System.Windows.Forms.NumericUpDown CurrentBoxNum;
  2573. private System.Windows.Forms.Label label13;
  2574. private CustomControl.RichText.RichTextAutoBottom richTextAutoBottom1;
  2575. private System.Windows.Forms.CheckBox MixPrCode;
  2576. private System.Windows.Forms.Label label14;
  2577. private System.Windows.Forms.NumericUpDown CurrentOutBoxNum;
  2578. private System.Windows.Forms.CheckBox AutoPrintMidBox;
  2579. private System.Windows.Forms.CheckBox AutoSetOutBox;
  2580. private System.Windows.Forms.Button ButtonMidWeigh;
  2581. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
  2582. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn25;
  2583. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn26;
  2584. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn27;
  2585. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28;
  2586. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn29;
  2587. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn30;
  2588. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn31;
  2589. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn32;
  2590. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn33;
  2591. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn34;
  2592. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn35;
  2593. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn36;
  2594. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn37;
  2595. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn38;
  2596. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn39;
  2597. private System.Windows.Forms.DataGridViewCheckBoxColumn Choose;
  2598. private System.Windows.Forms.DataGridViewCheckBoxColumn pib_ifprint;
  2599. private System.Windows.Forms.DataGridViewCheckBoxColumn pib_midifprint;
  2600. private System.Windows.Forms.DataGridViewTextBoxColumn pib_id1;
  2601. private System.Windows.Forms.DataGridViewTextBoxColumn pib_pdno;
  2602. private System.Windows.Forms.DataGridViewTextBoxColumn pib_prodcode;
  2603. private System.Windows.Forms.DataGridViewTextBoxColumn pd_custprodcode;
  2604. private System.Windows.Forms.DataGridViewTextBoxColumn pjd_orispeccode;
  2605. private System.Windows.Forms.DataGridViewTextBoxColumn pib_brand;
  2606. private System.Windows.Forms.DataGridViewTextBoxColumn pr_zxbzs;
  2607. private System.Windows.Forms.DataGridViewTextBoxColumn pib_lotno;
  2608. private System.Windows.Forms.DataGridViewTextBoxColumn pib_datecode;
  2609. private System.Windows.Forms.DataGridViewTextBoxColumn DateCode1;
  2610. private System.Windows.Forms.DataGridViewTextBoxColumn pib_qty;
  2611. private System.Windows.Forms.DataGridViewTextBoxColumn pib_custbarcode;
  2612. private System.Windows.Forms.DataGridViewTextBoxColumn pib_custmidboxcode;
  2613. private System.Windows.Forms.DataGridViewTextBoxColumn pib_custoutboxcode;
  2614. private System.Windows.Forms.DataGridViewTextBoxColumn pd_pocode;
  2615. private System.Windows.Forms.DataGridViewTextBoxColumn pr_spec;
  2616. private System.Windows.Forms.DataGridViewTextBoxColumn pib_midboxweight;
  2617. private System.Windows.Forms.DataGridViewTextBoxColumn pib_boxweight;
  2618. private System.Windows.Forms.DataGridViewTextBoxColumn pib_totalweight;
  2619. private System.Windows.Forms.DataGridViewTextBoxColumn pd_remark;
  2620. private System.Windows.Forms.DataGridViewTextBoxColumn pd_remark2;
  2621. private System.Windows.Forms.DataGridViewTextBoxColumn pib_outboxcode1;
  2622. private System.Windows.Forms.DataGridViewTextBoxColumn pib_outboxcode2;
  2623. private System.Windows.Forms.ToolStripMenuItem 断开贴标机ToolStripMenuItem;
  2624. private System.Windows.Forms.CheckBox AutoPrintOutBox;
  2625. }
  2626. }