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

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