| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415 |
- namespace UAS_LabelMachine
- {
- partial class UAS_出货标签打印
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要修改
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UAS_出货标签打印));
- this.pi_inoutno_label = new System.Windows.Forms.Label();
- this.label1 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.label22 = new System.Windows.Forms.Label();
- this.AutoMatch = new System.Windows.Forms.CheckBox();
- this.pr_code_label = new System.Windows.Forms.Label();
- this.label24 = new System.Windows.Forms.Label();
- this.CollectionUnit = new System.Windows.Forms.ComboBox();
- this.CollectionUnit_label = new System.Windows.Forms.Label();
- this.GenerateBarCode = new System.Windows.Forms.Button();
- this.SaveGrid = new System.Windows.Forms.Button();
- this.sg_separator_label = new System.Windows.Forms.Label();
- this.Si_ItemDGV = new System.Windows.Forms.DataGridView();
- this.si_detno = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.si_index = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.si_kind = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.si_indexstring = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.si_length = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.si_expression = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.si_item = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.si_expressionitem = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CleanDetail = new System.Windows.Forms.Button();
- this.pib_id = new System.Windows.Forms.Label();
- this.pi_cardcode_label = new System.Windows.Forms.Label();
- this.Fresh = new System.Windows.Forms.LinkLabel();
- this.label3 = new System.Windows.Forms.Label();
- this.CleanInputAfterCollect = new System.Windows.Forms.CheckBox();
- this.AllCollected = new System.Windows.Forms.Button();
- this.GetGridOnly = new System.Windows.Forms.CheckBox();
- this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn3 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.MidSource = new System.Windows.Forms.BindingSource(this.components);
- this.ChooseAll = new System.Windows.Forms.Button();
- this.ExportFileDialog = new System.Windows.Forms.FolderBrowserDialog();
- this.pi_date = new System.Windows.Forms.Label();
- this.CleanBarCode = new System.Windows.Forms.Button();
- this.MenuSetting = new System.Windows.Forms.Button();
- this.ShowMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
- this.采集策略设置 = new System.Windows.Forms.ToolStripMenuItem();
- this.附加信息设置 = new System.Windows.Forms.ToolStripMenuItem();
- this.导出数据 = new System.Windows.Forms.ToolStripMenuItem();
- this.标签维护 = new System.Windows.Forms.ToolStripMenuItem();
- this.条码导入生成 = new System.Windows.Forms.ToolStripMenuItem();
- this.下载模板 = new System.Windows.Forms.ToolStripMenuItem();
- this.流水调整 = new System.Windows.Forms.ToolStripMenuItem();
- this.ImportExcel = new System.Windows.Forms.OpenFileDialog();
- this.pi_class = new System.Windows.Forms.Label();
- this.CustBarCode = new System.Windows.Forms.Button();
- this.cu_code = new UAS_LabelMachine.CustomControl.SearchTextBox();
- this.groupBoxWithBorder1 = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
- this.Order_Prod = new System.Windows.Forms.RadioButton();
- this.Order_Detno = new System.Windows.Forms.RadioButton();
- this.label18 = new System.Windows.Forms.Label();
- this.MidBoxEnd = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.MidBoxBegin = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.label16 = new System.Windows.Forms.Label();
- this.SingleBoxEnd = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.SingleBoxBegin = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.label12 = new System.Windows.Forms.Label();
- this.label7 = new System.Windows.Forms.Label();
- this.pr_code = new UAS_LabelMachine.CustomControl.SearchTextBox();
- this.CollectionProcess = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
- this.Capacity = new System.Windows.Forms.Label();
- this.Process_midboxcode = new System.Windows.Forms.Label();
- this.Process_outboxcode = new System.Windows.Forms.Label();
- this.TotalCount = new System.Windows.Forms.Label();
- this.label17 = new System.Windows.Forms.Label();
- this.CollectedCount = new System.Windows.Forms.Label();
- this.label14 = new System.Windows.Forms.Label();
- this.label11 = new System.Windows.Forms.Label();
- this.label13 = new System.Windows.Forms.Label();
- this.Installed = new System.Windows.Forms.Label();
- this.Process = new System.Windows.Forms.Label();
- this.sg_separator = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.Input = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.griddetno = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.sg_code = new UAS_LabelMachine.CustomControl.SearchTextBox();
- this.MessageLog = new UAS_LabelMachine.CustomControl.RichText.RichTextAutoBottom();
- this.LabelInf = new UAS_LabelMachine.CustomControl.DataGridViewWithSerialNum();
- this.Choose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.pr_midboxcapacity_user = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_ifpick = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.pib_ifprint = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.pib_id1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_pdno = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_prodcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pd_ordercode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pr_orispeccode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_brand = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_madein = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pr_zxbzs = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pr_unit = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_lotno = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_datecode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_year = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_month = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_day = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_qty = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_barcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_custbarcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_custoutboxcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pd_pocode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pd_custprodcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pd_custprodspec = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pr_spec = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_outboxcode1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_outboxcode2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pi_inoutno = new UAS_LabelMachine.CustomControl.BlurSearch();
- this.SingleLabel = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
- this.LabelSpace = new System.Windows.Forms.CheckBox();
- this.label8 = new System.Windows.Forms.Label();
- this.SingleDocRefresh = new System.Windows.Forms.LinkLabel();
- this.SingleLabelPrinter = new UAS_LabelMachine.CustomControl.PrinterCombox();
- this.SingleLabelPrint = new System.Windows.Forms.Button();
- this.SingleLabelAutoPrint = new System.Windows.Forms.CheckBox();
- this.SingleLabelCombox = new System.Windows.Forms.ComboBox();
- this.MidLabel = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
- this.MidLabelPreView = new System.Windows.Forms.LinkLabel();
- this.GetMidBoxCode = new System.Windows.Forms.Button();
- this.label9 = new System.Windows.Forms.Label();
- this.MidDocRefresh = new System.Windows.Forms.LinkLabel();
- this.MidLabelNum = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.label5 = new System.Windows.Forms.Label();
- this.label4 = new System.Windows.Forms.Label();
- this.MidLabelPrinter = new UAS_LabelMachine.CustomControl.PrinterCombox();
- this.label15 = new System.Windows.Forms.Label();
- this.MidBoxCapacity = new System.Windows.Forms.NumericUpDown();
- this.MidLabelPrint = new System.Windows.Forms.Button();
- this.MidLabelAutoPrint = new System.Windows.Forms.CheckBox();
- this.MidLabelCombox = new System.Windows.Forms.ComboBox();
- this.OutBoxLabel = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
- this.DiffCustOutBoxCode = new System.Windows.Forms.CheckBox();
- this.groupBoxWithBorder2 = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
- this.cu_print_ordercode = new System.Windows.Forms.CheckBox();
- this.cu_print_outpo = new System.Windows.Forms.CheckBox();
- this.cu_print_outdc = new System.Windows.Forms.CheckBox();
- this.cu_print_outlotno = new System.Windows.Forms.CheckBox();
- this.cu_print_outprod = new System.Windows.Forms.CheckBox();
- this.label19 = new System.Windows.Forms.Label();
- this.OutDocRefresh = new System.Windows.Forms.LinkLabel();
- this.LogingOut = new System.Windows.Forms.LinkLabel();
- this.GetOutBoxCode = new System.Windows.Forms.Button();
- this.OutBoxNum = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.label10 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.OutBoxPrinter = new UAS_LabelMachine.CustomControl.PrinterCombox();
- this.OutboxCapacity = new System.Windows.Forms.NumericUpDown();
- this.OutBoxLabelPrint = new System.Windows.Forms.Button();
- this.OutBoxCombox = new System.Windows.Forms.ComboBox();
- this.FTPModel = new System.Windows.Forms.CheckBox();
- ((System.ComponentModel.ISupportInitialize)(this.Si_ItemDGV)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MidSource)).BeginInit();
- this.ShowMenu.SuspendLayout();
- this.groupBoxWithBorder1.SuspendLayout();
- this.CollectionProcess.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.LabelInf)).BeginInit();
- this.SingleLabel.SuspendLayout();
- this.MidLabel.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.MidBoxCapacity)).BeginInit();
- this.OutBoxLabel.SuspendLayout();
- this.groupBoxWithBorder2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.OutboxCapacity)).BeginInit();
- this.SuspendLayout();
- //
- // pi_inoutno_label
- //
- this.pi_inoutno_label.AutoSize = true;
- this.pi_inoutno_label.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.pi_inoutno_label.Location = new System.Drawing.Point(6, 20);
- this.pi_inoutno_label.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.pi_inoutno_label.Name = "pi_inoutno_label";
- this.pi_inoutno_label.Size = new System.Drawing.Size(127, 36);
- this.pi_inoutno_label.TabIndex = 3;
- this.pi_inoutno_label.Text = "出货单号";
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label1.Location = new System.Drawing.Point(6, 132);
- this.label1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(127, 36);
- this.label1.TabIndex = 31;
- this.label1.Text = "采集策略";
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label2.Location = new System.Drawing.Point(10, 212);
- this.label2.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(127, 36);
- this.label2.TabIndex = 33;
- this.label2.Text = "当前采集";
- //
- // label22
- //
- this.label22.AutoSize = true;
- this.label22.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label22.Location = new System.Drawing.Point(144, 212);
- this.label22.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(127, 36);
- this.label22.TabIndex = 34;
- this.label22.Text = "明细序号";
- //
- // AutoMatch
- //
- this.AutoMatch.AutoSize = true;
- this.AutoMatch.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.AutoMatch.Location = new System.Drawing.Point(288, 212);
- this.AutoMatch.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.AutoMatch.Name = "AutoMatch";
- this.AutoMatch.Size = new System.Drawing.Size(159, 40);
- this.AutoMatch.TabIndex = 49;
- this.AutoMatch.Text = "自动匹配";
- this.AutoMatch.UseVisualStyleBackColor = true;
- //
- // pr_code_label
- //
- this.pr_code_label.AutoSize = true;
- this.pr_code_label.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.pr_code_label.Location = new System.Drawing.Point(144, 316);
- this.pr_code_label.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.pr_code_label.Name = "pr_code_label";
- this.pr_code_label.Size = new System.Drawing.Size(127, 36);
- this.pr_code_label.TabIndex = 51;
- this.pr_code_label.Text = "物料编号";
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label24.Location = new System.Drawing.Point(18, 436);
- this.label24.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(99, 36);
- this.label24.TabIndex = 55;
- this.label24.Text = "输入框";
- //
- // CollectionUnit
- //
- this.CollectionUnit.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.CollectionUnit.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.CollectionUnit.FormattingEnabled = true;
- this.CollectionUnit.Items.AddRange(new object[] {
- "盘",
- "盒",
- "全部"});
- this.CollectionUnit.Location = new System.Drawing.Point(592, 364);
- this.CollectionUnit.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.CollectionUnit.Name = "CollectionUnit";
- this.CollectionUnit.Size = new System.Drawing.Size(104, 39);
- this.CollectionUnit.TabIndex = 41;
- //
- // CollectionUnit_label
- //
- this.CollectionUnit_label.AutoSize = true;
- this.CollectionUnit_label.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.CollectionUnit_label.Location = new System.Drawing.Point(456, 364);
- this.CollectionUnit_label.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.CollectionUnit_label.Name = "CollectionUnit_label";
- this.CollectionUnit_label.Size = new System.Drawing.Size(127, 36);
- this.CollectionUnit_label.TabIndex = 56;
- this.CollectionUnit_label.Text = "采集单位";
- //
- // GenerateBarCode
- //
- this.GenerateBarCode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.GenerateBarCode.Location = new System.Drawing.Point(748, 356);
- this.GenerateBarCode.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.GenerateBarCode.Name = "GenerateBarCode";
- this.GenerateBarCode.Size = new System.Drawing.Size(136, 52);
- this.GenerateBarCode.TabIndex = 41;
- this.GenerateBarCode.Text = "生成条码";
- this.GenerateBarCode.UseVisualStyleBackColor = true;
- this.GenerateBarCode.Click += new System.EventHandler(this.GenerateBarCode_Click);
- //
- // SaveGrid
- //
- this.SaveGrid.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.SaveGrid.Location = new System.Drawing.Point(896, 432);
- this.SaveGrid.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.SaveGrid.Name = "SaveGrid";
- this.SaveGrid.Size = new System.Drawing.Size(136, 52);
- this.SaveGrid.TabIndex = 59;
- this.SaveGrid.Text = "上传条码";
- this.SaveGrid.UseVisualStyleBackColor = true;
- this.SaveGrid.Click += new System.EventHandler(this.SaveGrid_Click);
- //
- // sg_separator_label
- //
- this.sg_separator_label.AutoSize = true;
- this.sg_separator_label.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.sg_separator_label.Location = new System.Drawing.Point(466, 132);
- this.sg_separator_label.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.sg_separator_label.Name = "sg_separator_label";
- this.sg_separator_label.Size = new System.Drawing.Size(99, 36);
- this.sg_separator_label.TabIndex = 61;
- this.sg_separator_label.Text = "分隔符";
- //
- // Si_ItemDGV
- //
- this.Si_ItemDGV.AllowUserToAddRows = false;
- this.Si_ItemDGV.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
- this.Si_ItemDGV.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.Si_ItemDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.si_detno,
- this.si_index,
- this.si_kind,
- this.si_indexstring,
- this.si_length,
- this.si_expression,
- this.si_item,
- this.si_expressionitem});
- this.Si_ItemDGV.Location = new System.Drawing.Point(648, 22);
- this.Si_ItemDGV.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.Si_ItemDGV.Name = "Si_ItemDGV";
- this.Si_ItemDGV.RowHeadersWidth = 82;
- this.Si_ItemDGV.RowTemplate.Height = 23;
- this.Si_ItemDGV.Size = new System.Drawing.Size(268, 298);
- this.Si_ItemDGV.TabIndex = 65;
- //
- // si_detno
- //
- this.si_detno.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.si_detno.DataPropertyName = "si_detno";
- this.si_detno.Frozen = true;
- this.si_detno.HeaderText = "顺序";
- this.si_detno.MinimumWidth = 10;
- this.si_detno.Name = "si_detno";
- this.si_detno.ReadOnly = true;
- this.si_detno.Width = 60;
- //
- // si_index
- //
- this.si_index.DataPropertyName = "si_index";
- this.si_index.HeaderText = "起始位置";
- this.si_index.MinimumWidth = 10;
- this.si_index.Name = "si_index";
- this.si_index.Visible = false;
- this.si_index.Width = 200;
- //
- // si_kind
- //
- this.si_kind.DataPropertyName = "si_kind";
- this.si_kind.HeaderText = "解析方式";
- this.si_kind.MinimumWidth = 10;
- this.si_kind.Name = "si_kind";
- this.si_kind.Visible = false;
- this.si_kind.Width = 200;
- //
- // si_indexstring
- //
- this.si_indexstring.DataPropertyName = "si_indexstring";
- this.si_indexstring.HeaderText = "索引字符";
- this.si_indexstring.MinimumWidth = 10;
- this.si_indexstring.Name = "si_indexstring";
- this.si_indexstring.Visible = false;
- this.si_indexstring.Width = 200;
- //
- // si_length
- //
- this.si_length.DataPropertyName = "si_length";
- this.si_length.HeaderText = "长度";
- this.si_length.MinimumWidth = 10;
- this.si_length.Name = "si_length";
- this.si_length.Visible = false;
- this.si_length.Width = 200;
- //
- // si_expression
- //
- this.si_expression.DataPropertyName = "si_expression";
- this.si_expression.HeaderText = "正则表达式";
- this.si_expression.MinimumWidth = 10;
- this.si_expression.Name = "si_expression";
- this.si_expression.Visible = false;
- this.si_expression.Width = 200;
- //
- // si_item
- //
- this.si_item.DataPropertyName = "si_item";
- this.si_item.Frozen = true;
- this.si_item.HeaderText = "采集项目";
- this.si_item.MinimumWidth = 10;
- this.si_item.Name = "si_item";
- this.si_item.ReadOnly = true;
- this.si_item.Width = 80;
- //
- // si_expressionitem
- //
- this.si_expressionitem.DataPropertyName = "si_expressionitem";
- this.si_expressionitem.Frozen = true;
- this.si_expressionitem.HeaderText = "正则项次";
- this.si_expressionitem.MinimumWidth = 10;
- this.si_expressionitem.Name = "si_expressionitem";
- this.si_expressionitem.Visible = false;
- this.si_expressionitem.Width = 200;
- //
- // CleanDetail
- //
- this.CleanDetail.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.CleanDetail.Location = new System.Drawing.Point(748, 432);
- this.CleanDetail.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.CleanDetail.Name = "CleanDetail";
- this.CleanDetail.Size = new System.Drawing.Size(136, 52);
- this.CleanDetail.TabIndex = 66;
- this.CleanDetail.Text = "清除明细";
- this.CleanDetail.UseVisualStyleBackColor = true;
- this.CleanDetail.Click += new System.EventHandler(this.CleanDetail_Click);
- //
- // pib_id
- //
- this.pib_id.AutoSize = true;
- this.pib_id.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.pib_id.Location = new System.Drawing.Point(284, 320);
- this.pib_id.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.pib_id.Name = "pib_id";
- this.pib_id.Size = new System.Drawing.Size(0, 36);
- this.pib_id.TabIndex = 69;
- this.pib_id.Visible = false;
- //
- // pi_cardcode_label
- //
- this.pi_cardcode_label.AutoSize = true;
- this.pi_cardcode_label.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.pi_cardcode_label.Location = new System.Drawing.Point(6, 76);
- this.pi_cardcode_label.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.pi_cardcode_label.Name = "pi_cardcode_label";
- this.pi_cardcode_label.Size = new System.Drawing.Size(127, 36);
- this.pi_cardcode_label.TabIndex = 72;
- this.pi_cardcode_label.Text = "客户编号";
- //
- // Fresh
- //
- this.Fresh.AutoSize = true;
- this.Fresh.Location = new System.Drawing.Point(456, 28);
- this.Fresh.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.Fresh.Name = "Fresh";
- this.Fresh.Size = new System.Drawing.Size(58, 24);
- this.Fresh.TabIndex = 73;
- this.Fresh.TabStop = true;
- this.Fresh.Text = "刷新";
- this.Fresh.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.Refresh_LinkClicked);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label3.Location = new System.Drawing.Point(10, 1194);
- this.label3.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(146, 41);
- this.label3.TabIndex = 29;
- this.label3.Text = "输出日志";
- //
- // CleanInputAfterCollect
- //
- this.CleanInputAfterCollect.AutoSize = true;
- this.CleanInputAfterCollect.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.CleanInputAfterCollect.Location = new System.Drawing.Point(462, 436);
- this.CleanInputAfterCollect.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.CleanInputAfterCollect.Name = "CleanInputAfterCollect";
- this.CleanInputAfterCollect.Size = new System.Drawing.Size(238, 35);
- this.CleanInputAfterCollect.TabIndex = 74;
- this.CleanInputAfterCollect.Text = "采集后清除输入框";
- this.CleanInputAfterCollect.UseVisualStyleBackColor = true;
- //
- // AllCollected
- //
- this.AllCollected.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.AllCollected.Location = new System.Drawing.Point(1044, 432);
- this.AllCollected.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.AllCollected.Name = "AllCollected";
- this.AllCollected.Size = new System.Drawing.Size(136, 52);
- this.AllCollected.TabIndex = 75;
- this.AllCollected.Text = "全部已采";
- this.AllCollected.UseVisualStyleBackColor = true;
- this.AllCollected.Click += new System.EventHandler(this.AllCollected_Click);
- //
- // GetGridOnly
- //
- this.GetGridOnly.AutoSize = true;
- this.GetGridOnly.Checked = true;
- this.GetGridOnly.CheckState = System.Windows.Forms.CheckState.Checked;
- this.GetGridOnly.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.GetGridOnly.Location = new System.Drawing.Point(460, 76);
- this.GetGridOnly.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.GetGridOnly.Name = "GetGridOnly";
- this.GetGridOnly.Size = new System.Drawing.Size(144, 31);
- this.GetGridOnly.TabIndex = 82;
- this.GetGridOnly.Text = "仅获取表格";
- this.GetGridOnly.UseVisualStyleBackColor = true;
- //
- // dataGridViewCheckBoxColumn1
- //
- this.dataGridViewCheckBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewCheckBoxColumn1.HeaderText = "勾选";
- this.dataGridViewCheckBoxColumn1.MinimumWidth = 10;
- this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
- this.dataGridViewCheckBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dataGridViewCheckBoxColumn1.Width = 60;
- //
- // dataGridViewTextBoxColumn1
- //
- this.dataGridViewTextBoxColumn1.DataPropertyName = "si_detno";
- this.dataGridViewTextBoxColumn1.HeaderText = "bi_id";
- this.dataGridViewTextBoxColumn1.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
- this.dataGridViewTextBoxColumn1.ReadOnly = true;
- this.dataGridViewTextBoxColumn1.Visible = false;
- this.dataGridViewTextBoxColumn1.Width = 80;
- //
- // dataGridViewTextBoxColumn2
- //
- this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewTextBoxColumn2.DataPropertyName = "si_index";
- this.dataGridViewTextBoxColumn2.HeaderText = "明细序号";
- this.dataGridViewTextBoxColumn2.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
- this.dataGridViewTextBoxColumn2.ReadOnly = true;
- this.dataGridViewTextBoxColumn2.Visible = false;
- this.dataGridViewTextBoxColumn2.Width = 96;
- //
- // dataGridViewTextBoxColumn3
- //
- this.dataGridViewTextBoxColumn3.DataPropertyName = "bi_prodcode";
- this.dataGridViewTextBoxColumn3.HeaderText = "物料编号";
- this.dataGridViewTextBoxColumn3.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
- this.dataGridViewTextBoxColumn3.ReadOnly = true;
- this.dataGridViewTextBoxColumn3.Visible = false;
- this.dataGridViewTextBoxColumn3.Width = 78;
- //
- // dataGridViewTextBoxColumn4
- //
- this.dataGridViewTextBoxColumn4.DataPropertyName = "si_indexstring";
- this.dataGridViewTextBoxColumn4.HeaderText = "MPN";
- this.dataGridViewTextBoxColumn4.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
- this.dataGridViewTextBoxColumn4.Visible = false;
- this.dataGridViewTextBoxColumn4.Width = 54;
- //
- // dataGridViewTextBoxColumn5
- //
- this.dataGridViewTextBoxColumn5.DataPropertyName = "si_length";
- this.dataGridViewTextBoxColumn5.HeaderText = "LotNo";
- this.dataGridViewTextBoxColumn5.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
- this.dataGridViewTextBoxColumn5.ReadOnly = true;
- this.dataGridViewTextBoxColumn5.Visible = false;
- this.dataGridViewTextBoxColumn5.Width = 48;
- //
- // dataGridViewTextBoxColumn6
- //
- this.dataGridViewTextBoxColumn6.DataPropertyName = "si_expression";
- this.dataGridViewTextBoxColumn6.HeaderText = "DateCode";
- this.dataGridViewTextBoxColumn6.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
- this.dataGridViewTextBoxColumn6.Visible = false;
- this.dataGridViewTextBoxColumn6.Width = 60;
- //
- // dataGridViewTextBoxColumn7
- //
- this.dataGridViewTextBoxColumn7.DataPropertyName = "bi_inqty";
- this.dataGridViewTextBoxColumn7.HeaderText = "数量";
- this.dataGridViewTextBoxColumn7.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
- this.dataGridViewTextBoxColumn7.ReadOnly = true;
- this.dataGridViewTextBoxColumn7.Width = 80;
- //
- // dataGridViewTextBoxColumn8
- //
- this.dataGridViewTextBoxColumn8.DataPropertyName = "pib_custbarcode";
- this.dataGridViewTextBoxColumn8.HeaderText = "唯一条码";
- this.dataGridViewTextBoxColumn8.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
- this.dataGridViewTextBoxColumn8.Width = 90;
- //
- // dataGridViewTextBoxColumn9
- //
- this.dataGridViewTextBoxColumn9.DataPropertyName = "pib_cusoutboxcode";
- this.dataGridViewTextBoxColumn9.HeaderText = "中盒号";
- this.dataGridViewTextBoxColumn9.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
- this.dataGridViewTextBoxColumn9.Width = 78;
- //
- // dataGridViewTextBoxColumn10
- //
- this.dataGridViewTextBoxColumn10.HeaderText = "外箱号";
- this.dataGridViewTextBoxColumn10.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
- this.dataGridViewTextBoxColumn10.Visible = false;
- this.dataGridViewTextBoxColumn10.Width = 108;
- //
- // dataGridViewTextBoxColumn11
- //
- this.dataGridViewTextBoxColumn11.DataPropertyName = "si_item";
- this.dataGridViewTextBoxColumn11.HeaderText = "采集项次";
- this.dataGridViewTextBoxColumn11.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
- this.dataGridViewTextBoxColumn11.ReadOnly = true;
- this.dataGridViewTextBoxColumn11.Width = 54;
- //
- // dataGridViewTextBoxColumn12
- //
- this.dataGridViewTextBoxColumn12.DataPropertyName = "si_kind";
- this.dataGridViewTextBoxColumn12.HeaderText = "解析方式";
- this.dataGridViewTextBoxColumn12.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
- this.dataGridViewTextBoxColumn12.ReadOnly = true;
- this.dataGridViewTextBoxColumn12.Width = 78;
- //
- // dataGridViewTextBoxColumn13
- //
- this.dataGridViewTextBoxColumn13.DataPropertyName = "si_expression";
- this.dataGridViewTextBoxColumn13.HeaderText = "正则表达式";
- this.dataGridViewTextBoxColumn13.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
- this.dataGridViewTextBoxColumn13.ReadOnly = true;
- this.dataGridViewTextBoxColumn13.Width = 66;
- //
- // dataGridViewTextBoxColumn14
- //
- this.dataGridViewTextBoxColumn14.DataPropertyName = "si_index";
- this.dataGridViewTextBoxColumn14.HeaderText = "起始位置";
- this.dataGridViewTextBoxColumn14.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
- this.dataGridViewTextBoxColumn14.Width = 78;
- //
- // dataGridViewTextBoxColumn15
- //
- this.dataGridViewTextBoxColumn15.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewTextBoxColumn15.DataPropertyName = "si_length";
- this.dataGridViewTextBoxColumn15.HeaderText = "字符长度";
- this.dataGridViewTextBoxColumn15.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
- this.dataGridViewTextBoxColumn15.Width = 90;
- //
- // dataGridViewTextBoxColumn16
- //
- this.dataGridViewTextBoxColumn16.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewTextBoxColumn16.DataPropertyName = "pib_outboxcode2";
- this.dataGridViewTextBoxColumn16.HeaderText = "外箱号";
- this.dataGridViewTextBoxColumn16.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
- this.dataGridViewTextBoxColumn16.Width = 90;
- //
- // dataGridViewCheckBoxColumn2
- //
- this.dataGridViewCheckBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewCheckBoxColumn2.DataPropertyName = "pib_ifpick";
- this.dataGridViewCheckBoxColumn2.HeaderText = "已采集";
- this.dataGridViewCheckBoxColumn2.MinimumWidth = 10;
- this.dataGridViewCheckBoxColumn2.Name = "dataGridViewCheckBoxColumn2";
- this.dataGridViewCheckBoxColumn2.Width = 60;
- //
- // dataGridViewCheckBoxColumn3
- //
- this.dataGridViewCheckBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewCheckBoxColumn3.DataPropertyName = "pib_ifprint";
- this.dataGridViewCheckBoxColumn3.HeaderText = "已打印";
- this.dataGridViewCheckBoxColumn3.MinimumWidth = 10;
- this.dataGridViewCheckBoxColumn3.Name = "dataGridViewCheckBoxColumn3";
- this.dataGridViewCheckBoxColumn3.Width = 60;
- //
- // dataGridViewTextBoxColumn17
- //
- this.dataGridViewTextBoxColumn17.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewTextBoxColumn17.DataPropertyName = "si_detno";
- this.dataGridViewTextBoxColumn17.HeaderText = "顺序";
- this.dataGridViewTextBoxColumn17.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
- this.dataGridViewTextBoxColumn17.ReadOnly = true;
- this.dataGridViewTextBoxColumn17.Width = 60;
- //
- // dataGridViewTextBoxColumn18
- //
- this.dataGridViewTextBoxColumn18.DataPropertyName = "si_index";
- this.dataGridViewTextBoxColumn18.HeaderText = "起始位置";
- this.dataGridViewTextBoxColumn18.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
- this.dataGridViewTextBoxColumn18.Visible = false;
- this.dataGridViewTextBoxColumn18.Width = 200;
- //
- // dataGridViewTextBoxColumn19
- //
- this.dataGridViewTextBoxColumn19.DataPropertyName = "si_kind";
- this.dataGridViewTextBoxColumn19.HeaderText = "解析方式";
- this.dataGridViewTextBoxColumn19.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
- this.dataGridViewTextBoxColumn19.Visible = false;
- this.dataGridViewTextBoxColumn19.Width = 200;
- //
- // dataGridViewTextBoxColumn20
- //
- this.dataGridViewTextBoxColumn20.DataPropertyName = "si_indexstring";
- this.dataGridViewTextBoxColumn20.HeaderText = "索引字符";
- this.dataGridViewTextBoxColumn20.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
- this.dataGridViewTextBoxColumn20.Visible = false;
- this.dataGridViewTextBoxColumn20.Width = 200;
- //
- // dataGridViewTextBoxColumn21
- //
- this.dataGridViewTextBoxColumn21.DataPropertyName = "si_length";
- this.dataGridViewTextBoxColumn21.HeaderText = "长度";
- this.dataGridViewTextBoxColumn21.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
- this.dataGridViewTextBoxColumn21.Visible = false;
- this.dataGridViewTextBoxColumn21.Width = 200;
- //
- // dataGridViewTextBoxColumn22
- //
- this.dataGridViewTextBoxColumn22.DataPropertyName = "si_expression";
- this.dataGridViewTextBoxColumn22.HeaderText = "正则表达式";
- this.dataGridViewTextBoxColumn22.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
- this.dataGridViewTextBoxColumn22.Visible = false;
- this.dataGridViewTextBoxColumn22.Width = 200;
- //
- // dataGridViewTextBoxColumn23
- //
- this.dataGridViewTextBoxColumn23.DataPropertyName = "si_item";
- this.dataGridViewTextBoxColumn23.HeaderText = "采集项目";
- this.dataGridViewTextBoxColumn23.MinimumWidth = 10;
- this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
- this.dataGridViewTextBoxColumn23.ReadOnly = true;
- this.dataGridViewTextBoxColumn23.Width = 80;
- //
- // ChooseAll
- //
- this.ChooseAll.Location = new System.Drawing.Point(8, 520);
- this.ChooseAll.Margin = new System.Windows.Forms.Padding(4);
- this.ChooseAll.Name = "ChooseAll";
- this.ChooseAll.Size = new System.Drawing.Size(76, 44);
- this.ChooseAll.TabIndex = 84;
- this.ChooseAll.Text = "全选";
- this.ChooseAll.UseVisualStyleBackColor = true;
- this.ChooseAll.Click += new System.EventHandler(this.ChooseAll_Click);
- //
- // pi_date
- //
- this.pi_date.AutoSize = true;
- this.pi_date.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.pi_date.Location = new System.Drawing.Point(10, 316);
- this.pi_date.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.pi_date.Name = "pi_date";
- this.pi_date.Size = new System.Drawing.Size(0, 36);
- this.pi_date.TabIndex = 86;
- this.pi_date.Visible = false;
- //
- // CleanBarCode
- //
- this.CleanBarCode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.CleanBarCode.Location = new System.Drawing.Point(898, 356);
- this.CleanBarCode.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.CleanBarCode.Name = "CleanBarCode";
- this.CleanBarCode.Size = new System.Drawing.Size(136, 52);
- this.CleanBarCode.TabIndex = 87;
- this.CleanBarCode.Text = "清空条码";
- this.CleanBarCode.UseVisualStyleBackColor = true;
- this.CleanBarCode.Click += new System.EventHandler(this.CleanBarCode_Click);
- //
- // MenuSetting
- //
- this.MenuSetting.Location = new System.Drawing.Point(460, 224);
- this.MenuSetting.Margin = new System.Windows.Forms.Padding(6);
- this.MenuSetting.Name = "MenuSetting";
- this.MenuSetting.Size = new System.Drawing.Size(176, 46);
- this.MenuSetting.TabIndex = 89;
- this.MenuSetting.Text = "后台管理";
- this.MenuSetting.UseVisualStyleBackColor = true;
- this.MenuSetting.Click += new System.EventHandler(this.MenuSetting_Click);
- //
- // ShowMenu
- //
- this.ShowMenu.ImageScalingSize = new System.Drawing.Size(32, 32);
- this.ShowMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.采集策略设置,
- this.附加信息设置,
- this.导出数据,
- this.标签维护,
- this.条码导入生成,
- this.下载模板,
- this.流水调整});
- this.ShowMenu.Name = "ShowMenu";
- this.ShowMenu.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
- this.ShowMenu.Size = new System.Drawing.Size(233, 270);
- this.ShowMenu.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.Menu_ItemClicked);
- //
- // 采集策略设置
- //
- this.采集策略设置.Name = "采集策略设置";
- this.采集策略设置.Size = new System.Drawing.Size(232, 38);
- this.采集策略设置.Text = "采集策略设置";
- //
- // 附加信息设置
- //
- this.附加信息设置.Name = "附加信息设置";
- this.附加信息设置.Size = new System.Drawing.Size(232, 38);
- this.附加信息设置.Text = "附加信息设置";
- //
- // 导出数据
- //
- this.导出数据.Name = "导出数据";
- this.导出数据.Size = new System.Drawing.Size(232, 38);
- this.导出数据.Text = "导出数据";
- //
- // 标签维护
- //
- this.标签维护.Name = "标签维护";
- this.标签维护.Size = new System.Drawing.Size(232, 38);
- this.标签维护.Text = "标签维护";
- //
- // 条码导入生成
- //
- this.条码导入生成.Name = "条码导入生成";
- this.条码导入生成.Size = new System.Drawing.Size(232, 38);
- this.条码导入生成.Text = "条码导入生成";
- //
- // 下载模板
- //
- this.下载模板.Name = "下载模板";
- this.下载模板.Size = new System.Drawing.Size(232, 38);
- this.下载模板.Text = "下载模板";
- //
- // 流水调整
- //
- this.流水调整.Name = "流水调整";
- this.流水调整.Size = new System.Drawing.Size(232, 38);
- this.流水调整.Text = "流水调整";
- //
- // ImportExcel
- //
- this.ImportExcel.FileName = "ImportExcel";
- //
- // pi_class
- //
- this.pi_class.AutoSize = true;
- this.pi_class.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.pi_class.Location = new System.Drawing.Point(200, 510);
- this.pi_class.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.pi_class.Name = "pi_class";
- this.pi_class.Size = new System.Drawing.Size(0, 36);
- this.pi_class.TabIndex = 90;
- this.pi_class.Visible = false;
- //
- // CustBarCode
- //
- this.CustBarCode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.CustBarCode.Location = new System.Drawing.Point(1044, 356);
- this.CustBarCode.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.CustBarCode.Name = "CustBarCode";
- this.CustBarCode.Size = new System.Drawing.Size(136, 52);
- this.CustBarCode.TabIndex = 91;
- this.CustBarCode.Text = "特殊条码";
- this.CustBarCode.UseVisualStyleBackColor = true;
- this.CustBarCode.Click += new System.EventHandler(this.CustBarCode_Click);
- //
- // cu_code
- //
- this.cu_code.AllPower = null;
- this.cu_code.Caller = null;
- this.cu_code.Condition = null;
- this.cu_code.DBTitle = null;
- this.cu_code.FormName = null;
- this.cu_code.Location = new System.Drawing.Point(152, 76);
- this.cu_code.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.cu_code.Name = "cu_code";
- this.cu_code.Power = null;
- this.cu_code.ReturnData = null;
- this.cu_code.SelectField = null;
- this.cu_code.SetValueField = null;
- this.cu_code.Size = new System.Drawing.Size(298, 42);
- this.cu_code.TabIndex = 88;
- this.cu_code.TableName = null;
- this.cu_code.TextBoxEnable = false;
- this.cu_code.UserControlTextChanged += new UAS_LabelMachine.CustomControl.SearchTextBox.OnTextChange(this.cu_code_UserControlTextChanged);
- //
- // groupBoxWithBorder1
- //
- this.groupBoxWithBorder1.Controls.Add(this.Order_Prod);
- this.groupBoxWithBorder1.Controls.Add(this.Order_Detno);
- this.groupBoxWithBorder1.Controls.Add(this.label18);
- this.groupBoxWithBorder1.Controls.Add(this.MidBoxEnd);
- this.groupBoxWithBorder1.Controls.Add(this.MidBoxBegin);
- this.groupBoxWithBorder1.Controls.Add(this.label16);
- this.groupBoxWithBorder1.Controls.Add(this.SingleBoxEnd);
- this.groupBoxWithBorder1.Controls.Add(this.SingleBoxBegin);
- this.groupBoxWithBorder1.Controls.Add(this.label12);
- this.groupBoxWithBorder1.Controls.Add(this.label7);
- this.groupBoxWithBorder1.Location = new System.Drawing.Point(1196, 12);
- this.groupBoxWithBorder1.Margin = new System.Windows.Forms.Padding(4);
- this.groupBoxWithBorder1.Name = "groupBoxWithBorder1";
- this.groupBoxWithBorder1.Padding = new System.Windows.Forms.Padding(4);
- this.groupBoxWithBorder1.Size = new System.Drawing.Size(302, 500);
- this.groupBoxWithBorder1.TabIndex = 81;
- this.groupBoxWithBorder1.TabStop = false;
- this.groupBoxWithBorder1.Text = " 打印参数设置(补打)";
- //
- // Order_Prod
- //
- this.Order_Prod.AutoSize = true;
- this.Order_Prod.Checked = true;
- this.Order_Prod.Location = new System.Drawing.Point(59, 370);
- this.Order_Prod.Name = "Order_Prod";
- this.Order_Prod.Size = new System.Drawing.Size(149, 28);
- this.Order_Prod.TabIndex = 92;
- this.Order_Prod.TabStop = true;
- this.Order_Prod.Text = "订单+料号";
- this.Order_Prod.UseVisualStyleBackColor = true;
- this.Order_Prod.Visible = false;
- //
- // Order_Detno
- //
- this.Order_Detno.AutoSize = true;
- this.Order_Detno.Location = new System.Drawing.Point(59, 427);
- this.Order_Detno.Name = "Order_Detno";
- this.Order_Detno.Size = new System.Drawing.Size(149, 28);
- this.Order_Detno.TabIndex = 91;
- this.Order_Detno.Text = "订单+序号";
- this.Order_Detno.UseVisualStyleBackColor = true;
- this.Order_Detno.Visible = false;
- //
- // label18
- //
- this.label18.AutoSize = true;
- this.label18.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label18.Location = new System.Drawing.Point(150, 288);
- this.label18.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(24, 31);
- this.label18.TabIndex = 90;
- this.label18.Text = "-";
- //
- // MidBoxEnd
- //
- this.MidBoxEnd.ID = null;
- this.MidBoxEnd.Location = new System.Drawing.Point(176, 274);
- this.MidBoxEnd.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.MidBoxEnd.Name = "MidBoxEnd";
- this.MidBoxEnd.Size = new System.Drawing.Size(96, 35);
- this.MidBoxEnd.Str = null;
- this.MidBoxEnd.Str1 = null;
- this.MidBoxEnd.Str2 = null;
- this.MidBoxEnd.TabIndex = 89;
- //
- // MidBoxBegin
- //
- this.MidBoxBegin.ID = null;
- this.MidBoxBegin.Location = new System.Drawing.Point(26, 274);
- this.MidBoxBegin.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.MidBoxBegin.Name = "MidBoxBegin";
- this.MidBoxBegin.Size = new System.Drawing.Size(96, 35);
- this.MidBoxBegin.Str = null;
- this.MidBoxBegin.Str1 = null;
- this.MidBoxBegin.Str2 = null;
- this.MidBoxBegin.TabIndex = 88;
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label16.Location = new System.Drawing.Point(148, 142);
- this.label16.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(24, 31);
- this.label16.TabIndex = 87;
- this.label16.Text = "-";
- //
- // SingleBoxEnd
- //
- this.SingleBoxEnd.ID = null;
- this.SingleBoxEnd.Location = new System.Drawing.Point(174, 128);
- this.SingleBoxEnd.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.SingleBoxEnd.Name = "SingleBoxEnd";
- this.SingleBoxEnd.Size = new System.Drawing.Size(96, 35);
- this.SingleBoxEnd.Str = null;
- this.SingleBoxEnd.Str1 = null;
- this.SingleBoxEnd.Str2 = null;
- this.SingleBoxEnd.TabIndex = 86;
- //
- // SingleBoxBegin
- //
- this.SingleBoxBegin.ID = null;
- this.SingleBoxBegin.Location = new System.Drawing.Point(24, 128);
- this.SingleBoxBegin.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.SingleBoxBegin.Name = "SingleBoxBegin";
- this.SingleBoxBegin.Size = new System.Drawing.Size(96, 35);
- this.SingleBoxBegin.Str = null;
- this.SingleBoxBegin.Str1 = null;
- this.SingleBoxBegin.Str2 = null;
- this.SingleBoxBegin.TabIndex = 85;
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label12.Location = new System.Drawing.Point(32, 234);
- this.label12.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(110, 31);
- this.label12.TabIndex = 77;
- this.label12.Text = "中盒范围";
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label7.Location = new System.Drawing.Point(32, 92);
- this.label7.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(110, 31);
- this.label7.TabIndex = 76;
- this.label7.Text = "单盘范围";
- //
- // pr_code
- //
- this.pr_code.AllPower = null;
- this.pr_code.Caller = null;
- this.pr_code.Condition = null;
- this.pr_code.DBTitle = null;
- this.pr_code.FormName = null;
- this.pr_code.Location = new System.Drawing.Point(152, 364);
- this.pr_code.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.pr_code.Name = "pr_code";
- this.pr_code.Power = null;
- this.pr_code.ReturnData = null;
- this.pr_code.SelectField = null;
- this.pr_code.SetValueField = null;
- this.pr_code.Size = new System.Drawing.Size(292, 42);
- this.pr_code.TabIndex = 68;
- this.pr_code.TableName = null;
- this.pr_code.TextBoxEnable = false;
- this.pr_code.UserControlTextChanged += new UAS_LabelMachine.CustomControl.SearchTextBox.OnTextChange(this.pr_code_UserControlTextChanged);
- this.pr_code.SearchIconClick += new UAS_LabelMachine.CustomControl.SearchTextBox.Icon_Click(this.pr_code_SearchIconClick);
- //
- // CollectionProcess
- //
- this.CollectionProcess.Controls.Add(this.Capacity);
- this.CollectionProcess.Controls.Add(this.Process_midboxcode);
- this.CollectionProcess.Controls.Add(this.Process_outboxcode);
- this.CollectionProcess.Controls.Add(this.TotalCount);
- this.CollectionProcess.Controls.Add(this.label17);
- this.CollectionProcess.Controls.Add(this.CollectedCount);
- this.CollectionProcess.Controls.Add(this.label14);
- this.CollectionProcess.Controls.Add(this.label11);
- this.CollectionProcess.Controls.Add(this.label13);
- this.CollectionProcess.Controls.Add(this.Installed);
- this.CollectionProcess.Controls.Add(this.Process);
- this.CollectionProcess.Location = new System.Drawing.Point(928, 12);
- this.CollectionProcess.Margin = new System.Windows.Forms.Padding(4);
- this.CollectionProcess.Name = "CollectionProcess";
- this.CollectionProcess.Padding = new System.Windows.Forms.Padding(4);
- this.CollectionProcess.Size = new System.Drawing.Size(260, 310);
- this.CollectionProcess.TabIndex = 80;
- this.CollectionProcess.TabStop = false;
- this.CollectionProcess.Text = " ";
- //
- // Capacity
- //
- this.Capacity.AutoSize = true;
- this.Capacity.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.Capacity.Location = new System.Drawing.Point(130, 148);
- this.Capacity.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.Capacity.Name = "Capacity";
- this.Capacity.Size = new System.Drawing.Size(0, 31);
- this.Capacity.TabIndex = 75;
- //
- // Process_midboxcode
- //
- this.Process_midboxcode.AutoSize = true;
- this.Process_midboxcode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.Process_midboxcode.Location = new System.Drawing.Point(130, 236);
- this.Process_midboxcode.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.Process_midboxcode.Name = "Process_midboxcode";
- this.Process_midboxcode.Size = new System.Drawing.Size(28, 31);
- this.Process_midboxcode.TabIndex = 74;
- this.Process_midboxcode.Text = "0";
- //
- // Process_outboxcode
- //
- this.Process_outboxcode.AutoSize = true;
- this.Process_outboxcode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.Process_outboxcode.Location = new System.Drawing.Point(130, 188);
- this.Process_outboxcode.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.Process_outboxcode.Name = "Process_outboxcode";
- this.Process_outboxcode.Size = new System.Drawing.Size(28, 31);
- this.Process_outboxcode.TabIndex = 73;
- this.Process_outboxcode.Text = "0";
- //
- // TotalCount
- //
- this.TotalCount.AutoSize = true;
- this.TotalCount.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.TotalCount.ForeColor = System.Drawing.Color.Blue;
- this.TotalCount.Location = new System.Drawing.Point(198, 52);
- this.TotalCount.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.TotalCount.Name = "TotalCount";
- this.TotalCount.Size = new System.Drawing.Size(28, 31);
- this.TotalCount.TabIndex = 72;
- this.TotalCount.Text = "0";
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label17.Location = new System.Drawing.Point(170, 52);
- this.label17.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(24, 31);
- this.label17.TabIndex = 71;
- this.label17.Text = "/";
- //
- // CollectedCount
- //
- this.CollectedCount.AutoSize = true;
- this.CollectedCount.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.CollectedCount.ForeColor = System.Drawing.Color.Red;
- this.CollectedCount.Location = new System.Drawing.Point(134, 52);
- this.CollectedCount.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.CollectedCount.Name = "CollectedCount";
- this.CollectedCount.Size = new System.Drawing.Size(28, 31);
- this.CollectedCount.TabIndex = 70;
- this.CollectedCount.Text = "0";
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label14.Location = new System.Drawing.Point(30, 188);
- this.label14.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(62, 31);
- this.label14.TabIndex = 69;
- this.label14.Text = "箱号";
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label11.Location = new System.Drawing.Point(30, 234);
- this.label11.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(62, 31);
- this.label11.TabIndex = 68;
- this.label11.Text = "盒号";
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label13.Location = new System.Drawing.Point(30, 108);
- this.label13.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(86, 31);
- this.label13.TabIndex = 67;
- this.label13.Text = "当前盒";
- //
- // Installed
- //
- this.Installed.AutoSize = true;
- this.Installed.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.Installed.Location = new System.Drawing.Point(130, 108);
- this.Installed.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.Installed.Name = "Installed";
- this.Installed.Size = new System.Drawing.Size(0, 31);
- this.Installed.TabIndex = 66;
- //
- // Process
- //
- this.Process.AutoSize = true;
- this.Process.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.Process.Location = new System.Drawing.Point(30, 52);
- this.Process.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.Process.Name = "Process";
- this.Process.Size = new System.Drawing.Size(86, 31);
- this.Process.TabIndex = 65;
- this.Process.Text = "总进度";
- //
- // sg_separator
- //
- this.sg_separator.Enabled = false;
- this.sg_separator.ID = null;
- this.sg_separator.Location = new System.Drawing.Point(580, 132);
- this.sg_separator.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.sg_separator.Name = "sg_separator";
- this.sg_separator.Size = new System.Drawing.Size(52, 35);
- this.sg_separator.Str = null;
- this.sg_separator.Str1 = null;
- this.sg_separator.Str2 = null;
- this.sg_separator.TabIndex = 62;
- //
- // Input
- //
- this.Input.ID = null;
- this.Input.Location = new System.Drawing.Point(152, 436);
- this.Input.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.Input.Name = "Input";
- this.Input.Size = new System.Drawing.Size(296, 35);
- this.Input.Str = null;
- this.Input.Str1 = null;
- this.Input.Str2 = null;
- this.Input.TabIndex = 54;
- this.Input.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Input_KeyDown);
- //
- // griddetno
- //
- this.griddetno.ID = null;
- this.griddetno.Location = new System.Drawing.Point(152, 264);
- this.griddetno.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.griddetno.Name = "griddetno";
- this.griddetno.Size = new System.Drawing.Size(200, 35);
- this.griddetno.Str = null;
- this.griddetno.Str1 = null;
- this.griddetno.Str2 = null;
- this.griddetno.TabIndex = 50;
- this.griddetno.KeyDown += new System.Windows.Forms.KeyEventHandler(this.griddetno_KeyDown);
- //
- // sg_code
- //
- this.sg_code.AllPower = null;
- this.sg_code.Caller = null;
- this.sg_code.Condition = null;
- this.sg_code.DBTitle = null;
- this.sg_code.FormName = null;
- this.sg_code.Location = new System.Drawing.Point(152, 132);
- this.sg_code.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.sg_code.Name = "sg_code";
- this.sg_code.Power = null;
- this.sg_code.ReturnData = null;
- this.sg_code.SelectField = null;
- this.sg_code.SetValueField = null;
- this.sg_code.Size = new System.Drawing.Size(298, 42);
- this.sg_code.TabIndex = 32;
- this.sg_code.TableName = null;
- this.sg_code.TextBoxEnable = false;
- this.sg_code.UserControlTextChanged += new UAS_LabelMachine.CustomControl.SearchTextBox.OnTextChange(this.sg_code_UserControlTextChanged);
- //
- // MessageLog
- //
- this.MessageLog.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.MessageLog.Location = new System.Drawing.Point(8, 1244);
- this.MessageLog.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.MessageLog.Name = "MessageLog";
- this.MessageLog.Size = new System.Drawing.Size(2494, 190);
- this.MessageLog.TabIndex = 28;
- this.MessageLog.Text = "";
- //
- // LabelInf
- //
- this.LabelInf.AllowUserToAddRows = false;
- this.LabelInf.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
- this.LabelInf.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCells;
- this.LabelInf.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.LabelInf.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.Choose,
- this.pr_midboxcapacity_user,
- this.pib_ifpick,
- this.pib_ifprint,
- this.pib_id1,
- this.pib_pdno,
- this.pib_prodcode,
- this.pd_ordercode,
- this.pr_orispeccode,
- this.pib_brand,
- this.pib_madein,
- this.pr_zxbzs,
- this.pr_unit,
- this.pib_lotno,
- this.pib_datecode,
- this.pib_year,
- this.pib_month,
- this.pib_day,
- this.pib_qty,
- this.pib_barcode,
- this.pib_custbarcode,
- this.pib_custoutboxcode,
- this.pd_pocode,
- this.pd_custprodcode,
- this.pd_custprodspec,
- this.pr_spec,
- this.pib_outboxcode1,
- this.pib_outboxcode2});
- this.LabelInf.Location = new System.Drawing.Point(4, 520);
- this.LabelInf.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.LabelInf.Name = "LabelInf";
- this.LabelInf.RowHeadersWidth = 82;
- this.LabelInf.RowTemplate.Height = 23;
- this.LabelInf.Size = new System.Drawing.Size(2502, 666);
- this.LabelInf.TabIndex = 27;
- this.LabelInf.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.LabelInf_CellEndEdit);
- this.LabelInf.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.LabelInf_CellMouseClick);
- this.LabelInf.CellPainting += new System.Windows.Forms.DataGridViewCellPaintingEventHandler(this.LabelInf_CellPainting);
- this.LabelInf.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.LabelInf_CellValueChanged);
- this.LabelInf.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.LabelInf_DataError);
- //
- // Choose
- //
- this.Choose.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.Choose.HeaderText = "勾选";
- this.Choose.MinimumWidth = 10;
- this.Choose.Name = "Choose";
- this.Choose.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.Choose.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.Choose.Width = 55;
- //
- // pr_midboxcapacity_user
- //
- this.pr_midboxcapacity_user.DataPropertyName = "pr_midboxcapacity_user";
- this.pr_midboxcapacity_user.HeaderText = "pr_midboxcapacity_user";
- this.pr_midboxcapacity_user.MinimumWidth = 10;
- this.pr_midboxcapacity_user.Name = "pr_midboxcapacity_user";
- this.pr_midboxcapacity_user.Visible = false;
- this.pr_midboxcapacity_user.Width = 319;
- //
- // pib_ifpick
- //
- this.pib_ifpick.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.pib_ifpick.DataPropertyName = "pib_ifpick";
- this.pib_ifpick.HeaderText = "已采集";
- this.pib_ifpick.MinimumWidth = 10;
- this.pib_ifpick.Name = "pib_ifpick";
- this.pib_ifpick.Width = 60;
- //
- // pib_ifprint
- //
- this.pib_ifprint.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.pib_ifprint.DataPropertyName = "pib_ifprint";
- this.pib_ifprint.HeaderText = "已打印";
- this.pib_ifprint.MinimumWidth = 10;
- this.pib_ifprint.Name = "pib_ifprint";
- this.pib_ifprint.Width = 60;
- //
- // pib_id1
- //
- this.pib_id1.DataPropertyName = "pib_id";
- this.pib_id1.HeaderText = "pib_id";
- this.pib_id1.MinimumWidth = 10;
- this.pib_id1.Name = "pib_id1";
- this.pib_id1.Visible = false;
- this.pib_id1.Width = 127;
- //
- // pib_pdno
- //
- this.pib_pdno.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
- this.pib_pdno.DataPropertyName = "pib_pdno";
- this.pib_pdno.HeaderText = "明细序号";
- this.pib_pdno.MinimumWidth = 10;
- this.pib_pdno.Name = "pib_pdno";
- this.pib_pdno.ReadOnly = true;
- this.pib_pdno.Width = 151;
- //
- // pib_prodcode
- //
- this.pib_prodcode.DataPropertyName = "pib_prodcode";
- this.pib_prodcode.HeaderText = "物料编号";
- this.pib_prodcode.MinimumWidth = 10;
- this.pib_prodcode.Name = "pib_prodcode";
- this.pib_prodcode.ReadOnly = true;
- this.pib_prodcode.Width = 151;
- //
- // pd_ordercode
- //
- this.pd_ordercode.DataPropertyName = "pd_ordercode";
- this.pd_ordercode.HeaderText = "订单编号";
- this.pd_ordercode.MinimumWidth = 10;
- this.pd_ordercode.Name = "pd_ordercode";
- this.pd_ordercode.Width = 151;
- //
- // pr_orispeccode
- //
- this.pr_orispeccode.DataPropertyName = "pr_orispeccode";
- this.pr_orispeccode.HeaderText = "MPN";
- this.pr_orispeccode.MinimumWidth = 10;
- this.pr_orispeccode.Name = "pr_orispeccode";
- this.pr_orispeccode.ReadOnly = true;
- this.pr_orispeccode.Width = 91;
- //
- // pib_brand
- //
- this.pib_brand.DataPropertyName = "pib_brand";
- this.pib_brand.HeaderText = "品牌";
- this.pib_brand.MinimumWidth = 10;
- this.pib_brand.Name = "pib_brand";
- this.pib_brand.ReadOnly = true;
- this.pib_brand.Width = 103;
- //
- // pib_madein
- //
- this.pib_madein.DataPropertyName = "pib_madein";
- this.pib_madein.HeaderText = "产地";
- this.pib_madein.MinimumWidth = 10;
- this.pib_madein.Name = "pib_madein";
- this.pib_madein.Width = 103;
- //
- // pr_zxbzs
- //
- this.pr_zxbzs.DataPropertyName = "pr_zxbzs";
- this.pr_zxbzs.HeaderText = "最小包装数";
- this.pr_zxbzs.MinimumWidth = 10;
- this.pr_zxbzs.Name = "pr_zxbzs";
- this.pr_zxbzs.Visible = false;
- this.pr_zxbzs.Width = 118;
- //
- // pr_unit
- //
- this.pr_unit.DataPropertyName = "pr_unit";
- this.pr_unit.HeaderText = "单位";
- this.pr_unit.MinimumWidth = 10;
- this.pr_unit.Name = "pr_unit";
- this.pr_unit.Visible = false;
- this.pr_unit.Width = 97;
- //
- // pib_lotno
- //
- this.pib_lotno.DataPropertyName = "pib_lotno";
- this.pib_lotno.HeaderText = "LotNo";
- this.pib_lotno.MinimumWidth = 10;
- this.pib_lotno.Name = "pib_lotno";
- this.pib_lotno.Width = 115;
- //
- // pib_datecode
- //
- this.pib_datecode.DataPropertyName = "pib_datecode";
- this.pib_datecode.HeaderText = "DateCode";
- this.pib_datecode.MinimumWidth = 10;
- this.pib_datecode.Name = "pib_datecode";
- this.pib_datecode.Width = 151;
- //
- // pib_year
- //
- this.pib_year.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
- this.pib_year.DataPropertyName = "pib_year";
- this.pib_year.HeaderText = "年";
- this.pib_year.MinimumWidth = 10;
- this.pib_year.Name = "pib_year";
- this.pib_year.Width = 79;
- //
- // pib_month
- //
- this.pib_month.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.pib_month.DataPropertyName = "pib_month";
- this.pib_month.HeaderText = "月";
- this.pib_month.MinimumWidth = 10;
- this.pib_month.Name = "pib_month";
- this.pib_month.Width = 42;
- //
- // pib_day
- //
- this.pib_day.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.pib_day.DataPropertyName = "pib_day";
- this.pib_day.HeaderText = "日";
- this.pib_day.MinimumWidth = 10;
- this.pib_day.Name = "pib_day";
- this.pib_day.Width = 42;
- //
- // pib_qty
- //
- this.pib_qty.DataPropertyName = "pib_qty";
- this.pib_qty.HeaderText = "数量";
- this.pib_qty.MinimumWidth = 10;
- this.pib_qty.Name = "pib_qty";
- this.pib_qty.ReadOnly = true;
- this.pib_qty.Width = 103;
- //
- // pib_barcode
- //
- this.pib_barcode.DataPropertyName = "pib_barcode";
- this.pib_barcode.HeaderText = "唯一条码";
- this.pib_barcode.MinimumWidth = 10;
- this.pib_barcode.Name = "pib_barcode";
- this.pib_barcode.ReadOnly = true;
- this.pib_barcode.Visible = false;
- this.pib_barcode.Width = 118;
- //
- // pib_custbarcode
- //
- this.pib_custbarcode.DataPropertyName = "pib_custbarcode";
- this.pib_custbarcode.HeaderText = "料盘条码";
- this.pib_custbarcode.MinimumWidth = 10;
- this.pib_custbarcode.Name = "pib_custbarcode";
- this.pib_custbarcode.ReadOnly = true;
- this.pib_custbarcode.Width = 151;
- //
- // pib_custoutboxcode
- //
- this.pib_custoutboxcode.DataPropertyName = "pib_custoutboxcode";
- this.pib_custoutboxcode.HeaderText = "外箱条码";
- this.pib_custoutboxcode.MinimumWidth = 10;
- this.pib_custoutboxcode.Name = "pib_custoutboxcode";
- this.pib_custoutboxcode.Width = 151;
- //
- // pd_pocode
- //
- this.pd_pocode.DataPropertyName = "pd_pocode";
- this.pd_pocode.HeaderText = "客户PO";
- this.pd_pocode.MinimumWidth = 10;
- this.pd_pocode.Name = "pd_pocode";
- this.pd_pocode.ReadOnly = true;
- this.pd_pocode.Width = 127;
- //
- // pd_custprodcode
- //
- this.pd_custprodcode.DataPropertyName = "pd_custprodcode";
- this.pd_custprodcode.HeaderText = "客户料号";
- this.pd_custprodcode.MinimumWidth = 10;
- this.pd_custprodcode.Name = "pd_custprodcode";
- this.pd_custprodcode.ReadOnly = true;
- this.pd_custprodcode.Width = 151;
- //
- // pd_custprodspec
- //
- this.pd_custprodspec.DataPropertyName = "pd_custprodspec";
- this.pd_custprodspec.HeaderText = "客户型号";
- this.pd_custprodspec.MinimumWidth = 10;
- this.pd_custprodspec.Name = "pd_custprodspec";
- this.pd_custprodspec.ReadOnly = true;
- this.pd_custprodspec.Width = 151;
- //
- // pr_spec
- //
- this.pr_spec.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.pr_spec.DataPropertyName = "pr_spec";
- this.pr_spec.HeaderText = "规格";
- this.pr_spec.MinimumWidth = 10;
- this.pr_spec.Name = "pr_spec";
- this.pr_spec.Width = 350;
- //
- // pib_outboxcode1
- //
- this.pib_outboxcode1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.pib_outboxcode1.DataPropertyName = "pib_outboxcode1";
- this.pib_outboxcode1.HeaderText = "中盒号";
- this.pib_outboxcode1.MinimumWidth = 10;
- this.pib_outboxcode1.Name = "pib_outboxcode1";
- this.pib_outboxcode1.Width = 90;
- //
- // pib_outboxcode2
- //
- this.pib_outboxcode2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.pib_outboxcode2.DataPropertyName = "pib_outboxcode2";
- this.pib_outboxcode2.HeaderText = "外箱号";
- this.pib_outboxcode2.MinimumWidth = 10;
- this.pib_outboxcode2.Name = "pib_outboxcode2";
- this.pib_outboxcode2.Width = 90;
- //
- // pi_inoutno
- //
- this.pi_inoutno.Condition = null;
- this.pi_inoutno.Field = null;
- this.pi_inoutno.Location = new System.Drawing.Point(152, 20);
- this.pi_inoutno.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.pi_inoutno.Name = "pi_inoutno";
- this.pi_inoutno.Size = new System.Drawing.Size(300, 35);
- this.pi_inoutno.TabIndex = 2;
- this.pi_inoutno.TableName = null;
- this.pi_inoutno.Value = null;
- this.pi_inoutno.ValueField = null;
- this.pi_inoutno.UserKeyDown += new UAS_LabelMachine.CustomControl.BlurSearch.OnKeyDown(this.pi_inoutno_KeyDown);
- //
- // SingleLabel
- //
- this.SingleLabel.Controls.Add(this.LabelSpace);
- this.SingleLabel.Controls.Add(this.label8);
- this.SingleLabel.Controls.Add(this.SingleDocRefresh);
- this.SingleLabel.Controls.Add(this.SingleLabelPrinter);
- this.SingleLabel.Controls.Add(this.SingleLabelPrint);
- this.SingleLabel.Controls.Add(this.SingleLabelAutoPrint);
- this.SingleLabel.Controls.Add(this.SingleLabelCombox);
- this.SingleLabel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.SingleLabel.Location = new System.Drawing.Point(1508, 12);
- this.SingleLabel.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.SingleLabel.Name = "SingleLabel";
- this.SingleLabel.Padding = new System.Windows.Forms.Padding(4);
- this.SingleLabel.Size = new System.Drawing.Size(312, 500);
- this.SingleLabel.TabIndex = 77;
- this.SingleLabel.TabStop = false;
- this.SingleLabel.Text = "单盘标签";
- //
- // LabelSpace
- //
- this.LabelSpace.AutoSize = true;
- this.LabelSpace.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.LabelSpace.Location = new System.Drawing.Point(30, 290);
- this.LabelSpace.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.LabelSpace.Name = "LabelSpace";
- this.LabelSpace.Size = new System.Drawing.Size(142, 35);
- this.LabelSpace.TabIndex = 117;
- this.LabelSpace.Text = "标签间隔";
- this.LabelSpace.UseVisualStyleBackColor = true;
- this.LabelSpace.Visible = false;
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label8.Location = new System.Drawing.Point(22, 52);
- this.label8.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(102, 35);
- this.label8.TabIndex = 116;
- this.label8.Text = "格式(T)";
- //
- // SingleDocRefresh
- //
- this.SingleDocRefresh.AutoSize = true;
- this.SingleDocRefresh.Location = new System.Drawing.Point(130, 52);
- this.SingleDocRefresh.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.SingleDocRefresh.Name = "SingleDocRefresh";
- this.SingleDocRefresh.Size = new System.Drawing.Size(82, 41);
- this.SingleDocRefresh.TabIndex = 89;
- this.SingleDocRefresh.TabStop = true;
- this.SingleDocRefresh.Text = "刷新";
- this.SingleDocRefresh.Visible = false;
- this.SingleDocRefresh.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.DocRefresh_LinkClicked);
- //
- // SingleLabelPrinter
- //
- this.SingleLabelPrinter.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.SingleLabelPrinter.Location = new System.Drawing.Point(12, 156);
- this.SingleLabelPrinter.Margin = new System.Windows.Forms.Padding(10, 12, 10, 12);
- this.SingleLabelPrinter.Name = "SingleLabelPrinter";
- this.SingleLabelPrinter.Size = new System.Drawing.Size(284, 50);
- this.SingleLabelPrinter.TabIndex = 40;
- this.SingleLabelPrinter.UserOnSelectIndexChange += new UAS_LabelMachine.CustomControl.PrinterCombox.OnSelectIndexChange(this.LabelPrinter_UserOnSelectIndexChange);
- //
- // SingleLabelPrint
- //
- this.SingleLabelPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.SingleLabelPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.SingleLabelPrint.Location = new System.Drawing.Point(468, 414);
- this.SingleLabelPrint.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.SingleLabelPrint.Name = "SingleLabelPrint";
- this.SingleLabelPrint.Size = new System.Drawing.Size(136, 52);
- this.SingleLabelPrint.TabIndex = 36;
- this.SingleLabelPrint.Text = "打印盘标";
- this.SingleLabelPrint.UseVisualStyleBackColor = true;
- this.SingleLabelPrint.Click += new System.EventHandler(this.SingleLabelPrint_Click);
- //
- // SingleLabelAutoPrint
- //
- this.SingleLabelAutoPrint.AutoSize = true;
- this.SingleLabelAutoPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.SingleLabelAutoPrint.Location = new System.Drawing.Point(32, 234);
- this.SingleLabelAutoPrint.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.SingleLabelAutoPrint.Name = "SingleLabelAutoPrint";
- this.SingleLabelAutoPrint.Size = new System.Drawing.Size(142, 35);
- this.SingleLabelAutoPrint.TabIndex = 30;
- this.SingleLabelAutoPrint.Text = "自动打印";
- this.SingleLabelAutoPrint.UseVisualStyleBackColor = true;
- //
- // SingleLabelCombox
- //
- this.SingleLabelCombox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.SingleLabelCombox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.SingleLabelCombox.FormattingEnabled = true;
- this.SingleLabelCombox.Location = new System.Drawing.Point(14, 92);
- this.SingleLabelCombox.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.SingleLabelCombox.Name = "SingleLabelCombox";
- this.SingleLabelCombox.Size = new System.Drawing.Size(282, 39);
- this.SingleLabelCombox.TabIndex = 0;
- this.SingleLabelCombox.SelectedIndexChanged += new System.EventHandler(this.SingleLabelCombox_SelectedIndexChanged);
- //
- // MidLabel
- //
- this.MidLabel.Controls.Add(this.MidLabelPreView);
- this.MidLabel.Controls.Add(this.GetMidBoxCode);
- this.MidLabel.Controls.Add(this.label9);
- this.MidLabel.Controls.Add(this.MidDocRefresh);
- this.MidLabel.Controls.Add(this.MidLabelNum);
- this.MidLabel.Controls.Add(this.label5);
- this.MidLabel.Controls.Add(this.label4);
- this.MidLabel.Controls.Add(this.MidLabelPrinter);
- this.MidLabel.Controls.Add(this.label15);
- this.MidLabel.Controls.Add(this.MidBoxCapacity);
- this.MidLabel.Controls.Add(this.MidLabelPrint);
- this.MidLabel.Controls.Add(this.MidLabelAutoPrint);
- this.MidLabel.Controls.Add(this.MidLabelCombox);
- this.MidLabel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.MidLabel.Location = new System.Drawing.Point(1824, 12);
- this.MidLabel.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.MidLabel.Name = "MidLabel";
- this.MidLabel.Padding = new System.Windows.Forms.Padding(4);
- this.MidLabel.Size = new System.Drawing.Size(316, 500);
- this.MidLabel.TabIndex = 78;
- this.MidLabel.TabStop = false;
- this.MidLabel.Text = "内盒标签";
- //
- // MidLabelPreView
- //
- this.MidLabelPreView.AutoSize = true;
- this.MidLabelPreView.Location = new System.Drawing.Point(208, 52);
- this.MidLabelPreView.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.MidLabelPreView.Name = "MidLabelPreView";
- this.MidLabelPreView.Size = new System.Drawing.Size(82, 41);
- this.MidLabelPreView.TabIndex = 119;
- this.MidLabelPreView.TabStop = true;
- this.MidLabelPreView.Text = "预览";
- this.MidLabelPreView.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.MidLabelPreView_LinkClicked);
- //
- // GetMidBoxCode
- //
- this.GetMidBoxCode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.GetMidBoxCode.Location = new System.Drawing.Point(16, 416);
- this.GetMidBoxCode.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.GetMidBoxCode.Name = "GetMidBoxCode";
- this.GetMidBoxCode.Size = new System.Drawing.Size(136, 52);
- this.GetMidBoxCode.TabIndex = 118;
- this.GetMidBoxCode.Text = "获取盒号";
- this.GetMidBoxCode.UseVisualStyleBackColor = true;
- this.GetMidBoxCode.Click += new System.EventHandler(this.GetMidBoxCode_Click);
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label9.Location = new System.Drawing.Point(22, 52);
- this.label9.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(102, 35);
- this.label9.TabIndex = 117;
- this.label9.Text = "格式(T)";
- //
- // MidDocRefresh
- //
- this.MidDocRefresh.AutoSize = true;
- this.MidDocRefresh.Location = new System.Drawing.Point(126, 52);
- this.MidDocRefresh.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.MidDocRefresh.Name = "MidDocRefresh";
- this.MidDocRefresh.Size = new System.Drawing.Size(82, 41);
- this.MidDocRefresh.TabIndex = 90;
- this.MidDocRefresh.TabStop = true;
- this.MidDocRefresh.Text = "刷新";
- this.MidDocRefresh.Visible = false;
- this.MidDocRefresh.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.DocRefresh_LinkClicked);
- //
- // MidLabelNum
- //
- this.MidLabelNum.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.MidLabelNum.ID = null;
- this.MidLabelNum.Location = new System.Drawing.Point(106, 348);
- this.MidLabelNum.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.MidLabelNum.Name = "MidLabelNum";
- this.MidLabelNum.Size = new System.Drawing.Size(124, 39);
- this.MidLabelNum.Str = null;
- this.MidLabelNum.Str1 = null;
- this.MidLabelNum.Str2 = null;
- this.MidLabelNum.TabIndex = 56;
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label5.Location = new System.Drawing.Point(28, 360);
- this.label5.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(62, 31);
- this.label5.TabIndex = 50;
- this.label5.Text = "盒号";
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label4.Location = new System.Drawing.Point(28, 298);
- this.label4.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(62, 31);
- this.label4.TabIndex = 49;
- this.label4.Text = "容量";
- //
- // MidLabelPrinter
- //
- this.MidLabelPrinter.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.MidLabelPrinter.Location = new System.Drawing.Point(12, 156);
- this.MidLabelPrinter.Margin = new System.Windows.Forms.Padding(10, 12, 10, 12);
- this.MidLabelPrinter.Name = "MidLabelPrinter";
- this.MidLabelPrinter.Size = new System.Drawing.Size(284, 50);
- this.MidLabelPrinter.TabIndex = 41;
- this.MidLabelPrinter.UserOnSelectIndexChange += new UAS_LabelMachine.CustomControl.PrinterCombox.OnSelectIndexChange(this.LabelPrinter_UserOnSelectIndexChange);
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label15.Location = new System.Drawing.Point(210, 300);
- this.label15.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(38, 31);
- this.label15.TabIndex = 40;
- this.label15.Text = "盘";
- //
- // MidBoxCapacity
- //
- this.MidBoxCapacity.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.MidBoxCapacity.Location = new System.Drawing.Point(108, 288);
- this.MidBoxCapacity.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.MidBoxCapacity.Name = "MidBoxCapacity";
- this.MidBoxCapacity.Size = new System.Drawing.Size(88, 39);
- this.MidBoxCapacity.TabIndex = 30;
- this.MidBoxCapacity.Leave += new System.EventHandler(this.MidBoxCapacity_Leave);
- //
- // MidLabelPrint
- //
- this.MidLabelPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.MidLabelPrint.Location = new System.Drawing.Point(164, 416);
- this.MidLabelPrint.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.MidLabelPrint.Name = "MidLabelPrint";
- this.MidLabelPrint.Size = new System.Drawing.Size(136, 52);
- this.MidLabelPrint.TabIndex = 42;
- this.MidLabelPrint.Text = "打印盒签";
- this.MidLabelPrint.UseVisualStyleBackColor = true;
- this.MidLabelPrint.Click += new System.EventHandler(this.MidLabelPrint_Click);
- //
- // MidLabelAutoPrint
- //
- this.MidLabelAutoPrint.AutoSize = true;
- this.MidLabelAutoPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.MidLabelAutoPrint.Location = new System.Drawing.Point(22, 224);
- this.MidLabelAutoPrint.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.MidLabelAutoPrint.Name = "MidLabelAutoPrint";
- this.MidLabelAutoPrint.Size = new System.Drawing.Size(142, 35);
- this.MidLabelAutoPrint.TabIndex = 41;
- this.MidLabelAutoPrint.Text = "自动打印";
- this.MidLabelAutoPrint.UseVisualStyleBackColor = true;
- //
- // MidLabelCombox
- //
- this.MidLabelCombox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.MidLabelCombox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.MidLabelCombox.FormattingEnabled = true;
- this.MidLabelCombox.Location = new System.Drawing.Point(14, 92);
- this.MidLabelCombox.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.MidLabelCombox.Name = "MidLabelCombox";
- this.MidLabelCombox.Size = new System.Drawing.Size(282, 39);
- this.MidLabelCombox.TabIndex = 40;
- this.MidLabelCombox.SelectedIndexChanged += new System.EventHandler(this.MidLabelCombox_SelectedIndexChanged);
- //
- // OutBoxLabel
- //
- this.OutBoxLabel.Controls.Add(this.DiffCustOutBoxCode);
- this.OutBoxLabel.Controls.Add(this.groupBoxWithBorder2);
- this.OutBoxLabel.Controls.Add(this.label19);
- this.OutBoxLabel.Controls.Add(this.OutDocRefresh);
- this.OutBoxLabel.Controls.Add(this.LogingOut);
- this.OutBoxLabel.Controls.Add(this.GetOutBoxCode);
- this.OutBoxLabel.Controls.Add(this.OutBoxNum);
- this.OutBoxLabel.Controls.Add(this.label10);
- this.OutBoxLabel.Controls.Add(this.label6);
- this.OutBoxLabel.Controls.Add(this.OutBoxPrinter);
- this.OutBoxLabel.Controls.Add(this.OutboxCapacity);
- this.OutBoxLabel.Controls.Add(this.OutBoxLabelPrint);
- this.OutBoxLabel.Controls.Add(this.OutBoxCombox);
- this.OutBoxLabel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.OutBoxLabel.Location = new System.Drawing.Point(2150, 12);
- this.OutBoxLabel.Margin = new System.Windows.Forms.Padding(4);
- this.OutBoxLabel.Name = "OutBoxLabel";
- this.OutBoxLabel.Padding = new System.Windows.Forms.Padding(4);
- this.OutBoxLabel.Size = new System.Drawing.Size(356, 500);
- this.OutBoxLabel.TabIndex = 79;
- this.OutBoxLabel.TabStop = false;
- this.OutBoxLabel.Text = "外箱标签";
- //
- // DiffCustOutBoxCode
- //
- this.DiffCustOutBoxCode.AutoSize = true;
- this.DiffCustOutBoxCode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.DiffCustOutBoxCode.Location = new System.Drawing.Point(206, 344);
- this.DiffCustOutBoxCode.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.DiffCustOutBoxCode.Name = "DiffCustOutBoxCode";
- this.DiffCustOutBoxCode.Size = new System.Drawing.Size(142, 35);
- this.DiffCustOutBoxCode.TabIndex = 96;
- this.DiffCustOutBoxCode.Text = "区分流水";
- this.DiffCustOutBoxCode.UseVisualStyleBackColor = true;
- //
- // groupBoxWithBorder2
- //
- this.groupBoxWithBorder2.Controls.Add(this.cu_print_ordercode);
- this.groupBoxWithBorder2.Controls.Add(this.cu_print_outpo);
- this.groupBoxWithBorder2.Controls.Add(this.cu_print_outdc);
- this.groupBoxWithBorder2.Controls.Add(this.cu_print_outlotno);
- this.groupBoxWithBorder2.Controls.Add(this.cu_print_outprod);
- this.groupBoxWithBorder2.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.groupBoxWithBorder2.Location = new System.Drawing.Point(14, 208);
- this.groupBoxWithBorder2.Margin = new System.Windows.Forms.Padding(4);
- this.groupBoxWithBorder2.Name = "groupBoxWithBorder2";
- this.groupBoxWithBorder2.Padding = new System.Windows.Forms.Padding(4);
- this.groupBoxWithBorder2.Size = new System.Drawing.Size(170, 284);
- this.groupBoxWithBorder2.TabIndex = 91;
- this.groupBoxWithBorder2.TabStop = false;
- this.groupBoxWithBorder2.Text = "区分";
- //
- // cu_print_ordercode
- //
- this.cu_print_ordercode.AutoSize = true;
- this.cu_print_ordercode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cu_print_ordercode.Location = new System.Drawing.Point(24, 146);
- this.cu_print_ordercode.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.cu_print_ordercode.Name = "cu_print_ordercode";
- this.cu_print_ordercode.Size = new System.Drawing.Size(142, 35);
- this.cu_print_ordercode.TabIndex = 95;
- this.cu_print_ordercode.Text = "订单编号";
- this.cu_print_ordercode.UseVisualStyleBackColor = true;
- //
- // cu_print_outpo
- //
- this.cu_print_outpo.AutoSize = true;
- this.cu_print_outpo.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cu_print_outpo.Location = new System.Drawing.Point(24, 100);
- this.cu_print_outpo.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.cu_print_outpo.Name = "cu_print_outpo";
- this.cu_print_outpo.Size = new System.Drawing.Size(142, 35);
- this.cu_print_outpo.TabIndex = 94;
- this.cu_print_outpo.Text = "客户合同";
- this.cu_print_outpo.UseVisualStyleBackColor = true;
- //
- // cu_print_outdc
- //
- this.cu_print_outdc.AutoSize = true;
- this.cu_print_outdc.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cu_print_outdc.Location = new System.Drawing.Point(24, 242);
- this.cu_print_outdc.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.cu_print_outdc.Name = "cu_print_outdc";
- this.cu_print_outdc.Size = new System.Drawing.Size(80, 35);
- this.cu_print_outdc.TabIndex = 93;
- this.cu_print_outdc.Text = "DC";
- this.cu_print_outdc.UseVisualStyleBackColor = true;
- //
- // cu_print_outlotno
- //
- this.cu_print_outlotno.AutoSize = true;
- this.cu_print_outlotno.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cu_print_outlotno.Location = new System.Drawing.Point(24, 192);
- this.cu_print_outlotno.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.cu_print_outlotno.Name = "cu_print_outlotno";
- this.cu_print_outlotno.Size = new System.Drawing.Size(117, 35);
- this.cu_print_outlotno.TabIndex = 92;
- this.cu_print_outlotno.Text = "LotNo";
- this.cu_print_outlotno.UseVisualStyleBackColor = true;
- //
- // cu_print_outprod
- //
- this.cu_print_outprod.AutoSize = true;
- this.cu_print_outprod.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cu_print_outprod.Location = new System.Drawing.Point(24, 50);
- this.cu_print_outprod.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.cu_print_outprod.Name = "cu_print_outprod";
- this.cu_print_outprod.Size = new System.Drawing.Size(142, 35);
- this.cu_print_outprod.TabIndex = 91;
- this.cu_print_outprod.Text = "客户料号";
- this.cu_print_outprod.UseVisualStyleBackColor = true;
- //
- // label19
- //
- this.label19.AutoSize = true;
- this.label19.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label19.Location = new System.Drawing.Point(18, 54);
- this.label19.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(102, 35);
- this.label19.TabIndex = 118;
- this.label19.Text = "格式(T)";
- //
- // OutDocRefresh
- //
- this.OutDocRefresh.AutoSize = true;
- this.OutDocRefresh.Location = new System.Drawing.Point(124, 54);
- this.OutDocRefresh.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.OutDocRefresh.Name = "OutDocRefresh";
- this.OutDocRefresh.Size = new System.Drawing.Size(82, 41);
- this.OutDocRefresh.TabIndex = 91;
- this.OutDocRefresh.TabStop = true;
- this.OutDocRefresh.Text = "刷新";
- this.OutDocRefresh.Visible = false;
- this.OutDocRefresh.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.DocRefresh_LinkClicked);
- //
- // LogingOut
- //
- this.LogingOut.AutoSize = true;
- this.LogingOut.Location = new System.Drawing.Point(206, 54);
- this.LogingOut.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.LogingOut.Name = "LogingOut";
- this.LogingOut.Size = new System.Drawing.Size(146, 41);
- this.LogingOut.TabIndex = 77;
- this.LogingOut.TabStop = true;
- this.LogingOut.Text = "切换账套";
- this.LogingOut.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LogingOut_LinkClicked);
- //
- // GetOutBoxCode
- //
- this.GetOutBoxCode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.GetOutBoxCode.Location = new System.Drawing.Point(202, 376);
- this.GetOutBoxCode.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.GetOutBoxCode.Name = "GetOutBoxCode";
- this.GetOutBoxCode.Size = new System.Drawing.Size(136, 52);
- this.GetOutBoxCode.TabIndex = 93;
- this.GetOutBoxCode.Text = "获取箱号";
- this.GetOutBoxCode.UseVisualStyleBackColor = true;
- this.GetOutBoxCode.Click += new System.EventHandler(this.GetOutBoxCode_Click);
- //
- // OutBoxNum
- //
- this.OutBoxNum.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.OutBoxNum.ID = null;
- this.OutBoxNum.Location = new System.Drawing.Point(260, 278);
- this.OutBoxNum.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.OutBoxNum.Name = "OutBoxNum";
- this.OutBoxNum.Size = new System.Drawing.Size(70, 39);
- this.OutBoxNum.Str = null;
- this.OutBoxNum.Str1 = null;
- this.OutBoxNum.Str2 = null;
- this.OutBoxNum.TabIndex = 91;
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label10.Location = new System.Drawing.Point(198, 296);
- this.label10.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(62, 31);
- this.label10.TabIndex = 90;
- this.label10.Text = "箱号";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label6.Location = new System.Drawing.Point(196, 236);
- this.label6.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(62, 31);
- this.label6.TabIndex = 87;
- this.label6.Text = "容量";
- //
- // OutBoxPrinter
- //
- this.OutBoxPrinter.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.OutBoxPrinter.Location = new System.Drawing.Point(16, 156);
- this.OutBoxPrinter.Margin = new System.Windows.Forms.Padding(10, 12, 10, 12);
- this.OutBoxPrinter.Name = "OutBoxPrinter";
- this.OutBoxPrinter.Size = new System.Drawing.Size(316, 50);
- this.OutBoxPrinter.TabIndex = 82;
- this.OutBoxPrinter.UserOnSelectIndexChange += new UAS_LabelMachine.CustomControl.PrinterCombox.OnSelectIndexChange(this.LabelPrinter_UserOnSelectIndexChange);
- //
- // OutboxCapacity
- //
- this.OutboxCapacity.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.OutboxCapacity.Location = new System.Drawing.Point(258, 218);
- this.OutboxCapacity.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.OutboxCapacity.Name = "OutboxCapacity";
- this.OutboxCapacity.Size = new System.Drawing.Size(76, 39);
- this.OutboxCapacity.TabIndex = 84;
- this.OutboxCapacity.Value = new decimal(new int[] {
- 1,
- 0,
- 0,
- 0});
- this.OutboxCapacity.Leave += new System.EventHandler(this.MidBoxCapacity_Leave);
- //
- // OutBoxLabelPrint
- //
- this.OutBoxLabelPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.OutBoxLabelPrint.Location = new System.Drawing.Point(202, 436);
- this.OutBoxLabelPrint.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.OutBoxLabelPrint.Name = "OutBoxLabelPrint";
- this.OutBoxLabelPrint.Size = new System.Drawing.Size(136, 52);
- this.OutBoxLabelPrint.TabIndex = 80;
- this.OutBoxLabelPrint.Text = "打印箱标";
- this.OutBoxLabelPrint.UseVisualStyleBackColor = true;
- this.OutBoxLabelPrint.Click += new System.EventHandler(this.OutBoxLabelPrint_Click);
- //
- // OutBoxCombox
- //
- this.OutBoxCombox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.OutBoxCombox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.OutBoxCombox.FormattingEnabled = true;
- this.OutBoxCombox.Location = new System.Drawing.Point(14, 92);
- this.OutBoxCombox.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.OutBoxCombox.Name = "OutBoxCombox";
- this.OutBoxCombox.Size = new System.Drawing.Size(312, 39);
- this.OutBoxCombox.TabIndex = 78;
- this.OutBoxCombox.SelectedIndexChanged += new System.EventHandler(this.OutBoxCombox_SelectedIndexChanged);
- //
- // FTPModel
- //
- this.FTPModel.AutoSize = true;
- this.FTPModel.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.FTPModel.Location = new System.Drawing.Point(462, 308);
- this.FTPModel.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.FTPModel.Name = "FTPModel";
- this.FTPModel.Size = new System.Drawing.Size(158, 31);
- this.FTPModel.TabIndex = 92;
- this.FTPModel.Text = "FTP被动模式";
- this.FTPModel.UseVisualStyleBackColor = true;
- this.FTPModel.CheckedChanged += new System.EventHandler(this.FTPModel_CheckedChanged);
- //
- // UAS_出货标签打印
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(233)))), ((int)(((byte)(206)))));
- this.ClientSize = new System.Drawing.Size(2520, 1450);
- this.Controls.Add(this.FTPModel);
- this.Controls.Add(this.CustBarCode);
- this.Controls.Add(this.pi_class);
- this.Controls.Add(this.MenuSetting);
- this.Controls.Add(this.cu_code);
- this.Controls.Add(this.CleanBarCode);
- this.Controls.Add(this.pi_date);
- this.Controls.Add(this.groupBoxWithBorder1);
- this.Controls.Add(this.ChooseAll);
- this.Controls.Add(this.GetGridOnly);
- this.Controls.Add(this.AllCollected);
- this.Controls.Add(this.CleanInputAfterCollect);
- this.Controls.Add(this.Fresh);
- this.Controls.Add(this.pi_cardcode_label);
- this.Controls.Add(this.pib_id);
- this.Controls.Add(this.pr_code);
- this.Controls.Add(this.CleanDetail);
- this.Controls.Add(this.Si_ItemDGV);
- this.Controls.Add(this.CollectionProcess);
- this.Controls.Add(this.sg_separator);
- this.Controls.Add(this.sg_separator_label);
- this.Controls.Add(this.SaveGrid);
- this.Controls.Add(this.GenerateBarCode);
- this.Controls.Add(this.CollectionUnit_label);
- this.Controls.Add(this.CollectionUnit);
- this.Controls.Add(this.label24);
- this.Controls.Add(this.Input);
- this.Controls.Add(this.pr_code_label);
- this.Controls.Add(this.griddetno);
- this.Controls.Add(this.AutoMatch);
- this.Controls.Add(this.label22);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.sg_code);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.MessageLog);
- this.Controls.Add(this.LabelInf);
- this.Controls.Add(this.pi_inoutno_label);
- this.Controls.Add(this.pi_inoutno);
- this.Controls.Add(this.SingleLabel);
- this.Controls.Add(this.MidLabel);
- this.Controls.Add(this.OutBoxLabel);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
- this.Name = "UAS_出货标签打印";
- this.Text = " UAS-出货标签管理";
- this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.贴标机条码打印_FormClosing);
- this.Load += new System.EventHandler(this.贴标机条码打印_Load);
- this.SizeChanged += new System.EventHandler(this.贴标机条码打印_SizeChanged);
- ((System.ComponentModel.ISupportInitialize)(this.Si_ItemDGV)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MidSource)).EndInit();
- this.ShowMenu.ResumeLayout(true);
- this.groupBoxWithBorder1.ResumeLayout(true);
- this.groupBoxWithBorder1.PerformLayout();
- this.CollectionProcess.ResumeLayout(true);
- this.CollectionProcess.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.LabelInf)).EndInit();
- this.SingleLabel.ResumeLayout(true);
- this.SingleLabel.PerformLayout();
- this.MidLabel.ResumeLayout(true);
- this.MidLabel.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.MidBoxCapacity)).EndInit();
- this.OutBoxLabel.ResumeLayout(true);
- this.OutBoxLabel.PerformLayout();
- this.groupBoxWithBorder2.ResumeLayout(true);
- this.groupBoxWithBorder2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.OutboxCapacity)).EndInit();
- this.ResumeLayout(true);
- this.PerformLayout();
- }
- #endregion
- private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder OutBoxLabel;
- private CustomControl.EnterTextBox OutBoxNum;
- private System.Windows.Forms.Label label10;
- private CustomControl.PrinterCombox OutBoxPrinter;
- private System.Windows.Forms.Button OutBoxLabelPrint;
- private System.Windows.Forms.ComboBox OutBoxCombox;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn2;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn3;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.NumericUpDown OutboxCapacity;
- private System.Windows.Forms.ComboBox MidLabelCombox;
- private System.Windows.Forms.CheckBox MidLabelAutoPrint;
- private System.Windows.Forms.Button MidLabelPrint;
- private System.Windows.Forms.NumericUpDown MidBoxCapacity;
- private System.Windows.Forms.Label label15;
- private CustomControl.PrinterCombox MidLabelPrinter;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Label label5;
- private CustomControl.EnterTextBox MidLabelNum;
- private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder MidLabel;
- private System.Windows.Forms.ComboBox SingleLabelCombox;
- private System.Windows.Forms.CheckBox SingleLabelAutoPrint;
- private System.Windows.Forms.Button SingleLabelPrint;
- private CustomControl.PrinterCombox SingleLabelPrinter;
- private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder SingleLabel;
- private CustomControl.BlurSearch pi_inoutno;
- private System.Windows.Forms.Label pi_inoutno_label;
- private CustomControl.DataGridViewWithSerialNum LabelInf;
- private CustomControl.RichText.RichTextAutoBottom MessageLog;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label22;
- private System.Windows.Forms.CheckBox AutoMatch;
- private CustomControl.EnterTextBox griddetno;
- private System.Windows.Forms.Label pr_code_label;
- private CustomControl.EnterTextBox Input;
- private System.Windows.Forms.Label label24;
- private System.Windows.Forms.ComboBox CollectionUnit;
- private System.Windows.Forms.Label CollectionUnit_label;
- private System.Windows.Forms.Button GenerateBarCode;
- private System.Windows.Forms.Button SaveGrid;
- private System.Windows.Forms.Label sg_separator_label;
- private CustomControl.EnterTextBox sg_separator;
- private System.Windows.Forms.Label Process;
- private System.Windows.Forms.Label Installed;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.Label CollectedCount;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.Label TotalCount;
- private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder CollectionProcess;
- private System.Windows.Forms.DataGridView Si_ItemDGV;
- private System.Windows.Forms.Button CleanDetail;
- private CustomControl.SearchTextBox sg_code;
- private CustomControl.SearchTextBox pr_code;
- private System.Windows.Forms.Label pib_id;
- private System.Windows.Forms.Label Process_midboxcode;
- private System.Windows.Forms.Label Process_outboxcode;
- private System.Windows.Forms.Label Capacity;
- private System.Windows.Forms.Label pi_cardcode_label;
- private System.Windows.Forms.LinkLabel Fresh;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.CheckBox CleanInputAfterCollect;
- private System.Windows.Forms.Button AllCollected;
- private System.Windows.Forms.Button GetOutBoxCode;
- private System.Windows.Forms.LinkLabel LogingOut;
- private System.Windows.Forms.CheckBox GetGridOnly;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
- private System.Windows.Forms.BindingSource MidSource;
- private System.Windows.Forms.Button ChooseAll;
- private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder groupBoxWithBorder1;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Label label12;
- private CustomControl.EnterTextBox SingleBoxEnd;
- private CustomControl.EnterTextBox SingleBoxBegin;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.Label label18;
- private CustomControl.EnterTextBox MidBoxEnd;
- private CustomControl.EnterTextBox MidBoxBegin;
- private System.Windows.Forms.FolderBrowserDialog ExportFileDialog;
- private System.Windows.Forms.DataGridViewTextBoxColumn si_detno;
- private System.Windows.Forms.DataGridViewTextBoxColumn si_index;
- private System.Windows.Forms.DataGridViewTextBoxColumn si_kind;
- private System.Windows.Forms.DataGridViewTextBoxColumn si_indexstring;
- private System.Windows.Forms.DataGridViewTextBoxColumn si_length;
- private System.Windows.Forms.DataGridViewTextBoxColumn si_expression;
- private System.Windows.Forms.DataGridViewTextBoxColumn si_item;
- private System.Windows.Forms.DataGridViewTextBoxColumn si_expressionitem;
- private System.Windows.Forms.Label pi_date;
- private System.Windows.Forms.Button CleanBarCode;
- private CustomControl.SearchTextBox cu_code;
- private System.Windows.Forms.LinkLabel SingleDocRefresh;
- private System.Windows.Forms.LinkLabel MidDocRefresh;
- private System.Windows.Forms.LinkLabel OutDocRefresh;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Label label19;
- private System.Windows.Forms.Button MenuSetting;
- private System.Windows.Forms.ContextMenuStrip ShowMenu;
- private System.Windows.Forms.ToolStripMenuItem 采集策略设置;
- private System.Windows.Forms.ToolStripMenuItem 附加信息设置;
- private System.Windows.Forms.ToolStripMenuItem 导出数据;
- private System.Windows.Forms.ToolStripMenuItem 标签维护;
- private System.Windows.Forms.OpenFileDialog ImportExcel;
- private System.Windows.Forms.ToolStripMenuItem 条码导入生成;
- private System.Windows.Forms.Label pi_class;
- private System.Windows.Forms.ToolStripMenuItem 下载模板;
- private System.Windows.Forms.CheckBox cu_print_outprod;
- private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder groupBoxWithBorder2;
- private System.Windows.Forms.CheckBox cu_print_outdc;
- private System.Windows.Forms.CheckBox cu_print_outlotno;
- private System.Windows.Forms.CheckBox cu_print_outpo;
- private System.Windows.Forms.Button CustBarCode;
- private System.Windows.Forms.ToolStripMenuItem 流水调整;
- private System.Windows.Forms.Button GetMidBoxCode;
- private System.Windows.Forms.CheckBox cu_print_ordercode;
- private System.Windows.Forms.CheckBox LabelSpace;
- private System.Windows.Forms.CheckBox DiffCustOutBoxCode;
- private System.Windows.Forms.LinkLabel MidLabelPreView;
- private System.Windows.Forms.RadioButton Order_Prod;
- private System.Windows.Forms.RadioButton Order_Detno;
- private System.Windows.Forms.CheckBox FTPModel;
- private System.Windows.Forms.DataGridViewCheckBoxColumn Choose;
- private System.Windows.Forms.DataGridViewTextBoxColumn pr_midboxcapacity_user;
- private System.Windows.Forms.DataGridViewCheckBoxColumn pib_ifpick;
- private System.Windows.Forms.DataGridViewCheckBoxColumn pib_ifprint;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_id1;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_pdno;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_prodcode;
- private System.Windows.Forms.DataGridViewTextBoxColumn pd_ordercode;
- private System.Windows.Forms.DataGridViewTextBoxColumn pr_orispeccode;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_brand;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_madein;
- private System.Windows.Forms.DataGridViewTextBoxColumn pr_zxbzs;
- private System.Windows.Forms.DataGridViewTextBoxColumn pr_unit;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_lotno;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_datecode;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_year;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_month;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_day;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_qty;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_barcode;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_custbarcode;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_custoutboxcode;
- private System.Windows.Forms.DataGridViewTextBoxColumn pd_pocode;
- private System.Windows.Forms.DataGridViewTextBoxColumn pd_custprodcode;
- private System.Windows.Forms.DataGridViewTextBoxColumn pd_custprodspec;
- private System.Windows.Forms.DataGridViewTextBoxColumn pr_spec;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_outboxcode1;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_outboxcode2;
- }
- }
|