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

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