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

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