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

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