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

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