| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952 |
- 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.ExportData = new System.Windows.Forms.Button();
- this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn6 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn5 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn4 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn3 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.label8 = new System.Windows.Forms.Label();
- this.ButtonSetting = new System.Windows.Forms.Button();
- this.ListButtonMenu = new System.Windows.Forms.ListBox();
- this.pi_date = new System.Windows.Forms.Label();
- this.ExportFileDialog = new System.Windows.Forms.FolderBrowserDialog();
- this.GetGridOnly = new System.Windows.Forms.CheckBox();
- this.RefreshDBConnect = new System.Windows.Forms.Timer(this.components);
- this.label3 = new System.Windows.Forms.Label();
- this.Fresh = new System.Windows.Forms.LinkLabel();
- this.pi_cardcode_label = new System.Windows.Forms.Label();
- this.pi_cardcode = new System.Windows.Forms.Label();
- this.sg_separator_label = new System.Windows.Forms.Label();
- this.后端复核 = new System.Windows.Forms.Label();
- this.pi_inoutno_label = new System.Windows.Forms.Label();
- this.PLCStop = new System.Windows.Forms.Button();
- this.PLCStart = new System.Windows.Forms.Button();
- this.cu_print_regexpression = new System.Windows.Forms.Label();
- this.label13 = new System.Windows.Forms.Label();
- this.BeforePage = new System.Windows.Forms.LinkLabel();
- this.NextPage = new System.Windows.Forms.LinkLabel();
- this.PageInf = new System.Windows.Forms.Label();
- this.FirstPage = new System.Windows.Forms.LinkLabel();
- this.LastPage = new System.Windows.Forms.LinkLabel();
- this.PageNum = new System.Windows.Forms.Label();
- this.LogMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
- this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
- this.UploadData = new System.Windows.Forms.Button();
- this.PageSizeNum = new System.Windows.Forms.NumericUpDown();
- this.label28 = new System.Windows.Forms.Label();
- this.DownloadBarcode = new System.Windows.Forms.Button();
- this.cu_print_checkonly = new System.Windows.Forms.CheckBox();
- this.cu_print_checkdatecode = new System.Windows.Forms.CheckBox();
- this.ResetBarcode = new System.Windows.Forms.Button();
- this.label29 = new System.Windows.Forms.Label();
- this.cu_print_dateformat = new System.Windows.Forms.Label();
- this.front_sg_separator = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.FrontCollect = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.CollectionProcess = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.ManualAutoCheck = new System.Windows.Forms.RadioButton();
- this.ManualFrontCheck = new System.Windows.Forms.RadioButton();
- this.ManualBackCheck = new System.Windows.Forms.RadioButton();
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.ManualCollection = new System.Windows.Forms.RadioButton();
- this.AutoCollection = new System.Windows.Forms.RadioButton();
- this.DetailRange2 = new System.Windows.Forms.NumericUpDown();
- this.DetailRange1 = new System.Windows.Forms.NumericUpDown();
- this.outboxProcess = new System.Windows.Forms.Label();
- this.midboxProcess = new System.Windows.Forms.Label();
- this.label25 = new System.Windows.Forms.Label();
- this.label24 = new System.Windows.Forms.Label();
- this.AddOutBox = new System.Windows.Forms.Button();
- this.CutOutBox = new System.Windows.Forms.Button();
- this.CutMidBox = new System.Windows.Forms.Button();
- this.AddMidBox = new System.Windows.Forms.Button();
- this.SetOutBox = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.SetMidBox = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.ButtonSetMidBox = new System.Windows.Forms.Button();
- this.ButtonSetOutBox = new System.Windows.Forms.Button();
- this.ButtonRecheckPass = new System.Windows.Forms.Button();
- this.ButtonCollectPass = new System.Windows.Forms.Button();
- this.checkBox2 = new System.Windows.Forms.CheckBox();
- this.label23 = new System.Windows.Forms.Label();
- this.label22 = new System.Windows.Forms.Label();
- this.RecheckBarcode = new System.Windows.Forms.RadioButton();
- this.RecheckCuprodcode = new System.Windows.Forms.RadioButton();
- this.DetailRange = new System.Windows.Forms.CheckBox();
- this.label21 = new System.Windows.Forms.Label();
- this.Process_midboxcode = new System.Windows.Forms.Label();
- this.Process_outboxcode = 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.Process = new System.Windows.Forms.Label();
- this.back_sg_separator = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.BackCheck = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.MessageLog = new UAS_LabelMachine.CustomControl.RichText.RichTextAutoBottom();
- this.LabelInf = new UAS_LabelMachine.CustomControl.DataGridViewWithSerialNum();
- this.Choose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.pd_id = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_id1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.rownum = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_pdno = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_prodcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_ifmodify = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.pib_ifupload = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.pr_vendprodcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_brand = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pib_madein = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.pr_orispeccode = 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_ifpick = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.pib_ifprint = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.pib_ifrecheck = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.pib_datecode1 = 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_custmidboxcode = 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.EnterTextBox();
- this.SingleLabel = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
- this.SingleDocRefresh = new System.Windows.Forms.LinkLabel();
- this.label17 = new System.Windows.Forms.Label();
- this.groupBoxWithBorder4 = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
- this.label20 = new System.Windows.Forms.Label();
- this.BackCombo = new System.Windows.Forms.ComboBox();
- this.label19 = new System.Windows.Forms.Label();
- this.FrontCombo = new System.Windows.Forms.ComboBox();
- this.label7 = new System.Windows.Forms.Label();
- this.label16 = new System.Windows.Forms.Label();
- this.SingleLabelPrinter = new UAS_LabelMachine.CustomControl.PrinterCombox();
- this.SingleBoxEnd = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.SingleBoxBegin = new UAS_LabelMachine.CustomControl.EnterTextBox();
- 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.MidDocRefresh = new System.Windows.Forms.LinkLabel();
- this.label26 = new System.Windows.Forms.Label();
- this.groupBoxWithBorder5 = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
- this.Expression = new System.Windows.Forms.RadioButton();
- this.Equal = new System.Windows.Forms.RadioButton();
- this.label2 = new System.Windows.Forms.Label();
- this.label1 = new System.Windows.Forms.Label();
- this.LeastPrintNum = new System.Windows.Forms.NumericUpDown();
- this.OnlyPrint = new System.Windows.Forms.CheckBox();
- this.groupBoxWithBorder2 = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
- this.cu_print_middc = new System.Windows.Forms.CheckBox();
- this.cu_print_midprod = new System.Windows.Forms.CheckBox();
- this.cu_print_midpo = new System.Windows.Forms.CheckBox();
- this.cu_print_midspec = new System.Windows.Forms.CheckBox();
- this.cu_print_midlotno = new System.Windows.Forms.CheckBox();
- this.label18 = new System.Windows.Forms.Label();
- this.MidLabelNum = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.MidBoxEnd = new UAS_LabelMachine.CustomControl.EnterTextBox();
- this.label12 = new System.Windows.Forms.Label();
- this.label5 = new System.Windows.Forms.Label();
- this.MidBoxBegin = new UAS_LabelMachine.CustomControl.EnterTextBox();
- 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.OutDocRefresh = new System.Windows.Forms.LinkLabel();
- this.label27 = new System.Windows.Forms.Label();
- this.label9 = new System.Windows.Forms.Label();
- this.cu_print_papercount = new System.Windows.Forms.NumericUpDown();
- this.groupBoxWithBorder3 = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
- this.cu_print_outdc = new System.Windows.Forms.CheckBox();
- this.cu_print_outprod = new System.Windows.Forms.CheckBox();
- this.cu_print_outpo = new System.Windows.Forms.CheckBox();
- this.cu_print_outspec = new System.Windows.Forms.CheckBox();
- this.cu_print_outlotno = new System.Windows.Forms.CheckBox();
- this.LogingOut = new System.Windows.Forms.LinkLabel();
- 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.OutBoxLabelAutoPrint = new System.Windows.Forms.CheckBox();
- this.OutBoxCombox = new System.Windows.Forms.ComboBox();
- this.BackendCheck = new UAS_LabelMachine.CustomControl.SerialPortWithTag();
- this.FrontendCheck = new UAS_LabelMachine.CustomControl.SerialPortWithTag();
- this.PLC1 = new UAS_LabelMachine.CustomControl.SerialPortWithTag();
- this.ManBackendCheck = new UAS_LabelMachine.CustomControl.SerialPortWithTag();
- this.label30 = new System.Windows.Forms.Label();
- this.cu_print_limiteddate = new System.Windows.Forms.NumericUpDown();
- this.LogMenu.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.PageSizeNum)).BeginInit();
- this.CollectionProcess.SuspendLayout();
- this.groupBox2.SuspendLayout();
- this.groupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.DetailRange2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.DetailRange1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.LabelInf)).BeginInit();
- this.SingleLabel.SuspendLayout();
- this.groupBoxWithBorder4.SuspendLayout();
- this.MidLabel.SuspendLayout();
- this.groupBoxWithBorder5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.LeastPrintNum)).BeginInit();
- this.groupBoxWithBorder2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.MidBoxCapacity)).BeginInit();
- this.OutBoxLabel.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cu_print_papercount)).BeginInit();
- this.groupBoxWithBorder3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.OutBoxCapacity)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cu_print_limiteddate)).BeginInit();
- this.SuspendLayout();
- //
- // ExportData
- //
- this.ExportData.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ExportData.Location = new System.Drawing.Point(234, 247);
- this.ExportData.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ExportData.Name = "ExportData";
- this.ExportData.Size = new System.Drawing.Size(68, 26);
- this.ExportData.TabIndex = 91;
- this.ExportData.Text = "导出数据";
- this.ExportData.UseVisualStyleBackColor = true;
- this.ExportData.Click += new System.EventHandler(this.ExportData_Click);
- //
- // dataGridViewTextBoxColumn28
- //
- this.dataGridViewTextBoxColumn28.DataPropertyName = "si_expressionitem";
- this.dataGridViewTextBoxColumn28.Frozen = true;
- this.dataGridViewTextBoxColumn28.HeaderText = "正则项次";
- this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
- this.dataGridViewTextBoxColumn28.Visible = false;
- //
- // dataGridViewTextBoxColumn27
- //
- this.dataGridViewTextBoxColumn27.DataPropertyName = "si_item";
- this.dataGridViewTextBoxColumn27.Frozen = true;
- this.dataGridViewTextBoxColumn27.HeaderText = "采集项目";
- this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
- this.dataGridViewTextBoxColumn27.ReadOnly = true;
- this.dataGridViewTextBoxColumn27.Width = 80;
- //
- // dataGridViewTextBoxColumn26
- //
- this.dataGridViewTextBoxColumn26.DataPropertyName = "si_expression";
- this.dataGridViewTextBoxColumn26.HeaderText = "正则表达式";
- this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
- this.dataGridViewTextBoxColumn26.Visible = false;
- //
- // dataGridViewTextBoxColumn25
- //
- this.dataGridViewTextBoxColumn25.DataPropertyName = "si_length";
- this.dataGridViewTextBoxColumn25.HeaderText = "长度";
- this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
- this.dataGridViewTextBoxColumn25.Visible = false;
- //
- // dataGridViewTextBoxColumn24
- //
- this.dataGridViewTextBoxColumn24.DataPropertyName = "si_indexstring";
- this.dataGridViewTextBoxColumn24.HeaderText = "索引字符";
- this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
- this.dataGridViewTextBoxColumn24.Visible = false;
- //
- // dataGridViewTextBoxColumn23
- //
- this.dataGridViewTextBoxColumn23.DataPropertyName = "si_item";
- this.dataGridViewTextBoxColumn23.HeaderText = "采集项目";
- this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
- this.dataGridViewTextBoxColumn23.ReadOnly = true;
- this.dataGridViewTextBoxColumn23.Visible = false;
- this.dataGridViewTextBoxColumn23.Width = 80;
- //
- // dataGridViewTextBoxColumn22
- //
- this.dataGridViewTextBoxColumn22.DataPropertyName = "si_expression";
- this.dataGridViewTextBoxColumn22.HeaderText = "正则表达式";
- this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
- this.dataGridViewTextBoxColumn22.Visible = false;
- //
- // dataGridViewTextBoxColumn21
- //
- this.dataGridViewTextBoxColumn21.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewTextBoxColumn21.DataPropertyName = "si_length";
- this.dataGridViewTextBoxColumn21.Frozen = true;
- this.dataGridViewTextBoxColumn21.HeaderText = "长度";
- this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
- this.dataGridViewTextBoxColumn21.ReadOnly = true;
- this.dataGridViewTextBoxColumn21.Visible = false;
- this.dataGridViewTextBoxColumn21.Width = 60;
- //
- // dataGridViewTextBoxColumn20
- //
- this.dataGridViewTextBoxColumn20.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewTextBoxColumn20.DataPropertyName = "si_indexstring";
- this.dataGridViewTextBoxColumn20.HeaderText = "索引字符";
- this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
- this.dataGridViewTextBoxColumn20.Visible = false;
- this.dataGridViewTextBoxColumn20.Width = 90;
- //
- // dataGridViewTextBoxColumn19
- //
- this.dataGridViewTextBoxColumn19.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewTextBoxColumn19.DataPropertyName = "si_kind";
- this.dataGridViewTextBoxColumn19.HeaderText = "解析方式";
- this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
- this.dataGridViewTextBoxColumn19.Visible = false;
- this.dataGridViewTextBoxColumn19.Width = 90;
- //
- // dataGridViewTextBoxColumn18
- //
- this.dataGridViewTextBoxColumn18.DataPropertyName = "si_index";
- this.dataGridViewTextBoxColumn18.HeaderText = "起始位置";
- this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
- this.dataGridViewTextBoxColumn18.Visible = false;
- this.dataGridViewTextBoxColumn18.Width = 54;
- //
- // dataGridViewTextBoxColumn17
- //
- this.dataGridViewTextBoxColumn17.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewTextBoxColumn17.DataPropertyName = "si_detno";
- this.dataGridViewTextBoxColumn17.HeaderText = "顺序";
- this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
- this.dataGridViewTextBoxColumn17.ReadOnly = true;
- this.dataGridViewTextBoxColumn17.Width = 60;
- //
- // dataGridViewTextBoxColumn16
- //
- this.dataGridViewTextBoxColumn16.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewTextBoxColumn16.DataPropertyName = "pib_outboxcode2";
- this.dataGridViewTextBoxColumn16.HeaderText = "外箱号";
- this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
- this.dataGridViewTextBoxColumn16.ReadOnly = true;
- this.dataGridViewTextBoxColumn16.Width = 90;
- //
- // dataGridViewTextBoxColumn15
- //
- this.dataGridViewTextBoxColumn15.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewTextBoxColumn15.DataPropertyName = "si_length";
- this.dataGridViewTextBoxColumn15.HeaderText = "字符长度";
- this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
- this.dataGridViewTextBoxColumn15.ReadOnly = true;
- this.dataGridViewTextBoxColumn15.Width = 90;
- //
- // dataGridViewTextBoxColumn14
- //
- this.dataGridViewTextBoxColumn14.DataPropertyName = "si_index";
- this.dataGridViewTextBoxColumn14.HeaderText = "起始位置";
- this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
- this.dataGridViewTextBoxColumn14.ReadOnly = true;
- this.dataGridViewTextBoxColumn14.Width = 78;
- //
- // dataGridViewTextBoxColumn13
- //
- this.dataGridViewTextBoxColumn13.DataPropertyName = "si_expression";
- this.dataGridViewTextBoxColumn13.HeaderText = "正则表达式";
- this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
- this.dataGridViewTextBoxColumn13.ReadOnly = true;
- this.dataGridViewTextBoxColumn13.Width = 66;
- //
- // dataGridViewTextBoxColumn12
- //
- this.dataGridViewTextBoxColumn12.DataPropertyName = "si_kind";
- this.dataGridViewTextBoxColumn12.HeaderText = "解析方式";
- this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
- this.dataGridViewTextBoxColumn12.ReadOnly = true;
- this.dataGridViewTextBoxColumn12.Visible = false;
- this.dataGridViewTextBoxColumn12.Width = 78;
- //
- // dataGridViewTextBoxColumn11
- //
- this.dataGridViewTextBoxColumn11.DataPropertyName = "si_item";
- this.dataGridViewTextBoxColumn11.HeaderText = "采集项次";
- this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
- this.dataGridViewTextBoxColumn11.ReadOnly = true;
- this.dataGridViewTextBoxColumn11.Visible = false;
- this.dataGridViewTextBoxColumn11.Width = 54;
- //
- // dataGridViewCheckBoxColumn6
- //
- this.dataGridViewCheckBoxColumn6.DataPropertyName = "pib_ifrecheck";
- this.dataGridViewCheckBoxColumn6.HeaderText = "已复核";
- this.dataGridViewCheckBoxColumn6.Name = "dataGridViewCheckBoxColumn6";
- this.dataGridViewCheckBoxColumn6.Width = 47;
- //
- // dataGridViewCheckBoxColumn5
- //
- this.dataGridViewCheckBoxColumn5.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewCheckBoxColumn5.DataPropertyName = "pib_ifprint";
- this.dataGridViewCheckBoxColumn5.HeaderText = "已打标";
- this.dataGridViewCheckBoxColumn5.Name = "dataGridViewCheckBoxColumn5";
- this.dataGridViewCheckBoxColumn5.Width = 60;
- //
- // dataGridViewCheckBoxColumn4
- //
- this.dataGridViewCheckBoxColumn4.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewCheckBoxColumn4.DataPropertyName = "pib_ifpick";
- this.dataGridViewCheckBoxColumn4.HeaderText = "已扫描";
- this.dataGridViewCheckBoxColumn4.Name = "dataGridViewCheckBoxColumn4";
- this.dataGridViewCheckBoxColumn4.Width = 60;
- //
- // dataGridViewTextBoxColumn10
- //
- this.dataGridViewTextBoxColumn10.DataPropertyName = "pib_datecode";
- this.dataGridViewTextBoxColumn10.HeaderText = "外箱号";
- this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
- this.dataGridViewTextBoxColumn10.Visible = false;
- this.dataGridViewTextBoxColumn10.Width = 108;
- //
- // dataGridViewTextBoxColumn9
- //
- this.dataGridViewTextBoxColumn9.DataPropertyName = "pib_cusoutboxcode";
- this.dataGridViewTextBoxColumn9.HeaderText = "中盒号";
- this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
- this.dataGridViewTextBoxColumn9.Width = 78;
- //
- // dataGridViewTextBoxColumn8
- //
- this.dataGridViewTextBoxColumn8.DataPropertyName = "pib_cusbarcode";
- this.dataGridViewTextBoxColumn8.HeaderText = "唯一条码";
- this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
- this.dataGridViewTextBoxColumn8.Visible = false;
- this.dataGridViewTextBoxColumn8.Width = 90;
- //
- // dataGridViewTextBoxColumn7
- //
- this.dataGridViewTextBoxColumn7.DataPropertyName = "bi_inqty";
- this.dataGridViewTextBoxColumn7.HeaderText = "数量";
- this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
- this.dataGridViewTextBoxColumn7.ReadOnly = true;
- this.dataGridViewTextBoxColumn7.Visible = false;
- this.dataGridViewTextBoxColumn7.Width = 80;
- //
- // dataGridViewTextBoxColumn6
- //
- this.dataGridViewTextBoxColumn6.DataPropertyName = "si_expression";
- this.dataGridViewTextBoxColumn6.HeaderText = "DateCode";
- this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
- this.dataGridViewTextBoxColumn6.Visible = false;
- this.dataGridViewTextBoxColumn6.Width = 60;
- //
- // dataGridViewTextBoxColumn5
- //
- this.dataGridViewTextBoxColumn5.DataPropertyName = "si_length";
- this.dataGridViewTextBoxColumn5.HeaderText = "LotNo";
- this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
- this.dataGridViewTextBoxColumn5.ReadOnly = true;
- this.dataGridViewTextBoxColumn5.Visible = false;
- this.dataGridViewTextBoxColumn5.Width = 48;
- //
- // dataGridViewTextBoxColumn4
- //
- this.dataGridViewTextBoxColumn4.DataPropertyName = "si_indexstring";
- this.dataGridViewTextBoxColumn4.HeaderText = "MPN";
- this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
- this.dataGridViewTextBoxColumn4.ReadOnly = true;
- this.dataGridViewTextBoxColumn4.Visible = false;
- this.dataGridViewTextBoxColumn4.Width = 54;
- //
- // dataGridViewCheckBoxColumn3
- //
- this.dataGridViewCheckBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewCheckBoxColumn3.DataPropertyName = "pib_ifprint";
- this.dataGridViewCheckBoxColumn3.HeaderText = "已打印";
- this.dataGridViewCheckBoxColumn3.Name = "dataGridViewCheckBoxColumn3";
- this.dataGridViewCheckBoxColumn3.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dataGridViewCheckBoxColumn3.Width = 60;
- //
- // dataGridViewCheckBoxColumn2
- //
- this.dataGridViewCheckBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewCheckBoxColumn2.DataPropertyName = "pib_ifpick";
- this.dataGridViewCheckBoxColumn2.HeaderText = "已采集";
- this.dataGridViewCheckBoxColumn2.Name = "dataGridViewCheckBoxColumn2";
- this.dataGridViewCheckBoxColumn2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dataGridViewCheckBoxColumn2.Width = 60;
- //
- // dataGridViewTextBoxColumn3
- //
- this.dataGridViewTextBoxColumn3.DataPropertyName = "bi_prodcode";
- this.dataGridViewTextBoxColumn3.HeaderText = "物料编号";
- this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
- this.dataGridViewTextBoxColumn3.ReadOnly = true;
- this.dataGridViewTextBoxColumn3.Visible = false;
- this.dataGridViewTextBoxColumn3.Width = 78;
- //
- // dataGridViewTextBoxColumn2
- //
- this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewTextBoxColumn2.DataPropertyName = "si_index";
- this.dataGridViewTextBoxColumn2.HeaderText = "明细序号";
- this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
- this.dataGridViewTextBoxColumn2.ReadOnly = true;
- this.dataGridViewTextBoxColumn2.Visible = false;
- this.dataGridViewTextBoxColumn2.Width = 96;
- //
- // dataGridViewTextBoxColumn1
- //
- this.dataGridViewTextBoxColumn1.DataPropertyName = "si_detno";
- this.dataGridViewTextBoxColumn1.HeaderText = "bi_id";
- this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
- this.dataGridViewTextBoxColumn1.ReadOnly = true;
- this.dataGridViewTextBoxColumn1.Visible = false;
- this.dataGridViewTextBoxColumn1.Width = 80;
- //
- // dataGridViewCheckBoxColumn1
- //
- this.dataGridViewCheckBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.dataGridViewCheckBoxColumn1.HeaderText = "勾选";
- this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
- this.dataGridViewCheckBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dataGridViewCheckBoxColumn1.Width = 60;
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label8.Location = new System.Drawing.Point(7, 94);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(65, 20);
- this.label8.TabIndex = 91;
- this.label8.Text = "前端采集";
- //
- // ButtonSetting
- //
- this.ButtonSetting.Location = new System.Drawing.Point(232, 103);
- this.ButtonSetting.Name = "ButtonSetting";
- this.ButtonSetting.Size = new System.Drawing.Size(90, 23);
- this.ButtonSetting.TabIndex = 89;
- this.ButtonSetting.Text = "后台管理";
- this.ButtonSetting.UseVisualStyleBackColor = true;
- this.ButtonSetting.Click += new System.EventHandler(this.ButtonSetting_Click);
- //
- // ListButtonMenu
- //
- this.ListButtonMenu.Font = new System.Drawing.Font("微软雅黑", 11F);
- this.ListButtonMenu.FormattingEnabled = true;
- this.ListButtonMenu.ItemHeight = 20;
- this.ListButtonMenu.Items.AddRange(new object[] {
- "采集策略设置",
- "生成条码",
- "附加信息设置",
- "客户标签维护",
- "客户采集规则",
- "参数配置",
- "权限管理"});
- this.ListButtonMenu.Location = new System.Drawing.Point(232, 89);
- this.ListButtonMenu.Name = "ListButtonMenu";
- this.ListButtonMenu.Size = new System.Drawing.Size(97, 64);
- this.ListButtonMenu.TabIndex = 88;
- this.ListButtonMenu.Visible = false;
- this.ListButtonMenu.SelectedIndexChanged += new System.EventHandler(this.ListButtonMenu_SelectedIndexChanged);
- //
- // 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(5, 158);
- this.pi_date.Name = "pi_date";
- this.pi_date.Size = new System.Drawing.Size(0, 20);
- this.pi_date.TabIndex = 86;
- this.pi_date.Visible = false;
- //
- // GetGridOnly
- //
- this.GetGridOnly.AutoSize = true;
- 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(81, 68);
- this.GetGridOnly.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.GetGridOnly.Name = "GetGridOnly";
- this.GetGridOnly.Size = new System.Drawing.Size(77, 20);
- this.GetGridOnly.TabIndex = 82;
- this.GetGridOnly.Text = "仅获取表格";
- this.GetGridOnly.UseVisualStyleBackColor = true;
- this.GetGridOnly.Visible = false;
- //
- // RefreshDBConnect
- //
- this.RefreshDBConnect.Tick += new System.EventHandler(this.RefreshDBConnect_Tick);
- //
- // 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(5, 609);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(74, 21);
- this.label3.TabIndex = 29;
- this.label3.Text = "输出日志";
- //
- // Fresh
- //
- this.Fresh.AutoSize = true;
- this.Fresh.Location = new System.Drawing.Point(228, 14);
- this.Fresh.Name = "Fresh";
- this.Fresh.Size = new System.Drawing.Size(29, 12);
- this.Fresh.TabIndex = 73;
- this.Fresh.TabStop = true;
- this.Fresh.Text = "刷新";
- this.Fresh.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.Refresh_LinkClicked);
- //
- // 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(3, 38);
- this.pi_cardcode_label.Name = "pi_cardcode_label";
- this.pi_cardcode_label.Size = new System.Drawing.Size(65, 20);
- this.pi_cardcode_label.TabIndex = 72;
- this.pi_cardcode_label.Text = "客户编号";
- //
- // pi_cardcode
- //
- this.pi_cardcode.AutoSize = true;
- this.pi_cardcode.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.pi_cardcode.Location = new System.Drawing.Point(77, 38);
- this.pi_cardcode.Name = "pi_cardcode";
- this.pi_cardcode.Size = new System.Drawing.Size(0, 20);
- this.pi_cardcode.TabIndex = 71;
- //
- // 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(205, 65);
- this.sg_separator_label.Name = "sg_separator_label";
- this.sg_separator_label.Size = new System.Drawing.Size(79, 20);
- this.sg_separator_label.TabIndex = 61;
- this.sg_separator_label.Text = "后端分隔符";
- //
- // 后端复核
- //
- this.后端复核.AutoSize = true;
- this.后端复核.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.后端复核.Location = new System.Drawing.Point(7, 120);
- this.后端复核.Name = "后端复核";
- this.后端复核.Size = new System.Drawing.Size(65, 20);
- this.后端复核.TabIndex = 55;
- this.后端复核.Text = "后端复核";
- //
- // 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(3, 10);
- this.pi_inoutno_label.Name = "pi_inoutno_label";
- this.pi_inoutno_label.Size = new System.Drawing.Size(65, 20);
- this.pi_inoutno_label.TabIndex = 3;
- this.pi_inoutno_label.Text = "出货单号";
- //
- // PLCStop
- //
- this.PLCStop.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.PLCStop.Location = new System.Drawing.Point(9, 248);
- this.PLCStop.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.PLCStop.Name = "PLCStop";
- this.PLCStop.Size = new System.Drawing.Size(68, 26);
- this.PLCStop.TabIndex = 92;
- this.PLCStop.Text = "暂停";
- this.PLCStop.UseVisualStyleBackColor = true;
- this.PLCStop.Click += new System.EventHandler(this.PLCStop_Click);
- //
- // PLCStart
- //
- this.PLCStart.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.PLCStart.Location = new System.Drawing.Point(9, 218);
- this.PLCStart.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.PLCStart.Name = "PLCStart";
- this.PLCStart.Size = new System.Drawing.Size(68, 26);
- this.PLCStart.TabIndex = 93;
- this.PLCStart.Text = "启动";
- this.PLCStart.UseVisualStyleBackColor = true;
- this.PLCStart.Click += new System.EventHandler(this.PLCStart_Click);
- //
- // cu_print_regexpression
- //
- this.cu_print_regexpression.AutoSize = true;
- this.cu_print_regexpression.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cu_print_regexpression.Location = new System.Drawing.Point(12, 185);
- this.cu_print_regexpression.Name = "cu_print_regexpression";
- this.cu_print_regexpression.Size = new System.Drawing.Size(51, 20);
- this.cu_print_regexpression.TabIndex = 94;
- this.cu_print_regexpression.Text = "分隔符";
- this.cu_print_regexpression.Visible = false;
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label13.Location = new System.Drawing.Point(205, 38);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(79, 20);
- this.label13.TabIndex = 95;
- this.label13.Text = "前端分隔符";
- //
- // BeforePage
- //
- this.BeforePage.AutoSize = true;
- this.BeforePage.Location = new System.Drawing.Point(127, 615);
- this.BeforePage.Name = "BeforePage";
- this.BeforePage.Size = new System.Drawing.Size(41, 12);
- this.BeforePage.TabIndex = 97;
- this.BeforePage.TabStop = true;
- this.BeforePage.Text = "上一页";
- this.BeforePage.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.Page_LinkClicked);
- //
- // NextPage
- //
- this.NextPage.AutoSize = true;
- this.NextPage.Location = new System.Drawing.Point(232, 614);
- this.NextPage.Name = "NextPage";
- this.NextPage.Size = new System.Drawing.Size(41, 12);
- this.NextPage.TabIndex = 98;
- this.NextPage.TabStop = true;
- this.NextPage.Text = "下一页";
- this.NextPage.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.Page_LinkClicked);
- //
- // PageInf
- //
- this.PageInf.AutoSize = true;
- this.PageInf.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.PageInf.Location = new System.Drawing.Point(176, 612);
- this.PageInf.Name = "PageInf";
- this.PageInf.Size = new System.Drawing.Size(0, 17);
- this.PageInf.TabIndex = 99;
- //
- // FirstPage
- //
- this.FirstPage.AutoSize = true;
- this.FirstPage.Location = new System.Drawing.Point(85, 614);
- this.FirstPage.Name = "FirstPage";
- this.FirstPage.Size = new System.Drawing.Size(41, 12);
- this.FirstPage.TabIndex = 100;
- this.FirstPage.TabStop = true;
- this.FirstPage.Text = "第一页";
- this.FirstPage.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.Page_LinkClicked);
- //
- // LastPage
- //
- this.LastPage.AutoSize = true;
- this.LastPage.Location = new System.Drawing.Point(279, 614);
- this.LastPage.Name = "LastPage";
- this.LastPage.Size = new System.Drawing.Size(41, 12);
- this.LastPage.TabIndex = 101;
- this.LastPage.TabStop = true;
- this.LastPage.Text = "最后页";
- this.LastPage.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.Page_LinkClicked);
- //
- // PageNum
- //
- this.PageNum.AutoSize = true;
- this.PageNum.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.PageNum.Location = new System.Drawing.Point(331, 609);
- this.PageNum.Name = "PageNum";
- this.PageNum.Size = new System.Drawing.Size(0, 20);
- this.PageNum.TabIndex = 102;
- //
- // LogMenu
- //
- this.LogMenu.ImageScalingSize = new System.Drawing.Size(32, 32);
- this.LogMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.toolStripMenuItem1});
- this.LogMenu.Name = "contextMenuStrip1";
- this.LogMenu.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
- this.LogMenu.Size = new System.Drawing.Size(125, 26);
- //
- // toolStripMenuItem1
- //
- this.toolStripMenuItem1.Name = "toolStripMenuItem1";
- this.toolStripMenuItem1.Size = new System.Drawing.Size(124, 22);
- this.toolStripMenuItem1.Text = "导出日志";
- //
- // UploadData
- //
- this.UploadData.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.UploadData.Location = new System.Drawing.Point(234, 186);
- this.UploadData.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.UploadData.Name = "UploadData";
- this.UploadData.Size = new System.Drawing.Size(68, 26);
- this.UploadData.TabIndex = 103;
- this.UploadData.Text = "上传条码";
- this.UploadData.UseVisualStyleBackColor = true;
- this.UploadData.Click += new System.EventHandler(this.UploadData_Click);
- //
- // PageSizeNum
- //
- this.PageSizeNum.Location = new System.Drawing.Point(420, 609);
- this.PageSizeNum.Name = "PageSizeNum";
- this.PageSizeNum.Size = new System.Drawing.Size(63, 21);
- this.PageSizeNum.TabIndex = 104;
- this.PageSizeNum.Visible = false;
- this.PageSizeNum.ValueChanged += new System.EventHandler(this.PageSizeNum_ValueChanged);
- //
- // label28
- //
- this.label28.AutoSize = true;
- this.label28.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label28.Location = new System.Drawing.Point(322, 609);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(74, 21);
- this.label28.TabIndex = 105;
- this.label28.Text = "每页数量";
- this.label28.Visible = false;
- //
- // DownloadBarcode
- //
- this.DownloadBarcode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.DownloadBarcode.Location = new System.Drawing.Point(234, 155);
- this.DownloadBarcode.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.DownloadBarcode.Name = "DownloadBarcode";
- this.DownloadBarcode.Size = new System.Drawing.Size(68, 26);
- this.DownloadBarcode.TabIndex = 106;
- this.DownloadBarcode.Text = "下载条码";
- this.DownloadBarcode.UseVisualStyleBackColor = true;
- this.DownloadBarcode.Click += new System.EventHandler(this.button1_Click);
- //
- // cu_print_checkonly
- //
- this.cu_print_checkonly.AutoSize = true;
- this.cu_print_checkonly.Enabled = false;
- this.cu_print_checkonly.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.cu_print_checkonly.ForeColor = System.Drawing.Color.Blue;
- this.cu_print_checkonly.Location = new System.Drawing.Point(87, 217);
- this.cu_print_checkonly.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.cu_print_checkonly.Name = "cu_print_checkonly";
- this.cu_print_checkonly.Size = new System.Drawing.Size(63, 21);
- this.cu_print_checkonly.TabIndex = 98;
- this.cu_print_checkonly.Text = "仅复核";
- this.cu_print_checkonly.UseVisualStyleBackColor = true;
- //
- // cu_print_checkdatecode
- //
- this.cu_print_checkdatecode.AutoSize = true;
- this.cu_print_checkdatecode.Enabled = false;
- this.cu_print_checkdatecode.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.cu_print_checkdatecode.ForeColor = System.Drawing.Color.Blue;
- this.cu_print_checkdatecode.Location = new System.Drawing.Point(87, 249);
- this.cu_print_checkdatecode.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.cu_print_checkdatecode.Name = "cu_print_checkdatecode";
- this.cu_print_checkdatecode.Size = new System.Drawing.Size(109, 21);
- this.cu_print_checkdatecode.TabIndex = 107;
- this.cu_print_checkdatecode.Text = "校验DateCode";
- this.cu_print_checkdatecode.UseVisualStyleBackColor = true;
- //
- // ResetBarcode
- //
- this.ResetBarcode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ResetBarcode.Location = new System.Drawing.Point(234, 217);
- this.ResetBarcode.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ResetBarcode.Name = "ResetBarcode";
- this.ResetBarcode.Size = new System.Drawing.Size(68, 26);
- this.ResetBarcode.TabIndex = 108;
- this.ResetBarcode.Text = "重置条码";
- this.ResetBarcode.UseVisualStyleBackColor = true;
- this.ResetBarcode.Click += new System.EventHandler(this.ResetBarcode_Click);
- //
- // label29
- //
- this.label29.AutoSize = true;
- this.label29.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label29.Location = new System.Drawing.Point(83, 185);
- this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(65, 20);
- this.label29.TabIndex = 109;
- this.label29.Text = "日期格式";
- //
- // cu_print_dateformat
- //
- this.cu_print_dateformat.AutoSize = true;
- this.cu_print_dateformat.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cu_print_dateformat.Location = new System.Drawing.Point(154, 187);
- this.cu_print_dateformat.Name = "cu_print_dateformat";
- this.cu_print_dateformat.Size = new System.Drawing.Size(0, 20);
- this.cu_print_dateformat.TabIndex = 110;
- //
- // front_sg_separator
- //
- this.front_sg_separator.Enabled = false;
- this.front_sg_separator.ID = null;
- this.front_sg_separator.Location = new System.Drawing.Point(290, 38);
- this.front_sg_separator.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.front_sg_separator.Name = "front_sg_separator";
- this.front_sg_separator.Size = new System.Drawing.Size(28, 21);
- this.front_sg_separator.Str = null;
- this.front_sg_separator.Str1 = null;
- this.front_sg_separator.Str2 = null;
- this.front_sg_separator.TabIndex = 96;
- //
- // FrontCollect
- //
- this.FrontCollect.Enabled = false;
- this.FrontCollect.ID = null;
- this.FrontCollect.Location = new System.Drawing.Point(76, 94);
- this.FrontCollect.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.FrontCollect.Name = "FrontCollect";
- this.FrontCollect.Size = new System.Drawing.Size(150, 21);
- this.FrontCollect.Str = null;
- this.FrontCollect.Str1 = null;
- this.FrontCollect.Str2 = null;
- this.FrontCollect.TabIndex = 90;
- //
- // CollectionProcess
- //
- this.CollectionProcess.Controls.Add(this.groupBox2);
- this.CollectionProcess.Controls.Add(this.groupBox1);
- this.CollectionProcess.Controls.Add(this.DetailRange2);
- this.CollectionProcess.Controls.Add(this.DetailRange1);
- this.CollectionProcess.Controls.Add(this.outboxProcess);
- this.CollectionProcess.Controls.Add(this.midboxProcess);
- this.CollectionProcess.Controls.Add(this.label25);
- this.CollectionProcess.Controls.Add(this.label24);
- this.CollectionProcess.Controls.Add(this.AddOutBox);
- this.CollectionProcess.Controls.Add(this.CutOutBox);
- this.CollectionProcess.Controls.Add(this.CutMidBox);
- this.CollectionProcess.Controls.Add(this.AddMidBox);
- this.CollectionProcess.Controls.Add(this.SetOutBox);
- this.CollectionProcess.Controls.Add(this.SetMidBox);
- this.CollectionProcess.Controls.Add(this.ButtonSetMidBox);
- this.CollectionProcess.Controls.Add(this.ButtonSetOutBox);
- this.CollectionProcess.Controls.Add(this.ButtonRecheckPass);
- this.CollectionProcess.Controls.Add(this.ButtonCollectPass);
- this.CollectionProcess.Controls.Add(this.checkBox2);
- this.CollectionProcess.Controls.Add(this.label23);
- this.CollectionProcess.Controls.Add(this.label22);
- this.CollectionProcess.Controls.Add(this.RecheckBarcode);
- this.CollectionProcess.Controls.Add(this.RecheckCuprodcode);
- this.CollectionProcess.Controls.Add(this.DetailRange);
- this.CollectionProcess.Controls.Add(this.label21);
- this.CollectionProcess.Controls.Add(this.Process_midboxcode);
- this.CollectionProcess.Controls.Add(this.Process_outboxcode);
- this.CollectionProcess.Controls.Add(this.CollectedCount);
- this.CollectionProcess.Controls.Add(this.label14);
- this.CollectionProcess.Controls.Add(this.label11);
- this.CollectionProcess.Controls.Add(this.Process);
- this.CollectionProcess.Font = new System.Drawing.Font("微软雅黑", 12F);
- this.CollectionProcess.Location = new System.Drawing.Point(334, 6);
- this.CollectionProcess.Margin = new System.Windows.Forms.Padding(2);
- this.CollectionProcess.Name = "CollectionProcess";
- this.CollectionProcess.Padding = new System.Windows.Forms.Padding(2);
- this.CollectionProcess.Size = new System.Drawing.Size(299, 268);
- this.CollectionProcess.TabIndex = 80;
- this.CollectionProcess.TabStop = false;
- this.CollectionProcess.Text = " 操作状态";
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.ManualAutoCheck);
- this.groupBox2.Controls.Add(this.ManualFrontCheck);
- this.groupBox2.Controls.Add(this.ManualBackCheck);
- this.groupBox2.Location = new System.Drawing.Point(77, 177);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Size = new System.Drawing.Size(215, 22);
- this.groupBox2.TabIndex = 97;
- this.groupBox2.TabStop = false;
- //
- // ManualAutoCheck
- //
- this.ManualAutoCheck.AutoSize = true;
- this.ManualAutoCheck.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.ManualAutoCheck.Location = new System.Drawing.Point(165, 4);
- this.ManualAutoCheck.Name = "ManualAutoCheck";
- this.ManualAutoCheck.Size = new System.Drawing.Size(50, 21);
- this.ManualAutoCheck.TabIndex = 99;
- this.ManualAutoCheck.TabStop = true;
- this.ManualAutoCheck.Text = "自动";
- this.ManualAutoCheck.UseVisualStyleBackColor = true;
- this.ManualAutoCheck.CheckedChanged += new System.EventHandler(this.ManualCheck_CheckedChanged);
- //
- // ManualFrontCheck
- //
- this.ManualFrontCheck.AutoSize = true;
- this.ManualFrontCheck.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.ManualFrontCheck.Location = new System.Drawing.Point(9, 4);
- this.ManualFrontCheck.Name = "ManualFrontCheck";
- this.ManualFrontCheck.Size = new System.Drawing.Size(74, 21);
- this.ManualFrontCheck.TabIndex = 96;
- this.ManualFrontCheck.TabStop = true;
- this.ManualFrontCheck.Text = "前端采集";
- this.ManualFrontCheck.UseVisualStyleBackColor = true;
- this.ManualFrontCheck.CheckedChanged += new System.EventHandler(this.ManualCheck_CheckedChanged);
- //
- // ManualBackCheck
- //
- this.ManualBackCheck.AutoSize = true;
- this.ManualBackCheck.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.ManualBackCheck.Location = new System.Drawing.Point(89, 4);
- this.ManualBackCheck.Name = "ManualBackCheck";
- this.ManualBackCheck.Size = new System.Drawing.Size(74, 21);
- this.ManualBackCheck.TabIndex = 97;
- this.ManualBackCheck.TabStop = true;
- this.ManualBackCheck.Text = "后端扫描";
- this.ManualBackCheck.UseVisualStyleBackColor = true;
- this.ManualBackCheck.CheckedChanged += new System.EventHandler(this.ManualCheck_CheckedChanged);
- //
- // groupBox1
- //
- this.groupBox1.Controls.Add(this.ManualCollection);
- this.groupBox1.Controls.Add(this.AutoCollection);
- this.groupBox1.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.groupBox1.Location = new System.Drawing.Point(5, 115);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Size = new System.Drawing.Size(110, 22);
- this.groupBox1.TabIndex = 97;
- this.groupBox1.TabStop = false;
- //
- // ManualCollection
- //
- this.ManualCollection.AutoSize = true;
- this.ManualCollection.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.ManualCollection.Location = new System.Drawing.Point(63, 3);
- this.ManualCollection.Name = "ManualCollection";
- this.ManualCollection.Size = new System.Drawing.Size(50, 21);
- this.ManualCollection.TabIndex = 77;
- this.ManualCollection.TabStop = true;
- this.ManualCollection.Text = "手动";
- this.ManualCollection.UseVisualStyleBackColor = true;
- this.ManualCollection.CheckedChanged += new System.EventHandler(this.Collection_CheckedChanged);
- //
- // AutoCollection
- //
- this.AutoCollection.AutoSize = true;
- this.AutoCollection.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.AutoCollection.Location = new System.Drawing.Point(9, 3);
- this.AutoCollection.Name = "AutoCollection";
- this.AutoCollection.Size = new System.Drawing.Size(50, 21);
- this.AutoCollection.TabIndex = 76;
- this.AutoCollection.TabStop = true;
- this.AutoCollection.Text = "自动";
- this.AutoCollection.UseVisualStyleBackColor = true;
- this.AutoCollection.CheckedChanged += new System.EventHandler(this.Collection_CheckedChanged);
- //
- // DetailRange2
- //
- this.DetailRange2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.DetailRange2.Location = new System.Drawing.Point(224, 213);
- this.DetailRange2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.DetailRange2.Name = "DetailRange2";
- this.DetailRange2.Size = new System.Drawing.Size(47, 23);
- this.DetailRange2.TabIndex = 99;
- //
- // DetailRange1
- //
- this.DetailRange1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.DetailRange1.Location = new System.Drawing.Point(153, 212);
- this.DetailRange1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.DetailRange1.Name = "DetailRange1";
- this.DetailRange1.Size = new System.Drawing.Size(47, 23);
- this.DetailRange1.TabIndex = 100;
- //
- // outboxProcess
- //
- this.outboxProcess.AutoSize = true;
- this.outboxProcess.Font = new System.Drawing.Font("微软雅黑", 12F);
- this.outboxProcess.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
- this.outboxProcess.Location = new System.Drawing.Point(239, 87);
- this.outboxProcess.Name = "outboxProcess";
- this.outboxProcess.Size = new System.Drawing.Size(35, 21);
- this.outboxProcess.TabIndex = 114;
- this.outboxProcess.Text = "0/0";
- //
- // midboxProcess
- //
- this.midboxProcess.AutoSize = true;
- this.midboxProcess.Font = new System.Drawing.Font("微软雅黑", 12F);
- this.midboxProcess.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
- this.midboxProcess.Location = new System.Drawing.Point(239, 39);
- this.midboxProcess.Name = "midboxProcess";
- this.midboxProcess.Size = new System.Drawing.Size(35, 21);
- this.midboxProcess.TabIndex = 113;
- this.midboxProcess.Text = "0/0";
- //
- // label25
- //
- this.label25.AutoSize = true;
- this.label25.Font = new System.Drawing.Font("微软雅黑", 12F);
- this.label25.Location = new System.Drawing.Point(239, 63);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(42, 21);
- this.label25.TabIndex = 112;
- this.label25.Text = "进度";
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.Font = new System.Drawing.Font("微软雅黑", 12F);
- this.label24.Location = new System.Drawing.Point(239, 13);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(42, 21);
- this.label24.TabIndex = 111;
- this.label24.Text = "进度";
- //
- // AddOutBox
- //
- this.AddOutBox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.AddOutBox.Location = new System.Drawing.Point(175, 85);
- this.AddOutBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.AddOutBox.Name = "AddOutBox";
- this.AddOutBox.Size = new System.Drawing.Size(25, 25);
- this.AddOutBox.TabIndex = 110;
- this.AddOutBox.Text = "+";
- this.AddOutBox.UseVisualStyleBackColor = true;
- this.AddOutBox.Click += new System.EventHandler(this.AddCutBox_Click);
- //
- // CutOutBox
- //
- this.CutOutBox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.CutOutBox.Location = new System.Drawing.Point(207, 85);
- this.CutOutBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.CutOutBox.Name = "CutOutBox";
- this.CutOutBox.Size = new System.Drawing.Size(25, 25);
- this.CutOutBox.TabIndex = 109;
- this.CutOutBox.Text = "-";
- this.CutOutBox.UseVisualStyleBackColor = true;
- this.CutOutBox.Click += new System.EventHandler(this.AddCutBox_Click);
- //
- // CutMidBox
- //
- this.CutMidBox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.CutMidBox.Location = new System.Drawing.Point(207, 35);
- this.CutMidBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.CutMidBox.Name = "CutMidBox";
- this.CutMidBox.Size = new System.Drawing.Size(25, 25);
- this.CutMidBox.TabIndex = 108;
- this.CutMidBox.Text = "-";
- this.CutMidBox.UseVisualStyleBackColor = true;
- this.CutMidBox.Click += new System.EventHandler(this.AddCutBox_Click);
- //
- // AddMidBox
- //
- this.AddMidBox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.AddMidBox.Location = new System.Drawing.Point(175, 35);
- this.AddMidBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.AddMidBox.Name = "AddMidBox";
- this.AddMidBox.Size = new System.Drawing.Size(25, 25);
- this.AddMidBox.TabIndex = 107;
- this.AddMidBox.Text = "+";
- this.AddMidBox.UseVisualStyleBackColor = true;
- this.AddMidBox.Click += new System.EventHandler(this.AddCutBox_Click);
- //
- // SetOutBox
- //
- this.SetOutBox.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.SetOutBox.ID = null;
- this.SetOutBox.Location = new System.Drawing.Point(265, 146);
- this.SetOutBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.SetOutBox.Name = "SetOutBox";
- this.SetOutBox.Size = new System.Drawing.Size(29, 23);
- this.SetOutBox.Str = null;
- this.SetOutBox.Str1 = null;
- this.SetOutBox.Str2 = null;
- this.SetOutBox.TabIndex = 106;
- //
- // SetMidBox
- //
- this.SetMidBox.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.SetMidBox.ID = null;
- this.SetMidBox.Location = new System.Drawing.Point(265, 117);
- this.SetMidBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.SetMidBox.Name = "SetMidBox";
- this.SetMidBox.Size = new System.Drawing.Size(29, 23);
- this.SetMidBox.Str = null;
- this.SetMidBox.Str1 = null;
- this.SetMidBox.Str2 = null;
- this.SetMidBox.TabIndex = 105;
- //
- // ButtonSetMidBox
- //
- this.ButtonSetMidBox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ButtonSetMidBox.Location = new System.Drawing.Point(186, 115);
- this.ButtonSetMidBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ButtonSetMidBox.Name = "ButtonSetMidBox";
- this.ButtonSetMidBox.Size = new System.Drawing.Size(76, 26);
- this.ButtonSetMidBox.TabIndex = 104;
- this.ButtonSetMidBox.Text = "设置中盒号";
- this.ButtonSetMidBox.UseVisualStyleBackColor = true;
- this.ButtonSetMidBox.Click += new System.EventHandler(this.ButtonSetMidBox_Click);
- //
- // ButtonSetOutBox
- //
- this.ButtonSetOutBox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ButtonSetOutBox.Location = new System.Drawing.Point(186, 145);
- this.ButtonSetOutBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ButtonSetOutBox.Name = "ButtonSetOutBox";
- this.ButtonSetOutBox.Size = new System.Drawing.Size(76, 26);
- this.ButtonSetOutBox.TabIndex = 103;
- this.ButtonSetOutBox.Text = "设置外箱号";
- this.ButtonSetOutBox.UseVisualStyleBackColor = true;
- this.ButtonSetOutBox.Click += new System.EventHandler(this.ButtonSetOutBox_Click);
- //
- // ButtonRecheckPass
- //
- this.ButtonRecheckPass.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ButtonRecheckPass.Location = new System.Drawing.Point(118, 145);
- this.ButtonRecheckPass.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ButtonRecheckPass.Name = "ButtonRecheckPass";
- this.ButtonRecheckPass.Size = new System.Drawing.Size(65, 26);
- this.ButtonRecheckPass.TabIndex = 102;
- this.ButtonRecheckPass.Text = "复核通过";
- this.ButtonRecheckPass.UseVisualStyleBackColor = true;
- this.ButtonRecheckPass.Click += new System.EventHandler(this.ButtonRecheckPass_Click);
- //
- // ButtonCollectPass
- //
- this.ButtonCollectPass.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ButtonCollectPass.Location = new System.Drawing.Point(118, 114);
- this.ButtonCollectPass.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ButtonCollectPass.Name = "ButtonCollectPass";
- this.ButtonCollectPass.Size = new System.Drawing.Size(65, 26);
- this.ButtonCollectPass.TabIndex = 101;
- this.ButtonCollectPass.Text = "采集通过";
- this.ButtonCollectPass.UseVisualStyleBackColor = true;
- this.ButtonCollectPass.Click += new System.EventHandler(this.ButtonCollectPass_Click);
- //
- // checkBox2
- //
- this.checkBox2.AutoSize = true;
- this.checkBox2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.checkBox2.Location = new System.Drawing.Point(13, 149);
- this.checkBox2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.checkBox2.Name = "checkBox2";
- this.checkBox2.Size = new System.Drawing.Size(87, 21);
- this.checkBox2.TabIndex = 100;
- this.checkBox2.Text = "半自动模式";
- this.checkBox2.UseVisualStyleBackColor = true;
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label23.Location = new System.Drawing.Point(5, 183);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(68, 17);
- this.label23.TabIndex = 98;
- this.label23.Text = "手持扫描枪";
- //
- // label22
- //
- this.label22.AutoSize = true;
- this.label22.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label22.Location = new System.Drawing.Point(9, 241);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(56, 17);
- this.label22.TabIndex = 95;
- this.label22.Text = "复核数据";
- //
- // RecheckBarcode
- //
- this.RecheckBarcode.AutoSize = true;
- this.RecheckBarcode.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.RecheckBarcode.Location = new System.Drawing.Point(183, 239);
- this.RecheckBarcode.Name = "RecheckBarcode";
- this.RecheckBarcode.Size = new System.Drawing.Size(95, 21);
- this.RecheckBarcode.TabIndex = 94;
- this.RecheckBarcode.TabStop = true;
- this.RecheckBarcode.Text = "唯一码+型号";
- this.RecheckBarcode.UseVisualStyleBackColor = true;
- //
- // RecheckCuprodcode
- //
- this.RecheckCuprodcode.AutoSize = true;
- this.RecheckCuprodcode.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.RecheckCuprodcode.Location = new System.Drawing.Point(71, 239);
- this.RecheckCuprodcode.Name = "RecheckCuprodcode";
- this.RecheckCuprodcode.Size = new System.Drawing.Size(107, 21);
- this.RecheckCuprodcode.TabIndex = 93;
- this.RecheckCuprodcode.TabStop = true;
- this.RecheckCuprodcode.Text = "客户料号+型号";
- this.RecheckCuprodcode.UseVisualStyleBackColor = true;
- //
- // DetailRange
- //
- this.DetailRange.AutoSize = true;
- this.DetailRange.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.DetailRange.Location = new System.Drawing.Point(11, 215);
- this.DetailRange.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.DetailRange.Name = "DetailRange";
- this.DetailRange.Size = new System.Drawing.Size(138, 21);
- this.DetailRange.TabIndex = 92;
- this.DetailRange.Text = "仅处理:出库明细范围";
- this.DetailRange.UseVisualStyleBackColor = true;
- this.DetailRange.CheckedChanged += new System.EventHandler(this.DetailRange_CheckedChanged);
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label21.Location = new System.Drawing.Point(207, 217);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(13, 17);
- this.label21.TabIndex = 90;
- this.label21.Text = "-";
- //
- // Process_midboxcode
- //
- this.Process_midboxcode.AutoSize = true;
- this.Process_midboxcode.Font = new System.Drawing.Font("微软雅黑", 12F);
- this.Process_midboxcode.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
- this.Process_midboxcode.Location = new System.Drawing.Point(139, 39);
- this.Process_midboxcode.Name = "Process_midboxcode";
- this.Process_midboxcode.Size = new System.Drawing.Size(19, 21);
- 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("微软雅黑", 12F);
- this.Process_outboxcode.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
- this.Process_outboxcode.Location = new System.Drawing.Point(139, 87);
- this.Process_outboxcode.Name = "Process_outboxcode";
- this.Process_outboxcode.Size = new System.Drawing.Size(19, 21);
- this.Process_outboxcode.TabIndex = 73;
- this.Process_outboxcode.Text = "0";
- //
- // CollectedCount
- //
- this.CollectedCount.AutoSize = true;
- this.CollectedCount.Font = new System.Drawing.Font("微软雅黑", 12F);
- this.CollectedCount.ForeColor = System.Drawing.Color.DarkGreen;
- this.CollectedCount.Location = new System.Drawing.Point(15, 57);
- this.CollectedCount.Name = "CollectedCount";
- this.CollectedCount.Size = new System.Drawing.Size(35, 21);
- this.CollectedCount.TabIndex = 70;
- this.CollectedCount.Text = "0/0";
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.Font = new System.Drawing.Font("微软雅黑", 12F);
- this.label14.Location = new System.Drawing.Point(133, 63);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(74, 21);
- this.label14.TabIndex = 69;
- this.label14.Text = "当前箱号";
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.Font = new System.Drawing.Font("微软雅黑", 12F);
- this.label11.Location = new System.Drawing.Point(133, 15);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(74, 21);
- this.label11.TabIndex = 68;
- this.label11.Text = "当前盒号";
- //
- // 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(15, 29);
- this.Process.Name = "Process";
- this.Process.Size = new System.Drawing.Size(44, 17);
- this.Process.TabIndex = 65;
- this.Process.Text = "总进度";
- //
- // back_sg_separator
- //
- this.back_sg_separator.Enabled = false;
- this.back_sg_separator.ID = null;
- this.back_sg_separator.Location = new System.Drawing.Point(290, 66);
- this.back_sg_separator.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.back_sg_separator.Name = "back_sg_separator";
- this.back_sg_separator.Size = new System.Drawing.Size(28, 21);
- this.back_sg_separator.Str = null;
- this.back_sg_separator.Str1 = null;
- this.back_sg_separator.Str2 = null;
- this.back_sg_separator.TabIndex = 62;
- //
- // BackCheck
- //
- this.BackCheck.Enabled = false;
- this.BackCheck.ID = null;
- this.BackCheck.Location = new System.Drawing.Point(76, 120);
- this.BackCheck.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.BackCheck.Name = "BackCheck";
- this.BackCheck.Size = new System.Drawing.Size(150, 21);
- this.BackCheck.Str = null;
- this.BackCheck.Str1 = null;
- this.BackCheck.Str2 = null;
- this.BackCheck.TabIndex = 54;
- //
- // 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(4, 631);
- this.MessageLog.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.MessageLog.Name = "MessageLog";
- this.MessageLog.Size = new System.Drawing.Size(1383, 97);
- this.MessageLog.TabIndex = 28;
- this.MessageLog.Text = "";
- this.MessageLog.MouseUp += new System.Windows.Forms.MouseEventHandler(this.MessageLog_MouseUp);
- //
- // 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.pd_id,
- this.pib_id1,
- this.rownum,
- this.pib_pdno,
- this.pib_prodcode,
- this.pib_ifmodify,
- this.pib_ifupload,
- this.pr_vendprodcode,
- this.pib_brand,
- this.pib_madein,
- this.pr_orispeccode,
- this.pr_zxbzs,
- this.pr_unit,
- this.pib_lotno,
- this.pib_datecode,
- this.pib_year,
- this.pib_month,
- this.pib_day,
- this.pib_ifpick,
- this.pib_ifprint,
- this.pib_ifrecheck,
- this.pib_datecode1,
- this.pib_qty,
- this.pib_barcode,
- this.pib_custbarcode,
- this.pib_custmidboxcode,
- 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(2, 279);
- this.LabelInf.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.LabelInf.Name = "LabelInf";
- this.LabelInf.RowTemplate.Height = 23;
- this.LabelInf.Size = new System.Drawing.Size(1385, 326);
- 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.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.LabelInf_DataError);
- //
- // Choose
- //
- this.Choose.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.Choose.HeaderText = "勾选";
- this.Choose.Name = "Choose";
- this.Choose.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.Choose.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.Choose.Visible = false;
- this.Choose.Width = 55;
- //
- // pd_id
- //
- this.pd_id.DataPropertyName = "pd_id";
- this.pd_id.HeaderText = "pd_id";
- this.pd_id.Name = "pd_id";
- this.pd_id.Visible = false;
- this.pd_id.Width = 60;
- //
- // pib_id1
- //
- this.pib_id1.DataPropertyName = "pib_id";
- this.pib_id1.HeaderText = "pib_id";
- this.pib_id1.Name = "pib_id1";
- this.pib_id1.Width = 66;
- //
- // rownum
- //
- this.rownum.DataPropertyName = "rownum";
- this.rownum.HeaderText = "行号";
- this.rownum.Name = "rownum";
- this.rownum.Width = 54;
- //
- // pib_pdno
- //
- this.pib_pdno.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
- this.pib_pdno.DataPropertyName = "pib_pdno";
- this.pib_pdno.HeaderText = "明细序号";
- this.pib_pdno.Name = "pib_pdno";
- this.pib_pdno.ReadOnly = true;
- this.pib_pdno.Width = 78;
- //
- // pib_prodcode
- //
- this.pib_prodcode.DataPropertyName = "pib_prodcode";
- this.pib_prodcode.HeaderText = "物料编号";
- this.pib_prodcode.Name = "pib_prodcode";
- this.pib_prodcode.ReadOnly = true;
- this.pib_prodcode.Width = 78;
- //
- // pib_ifmodify
- //
- this.pib_ifmodify.DataPropertyName = "pib_ifmodify";
- this.pib_ifmodify.HeaderText = "已修改";
- this.pib_ifmodify.Name = "pib_ifmodify";
- this.pib_ifmodify.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.pib_ifmodify.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.pib_ifmodify.Width = 66;
- //
- // pib_ifupload
- //
- this.pib_ifupload.DataPropertyName = "pib_ifupload";
- this.pib_ifupload.HeaderText = "已上传";
- this.pib_ifupload.Name = "pib_ifupload";
- this.pib_ifupload.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.pib_ifupload.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.pib_ifupload.Width = 66;
- //
- // pr_vendprodcode
- //
- this.pr_vendprodcode.DataPropertyName = "pr_vendprodcode";
- this.pr_vendprodcode.HeaderText = "MPN";
- this.pr_vendprodcode.Name = "pr_vendprodcode";
- this.pr_vendprodcode.ReadOnly = true;
- this.pr_vendprodcode.Visible = false;
- this.pr_vendprodcode.Width = 48;
- //
- // pib_brand
- //
- this.pib_brand.DataPropertyName = "pib_brand";
- this.pib_brand.HeaderText = "品牌";
- this.pib_brand.Name = "pib_brand";
- this.pib_brand.ReadOnly = true;
- this.pib_brand.Width = 54;
- //
- // pib_madein
- //
- this.pib_madein.DataPropertyName = "pib_madein";
- this.pib_madein.HeaderText = "产地";
- this.pib_madein.Name = "pib_madein";
- this.pib_madein.Visible = false;
- this.pib_madein.Width = 54;
- //
- // pr_orispeccode
- //
- this.pr_orispeccode.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
- this.pr_orispeccode.DataPropertyName = "pr_orispeccode";
- this.pr_orispeccode.HeaderText = "原厂型号";
- this.pr_orispeccode.Name = "pr_orispeccode";
- this.pr_orispeccode.Width = 78;
- //
- // pr_zxbzs
- //
- this.pr_zxbzs.DataPropertyName = "pr_zxbzs";
- this.pr_zxbzs.HeaderText = "最小包装数";
- this.pr_zxbzs.Name = "pr_zxbzs";
- this.pr_zxbzs.Visible = false;
- this.pr_zxbzs.Width = 90;
- //
- // pr_unit
- //
- this.pr_unit.DataPropertyName = "pr_unit";
- this.pr_unit.HeaderText = "单位";
- this.pr_unit.Name = "pr_unit";
- this.pr_unit.Width = 54;
- //
- // pib_lotno
- //
- this.pib_lotno.DataPropertyName = "pib_lotno";
- this.pib_lotno.HeaderText = "LotNo";
- this.pib_lotno.Name = "pib_lotno";
- this.pib_lotno.Width = 60;
- //
- // pib_datecode
- //
- this.pib_datecode.DataPropertyName = "pib_datecode";
- this.pib_datecode.HeaderText = "DateCode";
- this.pib_datecode.Name = "pib_datecode";
- this.pib_datecode.Width = 78;
- //
- // pib_year
- //
- this.pib_year.DataPropertyName = "pib_year";
- this.pib_year.HeaderText = "年";
- this.pib_year.Name = "pib_year";
- this.pib_year.Width = 42;
- //
- // pib_month
- //
- this.pib_month.DataPropertyName = "pib_month";
- this.pib_month.HeaderText = "月";
- this.pib_month.Name = "pib_month";
- this.pib_month.Width = 42;
- //
- // pib_day
- //
- this.pib_day.DataPropertyName = "pib_day";
- this.pib_day.HeaderText = "日";
- this.pib_day.Name = "pib_day";
- this.pib_day.Width = 42;
- //
- // pib_ifpick
- //
- this.pib_ifpick.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.pib_ifpick.DataPropertyName = "pib_ifpick";
- this.pib_ifpick.HeaderText = "已扫描";
- 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.Name = "pib_ifprint";
- this.pib_ifprint.Width = 60;
- //
- // pib_ifrecheck
- //
- this.pib_ifrecheck.DataPropertyName = "pib_ifrecheck";
- this.pib_ifrecheck.HeaderText = "已复核";
- this.pib_ifrecheck.Name = "pib_ifrecheck";
- this.pib_ifrecheck.Width = 47;
- //
- // pib_datecode1
- //
- this.pib_datecode1.DataPropertyName = "pib_datecode1";
- this.pib_datecode1.HeaderText = "DateCode1";
- this.pib_datecode1.Name = "pib_datecode1";
- this.pib_datecode1.Visible = false;
- this.pib_datecode1.Width = 84;
- //
- // pib_qty
- //
- this.pib_qty.DataPropertyName = "pib_qty";
- this.pib_qty.HeaderText = "数量";
- this.pib_qty.Name = "pib_qty";
- this.pib_qty.ReadOnly = true;
- this.pib_qty.Width = 54;
- //
- // pib_barcode
- //
- this.pib_barcode.DataPropertyName = "pib_barcode";
- this.pib_barcode.HeaderText = "唯一条码";
- this.pib_barcode.Name = "pib_barcode";
- this.pib_barcode.ReadOnly = true;
- this.pib_barcode.Visible = false;
- this.pib_barcode.Width = 78;
- //
- // pib_custbarcode
- //
- this.pib_custbarcode.DataPropertyName = "pib_custbarcode";
- this.pib_custbarcode.HeaderText = "唯一条码";
- this.pib_custbarcode.Name = "pib_custbarcode";
- this.pib_custbarcode.ReadOnly = true;
- this.pib_custbarcode.Width = 78;
- //
- // pib_custmidboxcode
- //
- this.pib_custmidboxcode.DataPropertyName = "pib_custmidboxcode";
- this.pib_custmidboxcode.HeaderText = "中盒条码";
- this.pib_custmidboxcode.Name = "pib_custmidboxcode";
- this.pib_custmidboxcode.Width = 78;
- //
- // pib_custoutboxcode
- //
- this.pib_custoutboxcode.DataPropertyName = "pib_custoutboxcode";
- this.pib_custoutboxcode.HeaderText = "外箱条码";
- this.pib_custoutboxcode.Name = "pib_custoutboxcode";
- this.pib_custoutboxcode.Width = 78;
- //
- // pd_pocode
- //
- this.pd_pocode.DataPropertyName = "pd_pocode";
- this.pd_pocode.HeaderText = "客户PO";
- this.pd_pocode.Name = "pd_pocode";
- this.pd_pocode.ReadOnly = true;
- this.pd_pocode.Width = 66;
- //
- // pd_custprodcode
- //
- this.pd_custprodcode.DataPropertyName = "pd_custprodcode";
- this.pd_custprodcode.HeaderText = "客户料号";
- this.pd_custprodcode.Name = "pd_custprodcode";
- this.pd_custprodcode.ReadOnly = true;
- this.pd_custprodcode.Width = 78;
- //
- // pd_custprodspec
- //
- this.pd_custprodspec.DataPropertyName = "pd_custprodspec";
- this.pd_custprodspec.HeaderText = "客户型号";
- this.pd_custprodspec.Name = "pd_custprodspec";
- this.pd_custprodspec.ReadOnly = true;
- this.pd_custprodspec.Width = 78;
- //
- // pr_spec
- //
- this.pr_spec.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
- this.pr_spec.DataPropertyName = "pr_spec";
- this.pr_spec.HeaderText = "规格";
- this.pr_spec.Name = "pr_spec";
- this.pr_spec.Width = 54;
- //
- // pib_outboxcode1
- //
- this.pib_outboxcode1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
- this.pib_outboxcode1.DataPropertyName = "pib_outboxcode1";
- this.pib_outboxcode1.HeaderText = "中盒号";
- this.pib_outboxcode1.Name = "pib_outboxcode1";
- this.pib_outboxcode1.Width = 66;
- //
- // pib_outboxcode2
- //
- this.pib_outboxcode2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
- this.pib_outboxcode2.DataPropertyName = "pib_outboxcode2";
- this.pib_outboxcode2.HeaderText = "外箱号";
- this.pib_outboxcode2.Name = "pib_outboxcode2";
- this.pib_outboxcode2.Width = 66;
- //
- // pi_inoutno
- //
- this.pi_inoutno.ID = null;
- this.pi_inoutno.Location = new System.Drawing.Point(76, 10);
- this.pi_inoutno.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.pi_inoutno.Name = "pi_inoutno";
- this.pi_inoutno.Size = new System.Drawing.Size(150, 21);
- this.pi_inoutno.Str = null;
- this.pi_inoutno.Str1 = null;
- this.pi_inoutno.Str2 = null;
- this.pi_inoutno.TabIndex = 2;
- this.pi_inoutno.KeyDown += new System.Windows.Forms.KeyEventHandler(this.pi_inoutno_KeyDown);
- //
- // SingleLabel
- //
- this.SingleLabel.Controls.Add(this.SingleDocRefresh);
- this.SingleLabel.Controls.Add(this.label17);
- this.SingleLabel.Controls.Add(this.groupBoxWithBorder4);
- this.SingleLabel.Controls.Add(this.label7);
- this.SingleLabel.Controls.Add(this.label16);
- this.SingleLabel.Controls.Add(this.SingleLabelPrinter);
- this.SingleLabel.Controls.Add(this.SingleBoxEnd);
- this.SingleLabel.Controls.Add(this.SingleBoxBegin);
- 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(638, 6);
- this.SingleLabel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.SingleLabel.Name = "SingleLabel";
- this.SingleLabel.Padding = new System.Windows.Forms.Padding(2);
- this.SingleLabel.Size = new System.Drawing.Size(180, 269);
- this.SingleLabel.TabIndex = 77;
- this.SingleLabel.TabStop = false;
- this.SingleLabel.Text = "单盘标签";
- //
- // SingleDocRefresh
- //
- this.SingleDocRefresh.AutoSize = true;
- this.SingleDocRefresh.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.SingleDocRefresh.Location = new System.Drawing.Point(69, 25);
- this.SingleDocRefresh.Name = "SingleDocRefresh";
- this.SingleDocRefresh.Size = new System.Drawing.Size(37, 20);
- this.SingleDocRefresh.TabIndex = 118;
- this.SingleDocRefresh.TabStop = true;
- this.SingleDocRefresh.Text = "刷新";
- this.SingleDocRefresh.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.DocRefresh_LinkClicked);
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label17.Location = new System.Drawing.Point(11, 25);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(55, 20);
- this.label17.TabIndex = 115;
- this.label17.Text = "格式(T)";
- //
- // groupBoxWithBorder4
- //
- this.groupBoxWithBorder4.Controls.Add(this.label20);
- this.groupBoxWithBorder4.Controls.Add(this.BackCombo);
- this.groupBoxWithBorder4.Controls.Add(this.label19);
- this.groupBoxWithBorder4.Controls.Add(this.FrontCombo);
- this.groupBoxWithBorder4.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.groupBoxWithBorder4.Location = new System.Drawing.Point(7, 186);
- this.groupBoxWithBorder4.Name = "groupBoxWithBorder4";
- this.groupBoxWithBorder4.Size = new System.Drawing.Size(165, 78);
- this.groupBoxWithBorder4.TabIndex = 41;
- this.groupBoxWithBorder4.TabStop = false;
- this.groupBoxWithBorder4.Text = "扫描区域";
- //
- // label20
- //
- this.label20.AutoSize = true;
- this.label20.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label20.Location = new System.Drawing.Point(13, 53);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(37, 20);
- this.label20.TabIndex = 94;
- this.label20.Text = "后端";
- //
- // BackCombo
- //
- this.BackCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.BackCombo.Font = new System.Drawing.Font("微软雅黑", 8F);
- this.BackCombo.FormattingEnabled = true;
- this.BackCombo.Location = new System.Drawing.Point(52, 48);
- this.BackCombo.Name = "BackCombo";
- this.BackCombo.Size = new System.Drawing.Size(105, 24);
- this.BackCombo.TabIndex = 93;
- //
- // label19
- //
- this.label19.AutoSize = true;
- this.label19.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label19.Location = new System.Drawing.Point(13, 29);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(37, 20);
- this.label19.TabIndex = 92;
- this.label19.Text = "前端";
- //
- // FrontCombo
- //
- this.FrontCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.FrontCombo.Font = new System.Drawing.Font("微软雅黑", 8F);
- this.FrontCombo.FormattingEnabled = true;
- this.FrontCombo.Location = new System.Drawing.Point(52, 22);
- this.FrontCombo.Name = "FrontCombo";
- this.FrontCombo.Size = new System.Drawing.Size(105, 24);
- this.FrontCombo.TabIndex = 0;
- //
- // 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(9, 141);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(56, 17);
- this.label7.TabIndex = 76;
- this.label7.Text = "单盘范围";
- //
- // 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(67, 165);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(13, 17);
- this.label16.TabIndex = 87;
- this.label16.Text = "-";
- //
- // 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(6, 81);
- this.SingleLabelPrinter.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.SingleLabelPrinter.Name = "SingleLabelPrinter";
- this.SingleLabelPrinter.Size = new System.Drawing.Size(169, 25);
- this.SingleLabelPrinter.TabIndex = 40;
- //
- // SingleBoxEnd
- //
- this.SingleBoxEnd.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.SingleBoxEnd.ID = null;
- this.SingleBoxEnd.Location = new System.Drawing.Point(85, 162);
- this.SingleBoxEnd.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.SingleBoxEnd.Name = "SingleBoxEnd";
- this.SingleBoxEnd.Size = new System.Drawing.Size(50, 23);
- this.SingleBoxEnd.Str = null;
- this.SingleBoxEnd.Str1 = null;
- this.SingleBoxEnd.Str2 = null;
- this.SingleBoxEnd.TabIndex = 86;
- //
- // SingleBoxBegin
- //
- this.SingleBoxBegin.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.SingleBoxBegin.ID = null;
- this.SingleBoxBegin.Location = new System.Drawing.Point(12, 162);
- this.SingleBoxBegin.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.SingleBoxBegin.Name = "SingleBoxBegin";
- this.SingleBoxBegin.Size = new System.Drawing.Size(50, 23);
- this.SingleBoxBegin.Str = null;
- this.SingleBoxBegin.Str1 = null;
- this.SingleBoxBegin.Str2 = null;
- this.SingleBoxBegin.TabIndex = 85;
- //
- // 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(109, 111);
- this.SingleLabelPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.SingleLabelPrint.Name = "SingleLabelPrint";
- this.SingleLabelPrint.Size = new System.Drawing.Size(66, 26);
- 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.Checked = true;
- this.SingleLabelAutoPrint.CheckState = System.Windows.Forms.CheckState.Checked;
- 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(11, 113);
- this.SingleLabelAutoPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.SingleLabelAutoPrint.Name = "SingleLabelAutoPrint";
- this.SingleLabelAutoPrint.Size = new System.Drawing.Size(75, 21);
- 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(7, 49);
- this.SingleLabelCombox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.SingleLabelCombox.Name = "SingleLabelCombox";
- this.SingleLabelCombox.Size = new System.Drawing.Size(168, 25);
- this.SingleLabelCombox.TabIndex = 0;
- this.SingleLabelCombox.SelectedIndexChanged += new System.EventHandler(this.SingleLabelCombox_SelectedIndexChanged);
- //
- // MidLabel
- //
- this.MidLabel.Controls.Add(this.MidDocRefresh);
- this.MidLabel.Controls.Add(this.label26);
- this.MidLabel.Controls.Add(this.groupBoxWithBorder5);
- this.MidLabel.Controls.Add(this.label2);
- this.MidLabel.Controls.Add(this.label1);
- this.MidLabel.Controls.Add(this.LeastPrintNum);
- this.MidLabel.Controls.Add(this.OnlyPrint);
- this.MidLabel.Controls.Add(this.groupBoxWithBorder2);
- this.MidLabel.Controls.Add(this.label18);
- this.MidLabel.Controls.Add(this.MidLabelNum);
- this.MidLabel.Controls.Add(this.MidBoxEnd);
- this.MidLabel.Controls.Add(this.label12);
- this.MidLabel.Controls.Add(this.label5);
- this.MidLabel.Controls.Add(this.MidBoxBegin);
- 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(823, 6);
- this.MidLabel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.MidLabel.Name = "MidLabel";
- this.MidLabel.Padding = new System.Windows.Forms.Padding(2);
- this.MidLabel.Size = new System.Drawing.Size(279, 269);
- this.MidLabel.TabIndex = 78;
- this.MidLabel.TabStop = false;
- this.MidLabel.Text = "中盒标签";
- //
- // MidDocRefresh
- //
- this.MidDocRefresh.AutoSize = true;
- this.MidDocRefresh.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.MidDocRefresh.Location = new System.Drawing.Point(69, 27);
- this.MidDocRefresh.Name = "MidDocRefresh";
- this.MidDocRefresh.Size = new System.Drawing.Size(37, 20);
- this.MidDocRefresh.TabIndex = 120;
- this.MidDocRefresh.TabStop = true;
- this.MidDocRefresh.Text = "刷新";
- //
- // label26
- //
- this.label26.AutoSize = true;
- this.label26.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label26.Location = new System.Drawing.Point(11, 27);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(55, 20);
- this.label26.TabIndex = 116;
- this.label26.Text = "格式(T)";
- //
- // groupBoxWithBorder5
- //
- this.groupBoxWithBorder5.Controls.Add(this.Expression);
- this.groupBoxWithBorder5.Controls.Add(this.Equal);
- this.groupBoxWithBorder5.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.groupBoxWithBorder5.Location = new System.Drawing.Point(9, 198);
- this.groupBoxWithBorder5.Name = "groupBoxWithBorder5";
- this.groupBoxWithBorder5.Size = new System.Drawing.Size(158, 64);
- this.groupBoxWithBorder5.TabIndex = 95;
- this.groupBoxWithBorder5.TabStop = false;
- this.groupBoxWithBorder5.Text = "客户料号匹配模式";
- //
- // Expression
- //
- this.Expression.AutoSize = true;
- this.Expression.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.Expression.Location = new System.Drawing.Point(79, 31);
- this.Expression.Name = "Expression";
- this.Expression.Size = new System.Drawing.Size(62, 21);
- this.Expression.TabIndex = 1;
- this.Expression.TabStop = true;
- this.Expression.Text = "表达式";
- this.Expression.UseVisualStyleBackColor = true;
- //
- // Equal
- //
- this.Equal.AutoSize = true;
- this.Equal.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.Equal.Location = new System.Drawing.Point(13, 31);
- this.Equal.Name = "Equal";
- this.Equal.Size = new System.Drawing.Size(50, 21);
- this.Equal.TabIndex = 0;
- this.Equal.TabStop = true;
- this.Equal.Text = "相等";
- this.Equal.UseVisualStyleBackColor = true;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label2.Location = new System.Drawing.Point(169, 101);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(32, 17);
- this.label2.TabIndex = 94;
- this.label2.Text = "至少";
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label1.Location = new System.Drawing.Point(251, 101);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(20, 17);
- this.label1.TabIndex = 93;
- this.label1.Text = "盘";
- //
- // LeastPrintNum
- //
- this.LeastPrintNum.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.LeastPrintNum.Location = new System.Drawing.Point(201, 96);
- this.LeastPrintNum.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.LeastPrintNum.Name = "LeastPrintNum";
- this.LeastPrintNum.Size = new System.Drawing.Size(44, 23);
- this.LeastPrintNum.TabIndex = 92;
- //
- // OnlyPrint
- //
- this.OnlyPrint.AutoSize = true;
- this.OnlyPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.OnlyPrint.Location = new System.Drawing.Point(173, 73);
- this.OnlyPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.OnlyPrint.Name = "OnlyPrint";
- this.OnlyPrint.Size = new System.Drawing.Size(63, 21);
- this.OnlyPrint.TabIndex = 91;
- this.OnlyPrint.Text = "仅打印";
- this.OnlyPrint.UseVisualStyleBackColor = true;
- //
- // groupBoxWithBorder2
- //
- this.groupBoxWithBorder2.Controls.Add(this.cu_print_middc);
- this.groupBoxWithBorder2.Controls.Add(this.cu_print_midprod);
- this.groupBoxWithBorder2.Controls.Add(this.cu_print_midpo);
- this.groupBoxWithBorder2.Controls.Add(this.cu_print_midspec);
- this.groupBoxWithBorder2.Controls.Add(this.cu_print_midlotno);
- this.groupBoxWithBorder2.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.groupBoxWithBorder2.Location = new System.Drawing.Point(172, 121);
- this.groupBoxWithBorder2.Margin = new System.Windows.Forms.Padding(2);
- this.groupBoxWithBorder2.Name = "groupBoxWithBorder2";
- this.groupBoxWithBorder2.Padding = new System.Windows.Forms.Padding(2);
- this.groupBoxWithBorder2.Size = new System.Drawing.Size(101, 145);
- this.groupBoxWithBorder2.TabIndex = 81;
- this.groupBoxWithBorder2.TabStop = false;
- this.groupBoxWithBorder2.Text = "流水合并条件";
- //
- // cu_print_middc
- //
- this.cu_print_middc.AutoSize = true;
- this.cu_print_middc.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.cu_print_middc.ForeColor = System.Drawing.Color.Blue;
- this.cu_print_middc.Location = new System.Drawing.Point(15, 117);
- this.cu_print_middc.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.cu_print_middc.Name = "cu_print_middc";
- this.cu_print_middc.Size = new System.Drawing.Size(68, 21);
- this.cu_print_middc.TabIndex = 97;
- this.cu_print_middc.Text = "合并DC";
- this.cu_print_middc.UseVisualStyleBackColor = true;
- //
- // cu_print_midprod
- //
- this.cu_print_midprod.AutoSize = true;
- this.cu_print_midprod.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.cu_print_midprod.ForeColor = System.Drawing.Color.Blue;
- this.cu_print_midprod.Location = new System.Drawing.Point(15, 95);
- this.cu_print_midprod.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.cu_print_midprod.Name = "cu_print_midprod";
- this.cu_print_midprod.Size = new System.Drawing.Size(75, 21);
- this.cu_print_midprod.TabIndex = 92;
- this.cu_print_midprod.Text = "客户料号";
- this.cu_print_midprod.UseVisualStyleBackColor = true;
- //
- // cu_print_midpo
- //
- this.cu_print_midpo.AutoSize = true;
- this.cu_print_midpo.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.cu_print_midpo.ForeColor = System.Drawing.Color.Blue;
- this.cu_print_midpo.Location = new System.Drawing.Point(15, 71);
- this.cu_print_midpo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.cu_print_midpo.Name = "cu_print_midpo";
- this.cu_print_midpo.Size = new System.Drawing.Size(75, 21);
- this.cu_print_midpo.TabIndex = 93;
- this.cu_print_midpo.Text = "客户合同";
- this.cu_print_midpo.UseVisualStyleBackColor = true;
- //
- // cu_print_midspec
- //
- this.cu_print_midspec.AutoSize = true;
- this.cu_print_midspec.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.cu_print_midspec.ForeColor = System.Drawing.Color.Blue;
- this.cu_print_midspec.Location = new System.Drawing.Point(15, 47);
- this.cu_print_midspec.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.cu_print_midspec.Name = "cu_print_midspec";
- this.cu_print_midspec.Size = new System.Drawing.Size(75, 21);
- this.cu_print_midspec.TabIndex = 94;
- this.cu_print_midspec.Text = "出库型号";
- this.cu_print_midspec.UseVisualStyleBackColor = true;
- //
- // cu_print_midlotno
- //
- this.cu_print_midlotno.AutoSize = true;
- this.cu_print_midlotno.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.cu_print_midlotno.ForeColor = System.Drawing.Color.Blue;
- this.cu_print_midlotno.Location = new System.Drawing.Point(15, 23);
- this.cu_print_midlotno.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.cu_print_midlotno.Name = "cu_print_midlotno";
- this.cu_print_midlotno.Size = new System.Drawing.Size(63, 21);
- this.cu_print_midlotno.TabIndex = 95;
- this.cu_print_midlotno.Text = "LotNo";
- this.cu_print_midlotno.UseVisualStyleBackColor = true;
- //
- // 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(65, 166);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(13, 17);
- this.label18.TabIndex = 90;
- this.label18.Text = "-";
- //
- // 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(201, 44);
- this.MidLabelNum.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.MidLabelNum.Name = "MidLabelNum";
- this.MidLabelNum.Size = new System.Drawing.Size(44, 23);
- this.MidLabelNum.Str = null;
- this.MidLabelNum.Str1 = null;
- this.MidLabelNum.Str2 = null;
- this.MidLabelNum.TabIndex = 56;
- //
- // MidBoxEnd
- //
- this.MidBoxEnd.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.MidBoxEnd.ID = null;
- this.MidBoxEnd.Location = new System.Drawing.Point(83, 163);
- this.MidBoxEnd.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.MidBoxEnd.Name = "MidBoxEnd";
- this.MidBoxEnd.Size = new System.Drawing.Size(50, 23);
- this.MidBoxEnd.Str = null;
- this.MidBoxEnd.Str1 = null;
- this.MidBoxEnd.Str2 = null;
- this.MidBoxEnd.TabIndex = 89;
- //
- // 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(9, 143);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(56, 17);
- this.label12.TabIndex = 77;
- this.label12.Text = "中盒范围";
- //
- // 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(169, 49);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(32, 17);
- this.label5.TabIndex = 50;
- this.label5.Text = "盒号";
- //
- // MidBoxBegin
- //
- this.MidBoxBegin.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.MidBoxBegin.ID = null;
- this.MidBoxBegin.Location = new System.Drawing.Point(10, 163);
- this.MidBoxBegin.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.MidBoxBegin.Name = "MidBoxBegin";
- this.MidBoxBegin.Size = new System.Drawing.Size(50, 23);
- this.MidBoxBegin.Str = null;
- this.MidBoxBegin.Str1 = null;
- this.MidBoxBegin.Str2 = null;
- this.MidBoxBegin.TabIndex = 88;
- //
- // 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(171, 22);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(32, 17);
- 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(9, 82);
- this.MidLabelPrinter.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.MidLabelPrinter.Name = "MidLabelPrinter";
- this.MidLabelPrinter.Size = new System.Drawing.Size(150, 25);
- this.MidLabelPrinter.TabIndex = 41;
- //
- // 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(251, 20);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(20, 17);
- 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(201, 18);
- this.MidBoxCapacity.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.MidBoxCapacity.Name = "MidBoxCapacity";
- this.MidBoxCapacity.Size = new System.Drawing.Size(44, 23);
- 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(93, 111);
- this.MidLabelPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.MidLabelPrint.Name = "MidLabelPrint";
- this.MidLabelPrint.Size = new System.Drawing.Size(68, 26);
- 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.Checked = true;
- this.MidLabelAutoPrint.CheckState = System.Windows.Forms.CheckState.Checked;
- 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(11, 115);
- this.MidLabelAutoPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.MidLabelAutoPrint.Name = "MidLabelAutoPrint";
- this.MidLabelAutoPrint.Size = new System.Drawing.Size(75, 21);
- 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(10, 50);
- this.MidLabelCombox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.MidLabelCombox.Name = "MidLabelCombox";
- this.MidLabelCombox.Size = new System.Drawing.Size(149, 25);
- this.MidLabelCombox.TabIndex = 40;
- this.MidLabelCombox.SelectedIndexChanged += new System.EventHandler(this.MidLabelCombox_SelectedIndexChanged);
- //
- // OutBoxLabel
- //
- this.OutBoxLabel.Controls.Add(this.OutDocRefresh);
- this.OutBoxLabel.Controls.Add(this.label27);
- this.OutBoxLabel.Controls.Add(this.label9);
- this.OutBoxLabel.Controls.Add(this.cu_print_papercount);
- this.OutBoxLabel.Controls.Add(this.groupBoxWithBorder3);
- this.OutBoxLabel.Controls.Add(this.LogingOut);
- 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.OutBoxLabelAutoPrint);
- 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(1106, 6);
- this.OutBoxLabel.Margin = new System.Windows.Forms.Padding(2);
- this.OutBoxLabel.Name = "OutBoxLabel";
- this.OutBoxLabel.Padding = new System.Windows.Forms.Padding(2);
- this.OutBoxLabel.Size = new System.Drawing.Size(278, 269);
- this.OutBoxLabel.TabIndex = 79;
- this.OutBoxLabel.TabStop = false;
- this.OutBoxLabel.Text = "外箱标签";
- //
- // OutDocRefresh
- //
- this.OutDocRefresh.AutoSize = true;
- this.OutDocRefresh.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.OutDocRefresh.Location = new System.Drawing.Point(65, 27);
- this.OutDocRefresh.Name = "OutDocRefresh";
- this.OutDocRefresh.Size = new System.Drawing.Size(37, 20);
- this.OutDocRefresh.TabIndex = 119;
- this.OutDocRefresh.TabStop = true;
- this.OutDocRefresh.Text = "刷新";
- //
- // label27
- //
- this.label27.AutoSize = true;
- this.label27.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label27.Location = new System.Drawing.Point(7, 27);
- this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(55, 20);
- this.label27.TabIndex = 117;
- this.label27.Text = "格式(T)";
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label9.Location = new System.Drawing.Point(171, 43);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(32, 17);
- this.label9.TabIndex = 98;
- this.label9.Text = "纸型";
- //
- // cu_print_papercount
- //
- this.cu_print_papercount.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cu_print_papercount.Location = new System.Drawing.Point(211, 39);
- this.cu_print_papercount.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.cu_print_papercount.Name = "cu_print_papercount";
- this.cu_print_papercount.Size = new System.Drawing.Size(38, 23);
- this.cu_print_papercount.TabIndex = 97;
- //
- // groupBoxWithBorder3
- //
- this.groupBoxWithBorder3.Controls.Add(this.cu_print_outdc);
- this.groupBoxWithBorder3.Controls.Add(this.cu_print_outprod);
- this.groupBoxWithBorder3.Controls.Add(this.cu_print_outpo);
- this.groupBoxWithBorder3.Controls.Add(this.cu_print_outspec);
- this.groupBoxWithBorder3.Controls.Add(this.cu_print_outlotno);
- this.groupBoxWithBorder3.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.groupBoxWithBorder3.Location = new System.Drawing.Point(172, 121);
- this.groupBoxWithBorder3.Margin = new System.Windows.Forms.Padding(2);
- this.groupBoxWithBorder3.Name = "groupBoxWithBorder3";
- this.groupBoxWithBorder3.Padding = new System.Windows.Forms.Padding(2);
- this.groupBoxWithBorder3.Size = new System.Drawing.Size(101, 145);
- this.groupBoxWithBorder3.TabIndex = 96;
- this.groupBoxWithBorder3.TabStop = false;
- this.groupBoxWithBorder3.Text = "流水合并条件";
- //
- // cu_print_outdc
- //
- this.cu_print_outdc.AutoSize = true;
- this.cu_print_outdc.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.cu_print_outdc.ForeColor = System.Drawing.Color.Blue;
- this.cu_print_outdc.Location = new System.Drawing.Point(15, 117);
- this.cu_print_outdc.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.cu_print_outdc.Name = "cu_print_outdc";
- this.cu_print_outdc.Size = new System.Drawing.Size(68, 21);
- this.cu_print_outdc.TabIndex = 96;
- this.cu_print_outdc.Text = "合并DC";
- this.cu_print_outdc.UseVisualStyleBackColor = true;
- //
- // cu_print_outprod
- //
- this.cu_print_outprod.AutoSize = true;
- this.cu_print_outprod.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.cu_print_outprod.ForeColor = System.Drawing.Color.Blue;
- this.cu_print_outprod.Location = new System.Drawing.Point(15, 95);
- this.cu_print_outprod.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.cu_print_outprod.Name = "cu_print_outprod";
- this.cu_print_outprod.Size = new System.Drawing.Size(75, 21);
- this.cu_print_outprod.TabIndex = 92;
- this.cu_print_outprod.Text = "客户料号";
- this.cu_print_outprod.UseVisualStyleBackColor = true;
- //
- // cu_print_outpo
- //
- this.cu_print_outpo.AutoSize = true;
- this.cu_print_outpo.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.cu_print_outpo.ForeColor = System.Drawing.Color.Blue;
- this.cu_print_outpo.Location = new System.Drawing.Point(15, 71);
- this.cu_print_outpo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.cu_print_outpo.Name = "cu_print_outpo";
- this.cu_print_outpo.Size = new System.Drawing.Size(75, 21);
- this.cu_print_outpo.TabIndex = 93;
- this.cu_print_outpo.Text = "客户合同";
- this.cu_print_outpo.UseVisualStyleBackColor = true;
- //
- // cu_print_outspec
- //
- this.cu_print_outspec.AutoSize = true;
- this.cu_print_outspec.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.cu_print_outspec.ForeColor = System.Drawing.Color.Blue;
- this.cu_print_outspec.Location = new System.Drawing.Point(15, 47);
- this.cu_print_outspec.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.cu_print_outspec.Name = "cu_print_outspec";
- this.cu_print_outspec.Size = new System.Drawing.Size(75, 21);
- this.cu_print_outspec.TabIndex = 94;
- this.cu_print_outspec.Text = "出库型号";
- this.cu_print_outspec.UseVisualStyleBackColor = true;
- //
- // cu_print_outlotno
- //
- this.cu_print_outlotno.AutoSize = true;
- this.cu_print_outlotno.Font = new System.Drawing.Font("微软雅黑", 9F);
- this.cu_print_outlotno.ForeColor = System.Drawing.Color.Blue;
- this.cu_print_outlotno.Location = new System.Drawing.Point(15, 23);
- this.cu_print_outlotno.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.cu_print_outlotno.Name = "cu_print_outlotno";
- this.cu_print_outlotno.Size = new System.Drawing.Size(63, 21);
- this.cu_print_outlotno.TabIndex = 95;
- this.cu_print_outlotno.Text = "LotNo";
- this.cu_print_outlotno.UseVisualStyleBackColor = true;
- //
- // LogingOut
- //
- this.LogingOut.AutoSize = true;
- this.LogingOut.Location = new System.Drawing.Point(233, 13);
- this.LogingOut.Name = "LogingOut";
- this.LogingOut.Size = new System.Drawing.Size(42, 21);
- this.LogingOut.TabIndex = 77;
- this.LogingOut.TabStop = true;
- this.LogingOut.Text = "注销";
- this.LogingOut.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LogingOut_LinkClicked);
- //
- // 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(211, 98);
- this.OutBoxNum.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.OutBoxNum.Name = "OutBoxNum";
- this.OutBoxNum.Size = new System.Drawing.Size(38, 23);
- 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(171, 102);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(32, 17);
- 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(171, 73);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(32, 17);
- 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(8, 82);
- this.OutBoxPrinter.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
- this.OutBoxPrinter.Name = "OutBoxPrinter";
- this.OutBoxPrinter.Size = new System.Drawing.Size(158, 25);
- this.OutBoxPrinter.TabIndex = 82;
- //
- // 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(211, 68);
- this.OutBoxCapacity.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.OutBoxCapacity.Name = "OutBoxCapacity";
- this.OutBoxCapacity.Size = new System.Drawing.Size(38, 23);
- 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(90, 111);
- this.OutBoxLabelPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.OutBoxLabelPrint.Name = "OutBoxLabelPrint";
- this.OutBoxLabelPrint.Size = new System.Drawing.Size(76, 26);
- this.OutBoxLabelPrint.TabIndex = 80;
- this.OutBoxLabelPrint.Text = "打印箱标";
- this.OutBoxLabelPrint.UseVisualStyleBackColor = true;
- this.OutBoxLabelPrint.Click += new System.EventHandler(this.OutBoxLabelPrint_Click);
- //
- // OutBoxLabelAutoPrint
- //
- this.OutBoxLabelAutoPrint.AutoSize = true;
- this.OutBoxLabelAutoPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.OutBoxLabelAutoPrint.Location = new System.Drawing.Point(11, 115);
- this.OutBoxLabelAutoPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.OutBoxLabelAutoPrint.Name = "OutBoxLabelAutoPrint";
- this.OutBoxLabelAutoPrint.Size = new System.Drawing.Size(75, 21);
- this.OutBoxLabelAutoPrint.TabIndex = 79;
- this.OutBoxLabelAutoPrint.Text = "自动打印";
- this.OutBoxLabelAutoPrint.UseVisualStyleBackColor = true;
- this.OutBoxLabelAutoPrint.Visible = false;
- //
- // 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(9, 51);
- this.OutBoxCombox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.OutBoxCombox.Name = "OutBoxCombox";
- this.OutBoxCombox.Size = new System.Drawing.Size(157, 25);
- this.OutBoxCombox.TabIndex = 78;
- this.OutBoxCombox.SelectedIndexChanged += new System.EventHandler(this.OutBoxCombox_SelectedIndexChanged);
- //
- // BackendCheck
- //
- this.BackendCheck.SleepTime = 0;
- this.BackendCheck.Tag = "BackendCheck";
- //
- // FrontendCheck
- //
- this.FrontendCheck.SleepTime = 0;
- this.FrontendCheck.Tag = "FrontendCheck";
- //
- // PLC1
- //
- this.PLC1.SleepTime = 0;
- this.PLC1.Tag = "PLC1";
- //
- // ManBackendCheck
- //
- this.ManBackendCheck.SleepTime = 0;
- this.ManBackendCheck.Tag = "ManBackendCheck";
- //
- // label30
- //
- this.label30.AutoSize = true;
- this.label30.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label30.Location = new System.Drawing.Point(85, 155);
- this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(65, 20);
- this.label30.TabIndex = 111;
- this.label30.Text = "有效日期";
- //
- // cu_print_limiteddate
- //
- this.cu_print_limiteddate.Location = new System.Drawing.Point(153, 158);
- this.cu_print_limiteddate.Maximum = new decimal(new int[] {
- 10000,
- 0,
- 0,
- 0});
- this.cu_print_limiteddate.Name = "cu_print_limiteddate";
- this.cu_print_limiteddate.Size = new System.Drawing.Size(61, 21);
- this.cu_print_limiteddate.TabIndex = 112;
- //
- // UAS_出货标签打印
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- 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(1387, 746);
- this.Controls.Add(this.cu_print_limiteddate);
- this.Controls.Add(this.label30);
- this.Controls.Add(this.cu_print_dateformat);
- this.Controls.Add(this.label29);
- this.Controls.Add(this.ResetBarcode);
- this.Controls.Add(this.cu_print_checkdatecode);
- this.Controls.Add(this.cu_print_checkonly);
- this.Controls.Add(this.DownloadBarcode);
- this.Controls.Add(this.label28);
- this.Controls.Add(this.PageSizeNum);
- this.Controls.Add(this.UploadData);
- this.Controls.Add(this.PageNum);
- this.Controls.Add(this.LastPage);
- this.Controls.Add(this.FirstPage);
- this.Controls.Add(this.PageInf);
- this.Controls.Add(this.NextPage);
- this.Controls.Add(this.BeforePage);
- this.Controls.Add(this.front_sg_separator);
- this.Controls.Add(this.label13);
- this.Controls.Add(this.cu_print_regexpression);
- this.Controls.Add(this.PLCStart);
- this.Controls.Add(this.PLCStop);
- this.Controls.Add(this.ExportData);
- this.Controls.Add(this.label8);
- this.Controls.Add(this.FrontCollect);
- this.Controls.Add(this.ButtonSetting);
- this.Controls.Add(this.ListButtonMenu);
- this.Controls.Add(this.pi_date);
- this.Controls.Add(this.GetGridOnly);
- this.Controls.Add(this.Fresh);
- this.Controls.Add(this.pi_cardcode_label);
- this.Controls.Add(this.pi_cardcode);
- this.Controls.Add(this.CollectionProcess);
- this.Controls.Add(this.back_sg_separator);
- this.Controls.Add(this.sg_separator_label);
- this.Controls.Add(this.后端复核);
- this.Controls.Add(this.BackCheck);
- 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(3, 2, 3, 2);
- 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);
- this.LogMenu.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.PageSizeNum)).EndInit();
- this.CollectionProcess.ResumeLayout(false);
- this.CollectionProcess.PerformLayout();
- this.groupBox2.ResumeLayout(false);
- this.groupBox2.PerformLayout();
- this.groupBox1.ResumeLayout(false);
- this.groupBox1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.DetailRange2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.DetailRange1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.LabelInf)).EndInit();
- this.SingleLabel.ResumeLayout(false);
- this.SingleLabel.PerformLayout();
- this.groupBoxWithBorder4.ResumeLayout(false);
- this.groupBoxWithBorder4.PerformLayout();
- this.MidLabel.ResumeLayout(false);
- this.MidLabel.PerformLayout();
- this.groupBoxWithBorder5.ResumeLayout(false);
- this.groupBoxWithBorder5.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.LeastPrintNum)).EndInit();
- this.groupBoxWithBorder2.ResumeLayout(false);
- this.groupBoxWithBorder2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.MidBoxCapacity)).EndInit();
- this.OutBoxLabel.ResumeLayout(false);
- this.OutBoxLabel.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cu_print_papercount)).EndInit();
- this.groupBoxWithBorder3.ResumeLayout(false);
- this.groupBoxWithBorder3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.OutBoxCapacity)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cu_print_limiteddate)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.DataGridViewTextBoxColumn si_item;
- private CustomControl.SerialPortWithTag BackendCheck;
- private CustomControl.SerialPortWithTag FrontendCheck;
- private System.Windows.Forms.ComboBox OutBoxCombox;
- private System.Windows.Forms.CheckBox OutBoxLabelAutoPrint;
- private System.Windows.Forms.Button OutBoxLabelPrint;
- private System.Windows.Forms.NumericUpDown OutBoxCapacity;
- private CustomControl.PrinterCombox OutBoxPrinter;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Label label10;
- private CustomControl.EnterTextBox OutBoxNum;
- private System.Windows.Forms.LinkLabel LogingOut;
- private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder groupBoxWithBorder3;
- private System.Windows.Forms.CheckBox cu_print_outprod;
- private System.Windows.Forms.CheckBox cu_print_outpo;
- private System.Windows.Forms.CheckBox cu_print_outspec;
- private System.Windows.Forms.CheckBox cu_print_outlotno;
- private System.Windows.Forms.NumericUpDown cu_print_papercount;
- private System.Windows.Forms.Label label9;
- private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder OutBoxLabel;
- 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 CustomControl.EnterTextBox MidBoxBegin;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Label label12;
- private CustomControl.EnterTextBox MidBoxEnd;
- private CustomControl.EnterTextBox MidLabelNum;
- private System.Windows.Forms.Label label18;
- private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder groupBoxWithBorder2;
- private System.Windows.Forms.CheckBox cu_print_midprod;
- private System.Windows.Forms.CheckBox cu_print_midpo;
- private System.Windows.Forms.CheckBox cu_print_midspec;
- private System.Windows.Forms.CheckBox cu_print_midlotno;
- private System.Windows.Forms.CheckBox OnlyPrint;
- private System.Windows.Forms.NumericUpDown LeastPrintNum;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label2;
- private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder groupBoxWithBorder5;
- private System.Windows.Forms.RadioButton Expression;
- private System.Windows.Forms.RadioButton Equal;
- 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.EnterTextBox SingleBoxBegin;
- private CustomControl.EnterTextBox SingleBoxEnd;
- private CustomControl.PrinterCombox SingleLabelPrinter;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.Label label7;
- private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder groupBoxWithBorder4;
- private System.Windows.Forms.Label label20;
- private System.Windows.Forms.ComboBox BackCombo;
- private System.Windows.Forms.Label label19;
- private System.Windows.Forms.ComboBox FrontCombo;
- private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder SingleLabel;
- private CustomControl.EnterTextBox pi_inoutno;
- private CustomControl.DataGridViewWithSerialNum LabelInf;
- private CustomControl.RichText.RichTextAutoBottom MessageLog;
- private CustomControl.EnterTextBox BackCheck;
- private CustomControl.EnterTextBox back_sg_separator;
- private CustomControl.EnterTextBox FrontCollect;
- private System.Windows.Forms.Button ExportData;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn27;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn26;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn25;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn6;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn5;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn4;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn3;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn2;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Button ButtonSetting;
- private System.Windows.Forms.ListBox ListButtonMenu;
- private System.Windows.Forms.Label pi_date;
- private System.Windows.Forms.FolderBrowserDialog ExportFileDialog;
- private System.Windows.Forms.CheckBox GetGridOnly;
- private System.Windows.Forms.Timer RefreshDBConnect;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.LinkLabel Fresh;
- private System.Windows.Forms.Label pi_cardcode_label;
- private System.Windows.Forms.Label pi_cardcode;
- private System.Windows.Forms.Label sg_separator_label;
- private System.Windows.Forms.Label 后端复核;
- private System.Windows.Forms.Label pi_inoutno_label;
- private System.Windows.Forms.Label Process;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.Label CollectedCount;
- private System.Windows.Forms.Label Process_outboxcode;
- private System.Windows.Forms.Label Process_midboxcode;
- private System.Windows.Forms.RadioButton AutoCollection;
- private System.Windows.Forms.RadioButton ManualCollection;
- private System.Windows.Forms.Label label21;
- private System.Windows.Forms.CheckBox DetailRange;
- private System.Windows.Forms.RadioButton RecheckCuprodcode;
- private System.Windows.Forms.RadioButton RecheckBarcode;
- private System.Windows.Forms.Label label22;
- private System.Windows.Forms.RadioButton ManualFrontCheck;
- private System.Windows.Forms.RadioButton ManualBackCheck;
- private System.Windows.Forms.Label label23;
- private System.Windows.Forms.RadioButton ManualAutoCheck;
- private System.Windows.Forms.CheckBox checkBox2;
- private System.Windows.Forms.Button ButtonCollectPass;
- private System.Windows.Forms.Button ButtonRecheckPass;
- private System.Windows.Forms.Button ButtonSetOutBox;
- private System.Windows.Forms.Button ButtonSetMidBox;
- private CustomControl.EnterTextBox SetMidBox;
- private CustomControl.EnterTextBox SetOutBox;
- private System.Windows.Forms.Button AddMidBox;
- private System.Windows.Forms.Button CutMidBox;
- private System.Windows.Forms.Button CutOutBox;
- private System.Windows.Forms.Button AddOutBox;
- private System.Windows.Forms.Label label24;
- private System.Windows.Forms.Label label25;
- private System.Windows.Forms.Label midboxProcess;
- private System.Windows.Forms.Label outboxProcess;
- private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder CollectionProcess;
- private System.Windows.Forms.Button PLCStop;
- private System.Windows.Forms.Button PLCStart;
- private System.Windows.Forms.Label cu_print_regexpression;
- private System.Windows.Forms.NumericUpDown DetailRange2;
- private System.Windows.Forms.NumericUpDown DetailRange1;
- private CustomControl.EnterTextBox front_sg_separator;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.GroupBox groupBox1;
- private System.Windows.Forms.GroupBox groupBox2;
- private System.Windows.Forms.LinkLabel BeforePage;
- private System.Windows.Forms.LinkLabel NextPage;
- private System.Windows.Forms.Label PageInf;
- private System.Windows.Forms.LinkLabel FirstPage;
- private System.Windows.Forms.LinkLabel LastPage;
- private System.Windows.Forms.Label PageNum;
- private CustomControl.SerialPortWithTag PLC1;
- private System.Windows.Forms.CheckBox cu_print_outdc;
- private System.Windows.Forms.CheckBox cu_print_middc;
- private System.Windows.Forms.ContextMenuStrip LogMenu;
- private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
- private System.Windows.Forms.Button UploadData;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.Label label26;
- private System.Windows.Forms.Label label27;
- private System.Windows.Forms.LinkLabel SingleDocRefresh;
- private System.Windows.Forms.LinkLabel MidDocRefresh;
- private System.Windows.Forms.LinkLabel OutDocRefresh;
- private System.Windows.Forms.NumericUpDown PageSizeNum;
- private System.Windows.Forms.Label label28;
- private System.Windows.Forms.Button DownloadBarcode;
- private System.Windows.Forms.CheckBox cu_print_checkonly;
- private System.Windows.Forms.CheckBox cu_print_checkdatecode;
- private CustomControl.SerialPortWithTag ManBackendCheck;
- private System.Windows.Forms.DataGridViewCheckBoxColumn Choose;
- private System.Windows.Forms.DataGridViewTextBoxColumn pd_id;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_id1;
- private System.Windows.Forms.DataGridViewTextBoxColumn rownum;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_pdno;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_prodcode;
- private System.Windows.Forms.DataGridViewCheckBoxColumn pib_ifmodify;
- private System.Windows.Forms.DataGridViewCheckBoxColumn pib_ifupload;
- private System.Windows.Forms.DataGridViewTextBoxColumn pr_vendprodcode;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_brand;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_madein;
- private System.Windows.Forms.DataGridViewTextBoxColumn pr_orispeccode;
- 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.DataGridViewCheckBoxColumn pib_ifpick;
- private System.Windows.Forms.DataGridViewCheckBoxColumn pib_ifprint;
- private System.Windows.Forms.DataGridViewCheckBoxColumn pib_ifrecheck;
- private System.Windows.Forms.DataGridViewTextBoxColumn pib_datecode1;
- 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_custmidboxcode;
- 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;
- private System.Windows.Forms.Button ResetBarcode;
- private System.Windows.Forms.Label label29;
- private System.Windows.Forms.Label cu_print_dateformat;
- private System.Windows.Forms.Label label30;
- private System.Windows.Forms.NumericUpDown cu_print_limiteddate;
- }
- }
|