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

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