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

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