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

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