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

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