| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612 |
- using Core.StlMes.Client.LgResMgt.Mcms.entity;
- namespace Core.StlMes.Client.LgResMgt.Mcms
- {
- partial class frmLocalTruckScale
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLocalTruckScale));
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab13 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab28 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab29 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab30 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab31 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab32 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem30 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem31 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem32 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem33 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem34 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem35 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem36 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem37 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem38 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab14 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab15 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab16 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab17 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab18 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab19 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab20 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab21 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab25 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab22 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab26 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab27 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("CmmWeightResultEntity", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ResultNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordNo1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordNo2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Recoder1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Recoder2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordType1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordType2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TareWt");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GrossWt");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("NetWt");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordDate1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordDate2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MatName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MatType");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LoadvehicleNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReceiveName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ShippersName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TransportName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Memo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteDate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteUser");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecoderLocation1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecoderLocation2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Validflag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RealWt");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CarNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MatNum");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ActDimater");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SpecName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Steelname");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Gradename");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Producname");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ProOrderNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JudgeStoveNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("StorageFlag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("StorageDate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("StorageUser");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderFull");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordWeight2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordWeight1");
- Infragistics.Win.UltraWinGrid.RowLayout rowLayout1 = new Infragistics.Win.UltraWinGrid.RowLayout("1");
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo1 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ResultNo", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo2 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordNo1", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo3 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordNo2", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo4 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Recoder1", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo5 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Recoder2", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo6 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordType1", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo7 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordType2", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo8 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "TareWt", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo9 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "GrossWt", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo10 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "NetWt", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo11 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordDate1", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo12 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordDate2", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo13 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "MatName", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo14 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "MatType", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo15 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "LoadvehicleNo", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo16 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ReceiveName", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo17 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "OrderName", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo18 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ShippersName", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo19 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "TransportName", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo20 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Memo", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo21 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "DeleteDate", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo22 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "DeleteUser", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo23 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecoderLocation1", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo24 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecoderLocation2", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo25 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Validflag", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo26 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RealWt", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo27 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "CarNo", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo28 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "MatNum", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo29 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ActDimater", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo30 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "SpecName", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo31 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Steelname", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo32 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Gradename", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo33 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Producname", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo34 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ProOrderNo", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo35 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "JudgeStoveNo", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo36 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "StorageFlag", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo37 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "StorageDate", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo38 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "StorageUser", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo39 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "OrderFull", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo40 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordWeight2", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo41 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordWeight1", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem50 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem51 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem52 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem53 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem54 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem55 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem56 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem57 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem58 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem59 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem60 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem61 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem62 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton3 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton4 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("CmmWeightRecordEntity", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordDate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Recoder");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CarNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordType");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordWeight");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordNumber");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Validflag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MatName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MatType");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LoadvehicleNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReceiveName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ShippersName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TransportName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteDate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteUser");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Memo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WtType");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecoderLocation");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RealWt");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EffRemaind");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("firstGross");
- Infragistics.Win.UltraWinGrid.RowLayout rowLayout2 = new Infragistics.Win.UltraWinGrid.RowLayout("1");
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo42 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordNo", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo43 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordDate", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo44 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Recoder", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo45 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "CarNo", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo46 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordType", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo47 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordWeight", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo48 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordNumber", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo49 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Validflag", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo50 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "MatName", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo51 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "MatType", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo52 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "LoadvehicleNo", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo53 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ReceiveName", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo54 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "OrderName", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo55 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ShippersName", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo56 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "TransportName", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo57 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "DeleteDate", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo58 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "DeleteUser", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo59 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Memo", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo60 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "WtType", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo61 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecoderLocation", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo62 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RealWt", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo63 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "EffRemaind", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo64 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "firstGross", -1, Infragistics.Win.DefaultableBoolean.Default);
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab5 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab6 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab4 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- this.ultraTabPageControl18 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo14 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraTabPageControl5 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo9 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraTabPageControl24 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo18 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraTabPageControl6 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo10 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraTabPageControl15 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo11 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraTabPageControl16 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo12 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraTabPageControl17 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo13 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraTabPageControl7 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo3 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraTabPageControl20 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo17 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraTabPageControl8 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo2 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraTabPageControl9 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo1 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraTabPageControl10 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo4 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraTabPageControl11 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo5 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraTabPageControl12 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo6 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraTabPageControl13 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo7 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraTabPageControl14 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo8 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraTabPageControl21 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo16 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraPanel12 = new Infragistics.Win.Misc.UltraPanel();
- this.utbSave = new Infragistics.Win.Misc.UltraButton();
- this.ultraButton1 = new Infragistics.Win.Misc.UltraButton();
- this.ultraTabPageControl19 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.matInfo15 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
- this.ultraPanel11 = new Infragistics.Win.Misc.UltraPanel();
- this.utbSave4 = new Infragistics.Win.Misc.UltraButton();
- this.ultraTabPageControl22 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.tbOther = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage8 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraPanel9 = new Infragistics.Win.Misc.UltraPanel();
- this.btnSaveAsT2 = new Infragistics.Win.Misc.UltraButton();
- this.btnSave2 = new Infragistics.Win.Misc.UltraButton();
- this.ultraTabPageControl23 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraPanel10 = new Infragistics.Win.Misc.UltraPanel();
- this.utbSave3 = new Infragistics.Win.Misc.UltraButton();
- this.uceType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.uceVlid = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.delete = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.uteCarNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.uteChangeType = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.tbFirstWt = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage4 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraPanel5 = new Infragistics.Win.Misc.UltraPanel();
- this.utbSelect2 = new Infragistics.Win.Misc.UltraButton();
- this.utbSelect = new Infragistics.Win.Misc.UltraButton();
- this.utbSaveAsT = new Infragistics.Win.Misc.UltraButton();
- this.chkGross = new System.Windows.Forms.CheckBox();
- this.utbSave1 = new Infragistics.Win.Misc.UltraButton();
- this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.tbScondWt = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage7 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraPanel23 = new Infragistics.Win.Misc.UltraPanel();
- this.ugData = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.QueryBS = new System.Windows.Forms.BindingSource(this.components);
- this.panel1 = new System.Windows.Forms.Panel();
- this.lblCount = new System.Windows.Forms.Label();
- this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
- this.upQueryTop = new Infragistics.Win.Misc.UltraPanel();
- this.uteJudgeStoveNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label14 = new System.Windows.Forms.Label();
- this.panel2 = new System.Windows.Forms.Panel();
- this.utnQuery = new Infragistics.Win.Misc.UltraButton();
- this.utbReset = new Infragistics.Win.Misc.UltraButton();
- this.uteReceiveName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label11 = new System.Windows.Forms.Label();
- this.uteShippersName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label10 = new System.Windows.Forms.Label();
- this.uteOrder = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label9 = new System.Windows.Forms.Label();
- this.utePound = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label7 = new System.Windows.Forms.Label();
- this.uteMemo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label12 = new System.Windows.Forms.Label();
- this.uceQueryCarType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label8 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.RegEndTime = new System.Windows.Forms.DateTimePicker();
- this.chkTim = new System.Windows.Forms.CheckBox();
- this.label4 = new System.Windows.Forms.Label();
- this.RegStartTime = new System.Windows.Forms.DateTimePicker();
- this.ultraPanel7 = new Infragistics.Win.Misc.UltraPanel();
- this.ultraButton2 = new Infragistics.Win.Misc.UltraButton();
- this.utbExport = new Infragistics.Win.Misc.UltraButton();
- this.unExcel = new Infragistics.Win.Misc.UltraButton();
- this.utnUpdate = new Infragistics.Win.Misc.UltraButton();
- this.utbPrint = new Infragistics.Win.Misc.UltraButton();
- this.utbPrintSingle = new Infragistics.Win.Misc.UltraButton();
- this.btnDelete = new Infragistics.Win.Misc.UltraButton();
- this.utbDelete2 = new Infragistics.Win.Misc.UltraButton();
- this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.txtCar2 = new Core.StlMes.Client.LgResMgt.Mcms.SuggestText();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.uceType2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.uteEdit = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.CurrentGrid = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.cmmWeightRecordEntityBindingSource = new System.Windows.Forms.BindingSource(this.components);
- this.tbWt = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage2 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraPanel20 = new Infragistics.Win.Misc.UltraPanel();
- this.ultraPanel4 = new Infragistics.Win.Misc.UltraPanel();
- this.utbExport2 = new Infragistics.Win.Misc.UltraButton();
- this.cboPoundList = new System.Windows.Forms.ComboBox();
- this.label13 = new System.Windows.Forms.Label();
- this.cbxCar1 = new System.Windows.Forms.ComboBox();
- this.label3 = new System.Windows.Forms.Label();
- this.lblWt = new Infragistics.Win.Misc.UltraLabel();
- this.tbMain = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
- this.lvTemplate = new Infragistics.Win.UltraWinListView.UltraListView();
- this.lblWtNow = new Infragistics.Win.Misc.UltraLabel();
- this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
- this.lblStatus = new System.Windows.Forms.Label();
- this.lblMsg = new System.Windows.Forms.Label();
- this.btnSetting = new Infragistics.Win.Misc.UltraButton();
- this.cboNo = new System.Windows.Forms.ComboBox();
- this.utbConnect = new Infragistics.Win.Misc.UltraButton();
- this.label2 = new System.Windows.Forms.Label();
- this.ultraTabControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage3 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraPanel6 = new Infragistics.Win.Misc.UltraPanel();
- this.ultraButton5 = new Infragistics.Win.Misc.UltraButton();
- this.checkBox2 = new System.Windows.Forms.CheckBox();
- this.ultraButton6 = new Infragistics.Win.Misc.UltraButton();
- this.ultraTabSharedControlsPage5 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraTabControl5 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabControl6 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage6 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.listViewMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
- this.deleteTemplate = new System.Windows.Forms.ToolStripMenuItem();
- this.splitContainer2 = new System.Windows.Forms.SplitContainer();
- this.ultraTabPageControl18.SuspendLayout();
- this.ultraTabPageControl5.SuspendLayout();
- this.ultraTabPageControl24.SuspendLayout();
- this.ultraTabPageControl6.SuspendLayout();
- this.ultraTabPageControl15.SuspendLayout();
- this.ultraTabPageControl16.SuspendLayout();
- this.ultraTabPageControl17.SuspendLayout();
- this.ultraTabPageControl7.SuspendLayout();
- this.ultraTabPageControl20.SuspendLayout();
- this.ultraTabPageControl8.SuspendLayout();
- this.ultraTabPageControl9.SuspendLayout();
- this.ultraTabPageControl10.SuspendLayout();
- this.ultraTabPageControl11.SuspendLayout();
- this.ultraTabPageControl12.SuspendLayout();
- this.ultraTabPageControl13.SuspendLayout();
- this.ultraTabPageControl14.SuspendLayout();
- this.ultraTabPageControl21.SuspendLayout();
- this.ultraPanel12.ClientArea.SuspendLayout();
- this.ultraPanel12.SuspendLayout();
- this.ultraTabPageControl19.SuspendLayout();
- this.ultraPanel11.ClientArea.SuspendLayout();
- this.ultraPanel11.SuspendLayout();
- this.ultraTabPageControl22.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.tbOther)).BeginInit();
- this.tbOther.SuspendLayout();
- this.ultraPanel9.ClientArea.SuspendLayout();
- this.ultraPanel9.SuspendLayout();
- this.ultraTabPageControl23.SuspendLayout();
- this.ultraPanel10.ClientArea.SuspendLayout();
- this.ultraPanel10.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.uceType)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uceVlid)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.delete)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uteCarNo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uteChangeType)).BeginInit();
- this.ultraTabPageControl3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.tbFirstWt)).BeginInit();
- this.tbFirstWt.SuspendLayout();
- this.ultraPanel5.ClientArea.SuspendLayout();
- this.ultraPanel5.SuspendLayout();
- this.ultraTabPageControl4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.tbScondWt)).BeginInit();
- this.tbScondWt.SuspendLayout();
- this.ultraTabPageControl2.SuspendLayout();
- this.ultraPanel23.ClientArea.SuspendLayout();
- this.ultraPanel23.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ugData)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.QueryBS)).BeginInit();
- this.panel1.SuspendLayout();
- this.ultraPanel3.ClientArea.SuspendLayout();
- this.ultraPanel3.SuspendLayout();
- this.upQueryTop.ClientArea.SuspendLayout();
- this.upQueryTop.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.uteJudgeStoveNo)).BeginInit();
- this.panel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.uteReceiveName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uteShippersName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uteOrder)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.utePound)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uteMemo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uceQueryCarType)).BeginInit();
- this.ultraPanel7.ClientArea.SuspendLayout();
- this.ultraPanel7.SuspendLayout();
- this.ultraTabPageControl1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.uceType2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.uteEdit)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.CurrentGrid)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmmWeightRecordEntityBindingSource)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.tbWt)).BeginInit();
- this.tbWt.SuspendLayout();
- this.ultraPanel20.ClientArea.SuspendLayout();
- this.ultraPanel20.SuspendLayout();
- this.ultraPanel4.ClientArea.SuspendLayout();
- this.ultraPanel4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.tbMain)).BeginInit();
- this.tbMain.SuspendLayout();
- this.ultraPanel1.ClientArea.SuspendLayout();
- this.ultraPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.lvTemplate)).BeginInit();
- this.ultraPanel2.ClientArea.SuspendLayout();
- this.ultraPanel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
- this.ultraGroupBox2.SuspendLayout();
- this.ultraPanel6.ClientArea.SuspendLayout();
- this.ultraPanel6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl6)).BeginInit();
- this.listViewMenuStrip.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
- this.splitContainer2.Panel1.SuspendLayout();
- this.splitContainer2.Panel2.SuspendLayout();
- this.splitContainer2.SuspendLayout();
- this.SuspendLayout();
- //
- // ultraTabPageControl18
- //
- this.ultraTabPageControl18.Controls.Add(this.matInfo14);
- this.ultraTabPageControl18.Location = new System.Drawing.Point(1, 26);
- this.ultraTabPageControl18.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl18.Name = "ultraTabPageControl18";
- this.ultraTabPageControl18.Size = new System.Drawing.Size(1125, 163);
- //
- // matInfo14
- //
- this.matInfo14.AddNew = true;
- this.matInfo14.ColumnsC = "ProOrderNo,JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActLenTemp,ActC" +
- "ount,ActWeight";
- this.matInfo14.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo14.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo14.EnableUpdateInfo = true;
- this.matInfo14.EnableUpdateWt = true;
- this.matInfo14.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo14.Key = "200";
- this.matInfo14.Location = new System.Drawing.Point(0, 0);
- this.matInfo14.Margin = new System.Windows.Forms.Padding(3, 8, 3, 8);
- this.matInfo14.MatName = "钢管销售";
- this.matInfo14.Name = "matInfo14";
- this.matInfo14.Size = new System.Drawing.Size(1125, 163);
- this.matInfo14.TabIndex = 3;
- //
- // ultraTabPageControl5
- //
- this.ultraTabPageControl5.Controls.Add(this.matInfo9);
- this.ultraTabPageControl5.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl5.Name = "ultraTabPageControl5";
- this.ultraTabPageControl5.Size = new System.Drawing.Size(1125, 163);
- //
- // matInfo9
- //
- this.matInfo9.AddNew = true;
- this.matInfo9.ColumnsC = "ProOrderNo,JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActCount,Memo";
- this.matInfo9.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo9.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo9.EnableUpdateInfo = true;
- this.matInfo9.EnableUpdateWt = true;
- this.matInfo9.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo9.Key = "202";
- this.matInfo9.Location = new System.Drawing.Point(0, 0);
- this.matInfo9.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
- this.matInfo9.MatName = "钢管销售";
- this.matInfo9.Name = "matInfo9";
- this.matInfo9.Size = new System.Drawing.Size(1125, 163);
- this.matInfo9.TabIndex = 2;
- //
- // ultraTabPageControl24
- //
- this.ultraTabPageControl24.Controls.Add(this.matInfo18);
- this.ultraTabPageControl24.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl24.Name = "ultraTabPageControl24";
- this.ultraTabPageControl24.Size = new System.Drawing.Size(1125, 163);
- //
- // matInfo18
- //
- this.matInfo18.AddNew = true;
- this.matInfo18.ColumnsC = "SpecName,ActCount,Memo";
- this.matInfo18.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo18.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo18.EnableUpdateInfo = true;
- this.matInfo18.EnableUpdateWt = true;
- this.matInfo18.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo18.Key = "209";
- this.matInfo18.Location = new System.Drawing.Point(0, 0);
- this.matInfo18.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
- this.matInfo18.MatName = "钢管销售";
- this.matInfo18.Name = "matInfo18";
- this.matInfo18.Size = new System.Drawing.Size(1125, 163);
- this.matInfo18.TabIndex = 3;
- //
- // ultraTabPageControl6
- //
- this.ultraTabPageControl6.Controls.Add(this.matInfo10);
- this.ultraTabPageControl6.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl6.Name = "ultraTabPageControl6";
- this.ultraTabPageControl6.Size = new System.Drawing.Size(1125, 163);
- //
- // matInfo10
- //
- this.matInfo10.AddNew = true;
- this.matInfo10.ColumnsC = "SpecName,ActCount,Memo";
- this.matInfo10.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo10.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo10.EnableUpdateInfo = true;
- this.matInfo10.EnableUpdateWt = true;
- this.matInfo10.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo10.Key = "203";
- this.matInfo10.Location = new System.Drawing.Point(0, 0);
- this.matInfo10.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
- this.matInfo10.MatName = "钢管销售";
- this.matInfo10.Name = "matInfo10";
- this.matInfo10.Size = new System.Drawing.Size(1125, 163);
- this.matInfo10.TabIndex = 2;
- //
- // ultraTabPageControl15
- //
- this.ultraTabPageControl15.Controls.Add(this.matInfo11);
- this.ultraTabPageControl15.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl15.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl15.Name = "ultraTabPageControl15";
- this.ultraTabPageControl15.Size = new System.Drawing.Size(1125, 163);
- //
- // matInfo11
- //
- this.matInfo11.AddNew = true;
- this.matInfo11.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActCount,Memo";
- this.matInfo11.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo11.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo11.EnableUpdateInfo = true;
- this.matInfo11.EnableUpdateWt = true;
- this.matInfo11.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo11.Key = "204";
- this.matInfo11.Location = new System.Drawing.Point(0, 0);
- this.matInfo11.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
- this.matInfo11.MatName = "钢管销售";
- this.matInfo11.Name = "matInfo11";
- this.matInfo11.Size = new System.Drawing.Size(1125, 163);
- this.matInfo11.TabIndex = 2;
- //
- // ultraTabPageControl16
- //
- this.ultraTabPageControl16.Controls.Add(this.matInfo12);
- this.ultraTabPageControl16.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl16.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl16.Name = "ultraTabPageControl16";
- this.ultraTabPageControl16.Size = new System.Drawing.Size(1125, 163);
- //
- // matInfo12
- //
- this.matInfo12.AddNew = true;
- this.matInfo12.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActLenTemp,ActCount,ActWei" +
- "ght";
- this.matInfo12.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo12.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo12.EnableUpdateInfo = true;
- this.matInfo12.EnableUpdateWt = true;
- this.matInfo12.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo12.Key = "205";
- this.matInfo12.Location = new System.Drawing.Point(0, 0);
- this.matInfo12.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
- this.matInfo12.MatName = "内转钢管";
- this.matInfo12.Name = "matInfo12";
- this.matInfo12.Size = new System.Drawing.Size(1125, 163);
- this.matInfo12.TabIndex = 1;
- //
- // ultraTabPageControl17
- //
- this.ultraTabPageControl17.Controls.Add(this.matInfo13);
- this.ultraTabPageControl17.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl17.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl17.Name = "ultraTabPageControl17";
- this.ultraTabPageControl17.Size = new System.Drawing.Size(1125, 163);
- //
- // matInfo13
- //
- this.matInfo13.AddNew = true;
- this.matInfo13.ColumnsC = "JudgeStoveNo,Steelname,ActDimater,ActLenTemp,ActCount,ActWeight";
- this.matInfo13.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo13.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo13.EnableUpdateInfo = true;
- this.matInfo13.EnableUpdateWt = true;
- this.matInfo13.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo13.Key = "206";
- this.matInfo13.Location = new System.Drawing.Point(0, 0);
- this.matInfo13.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
- this.matInfo13.MatName = "内转钢坯";
- this.matInfo13.Name = "matInfo13";
- this.matInfo13.Size = new System.Drawing.Size(1125, 163);
- this.matInfo13.TabIndex = 1;
- //
- // ultraTabPageControl7
- //
- this.ultraTabPageControl7.Controls.Add(this.matInfo3);
- this.ultraTabPageControl7.Location = new System.Drawing.Point(1, 26);
- this.ultraTabPageControl7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl7.Name = "ultraTabPageControl7";
- this.ultraTabPageControl7.Size = new System.Drawing.Size(1123, 170);
- //
- // matInfo3
- //
- this.matInfo3.AddNew = false;
- this.matInfo3.ColumnsC = "ProOrderNo,Steelname,ActDimater,ActLenTemp,ActCount,ActWeight,JudgeStoveNoOld";
- this.matInfo3.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo3.EnableUpdateInfo = true;
- this.matInfo3.EnableUpdateWt = false;
- this.matInfo3.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo3.Key = "102";
- this.matInfo3.Location = new System.Drawing.Point(0, 0);
- this.matInfo3.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
- this.matInfo3.MatName = "";
- this.matInfo3.Name = "matInfo3";
- this.matInfo3.Size = new System.Drawing.Size(1123, 170);
- this.matInfo3.TabIndex = 2;
- //
- // ultraTabPageControl20
- //
- this.ultraTabPageControl20.Controls.Add(this.matInfo17);
- this.ultraTabPageControl20.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl20.Name = "ultraTabPageControl20";
- this.ultraTabPageControl20.Size = new System.Drawing.Size(1123, 170);
- //
- // matInfo17
- //
- this.matInfo17.AddNew = true;
- this.matInfo17.ColumnsC = "ProOrderNo,Steelname,ActDimater,ActLenTemp,ActCount,ActWeight,JudgeStoveNoOld";
- this.matInfo17.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo17.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo17.EnableUpdateInfo = true;
- this.matInfo17.EnableUpdateWt = true;
- this.matInfo17.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo17.Key = "110";
- this.matInfo17.Location = new System.Drawing.Point(0, 0);
- this.matInfo17.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
- this.matInfo17.MatName = "";
- this.matInfo17.Name = "matInfo17";
- this.matInfo17.Size = new System.Drawing.Size(1123, 170);
- this.matInfo17.TabIndex = 3;
- //
- // ultraTabPageControl8
- //
- this.ultraTabPageControl8.Controls.Add(this.matInfo2);
- this.ultraTabPageControl8.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl8.Name = "ultraTabPageControl8";
- this.ultraTabPageControl8.Size = new System.Drawing.Size(1123, 170);
- //
- // matInfo2
- //
- this.matInfo2.AddNew = true;
- this.matInfo2.ColumnsC = "ProOrderNo,JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActLenTemp,ActC" +
- "ount,ActWeight";
- this.matInfo2.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo2.EnableUpdateInfo = true;
- this.matInfo2.EnableUpdateWt = true;
- this.matInfo2.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo2.Key = "103";
- this.matInfo2.Location = new System.Drawing.Point(0, 0);
- this.matInfo2.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
- this.matInfo2.MatName = "";
- this.matInfo2.Name = "matInfo2";
- this.matInfo2.Size = new System.Drawing.Size(1123, 170);
- this.matInfo2.TabIndex = 2;
- //
- // ultraTabPageControl9
- //
- this.ultraTabPageControl9.Controls.Add(this.matInfo1);
- this.ultraTabPageControl9.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl9.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl9.Name = "ultraTabPageControl9";
- this.ultraTabPageControl9.Size = new System.Drawing.Size(1123, 170);
- //
- // matInfo1
- //
- this.matInfo1.AddNew = true;
- this.matInfo1.ColumnsC = "SpecName,ActCount,SpecNo";
- this.matInfo1.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo1.EnableUpdateInfo = true;
- this.matInfo1.EnableUpdateWt = true;
- this.matInfo1.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo1.Key = "104";
- this.matInfo1.Location = new System.Drawing.Point(0, 0);
- this.matInfo1.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
- this.matInfo1.MatName = "";
- this.matInfo1.Name = "matInfo1";
- this.matInfo1.Size = new System.Drawing.Size(1123, 170);
- this.matInfo1.TabIndex = 2;
- //
- // ultraTabPageControl10
- //
- this.ultraTabPageControl10.Controls.Add(this.matInfo4);
- this.ultraTabPageControl10.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl10.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl10.Name = "ultraTabPageControl10";
- this.ultraTabPageControl10.Size = new System.Drawing.Size(1123, 170);
- //
- // matInfo4
- //
- this.matInfo4.AddNew = true;
- this.matInfo4.ColumnsC = "SpecName,ActCount,Memo";
- this.matInfo4.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo4.EnableUpdateInfo = true;
- this.matInfo4.EnableUpdateWt = true;
- this.matInfo4.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo4.Key = "105";
- this.matInfo4.Location = new System.Drawing.Point(0, 0);
- this.matInfo4.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
- this.matInfo4.MatName = "";
- this.matInfo4.Name = "matInfo4";
- this.matInfo4.Size = new System.Drawing.Size(1123, 170);
- this.matInfo4.TabIndex = 1;
- //
- // ultraTabPageControl11
- //
- this.ultraTabPageControl11.Controls.Add(this.matInfo5);
- this.ultraTabPageControl11.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl11.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl11.Name = "ultraTabPageControl11";
- this.ultraTabPageControl11.Size = new System.Drawing.Size(1123, 170);
- //
- // matInfo5
- //
- this.matInfo5.AddNew = true;
- this.matInfo5.ColumnsC = "SpecName,ActCount,Memo";
- this.matInfo5.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo5.EnableUpdateInfo = true;
- this.matInfo5.EnableUpdateWt = true;
- this.matInfo5.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo5.Key = "106";
- this.matInfo5.Location = new System.Drawing.Point(0, 0);
- this.matInfo5.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
- this.matInfo5.MatName = "";
- this.matInfo5.Name = "matInfo5";
- this.matInfo5.Size = new System.Drawing.Size(1123, 170);
- this.matInfo5.TabIndex = 1;
- //
- // ultraTabPageControl12
- //
- this.ultraTabPageControl12.Controls.Add(this.matInfo6);
- this.ultraTabPageControl12.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl12.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl12.Name = "ultraTabPageControl12";
- this.ultraTabPageControl12.Size = new System.Drawing.Size(1123, 170);
- //
- // matInfo6
- //
- this.matInfo6.AddNew = true;
- this.matInfo6.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActCount,Memo";
- this.matInfo6.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo6.EnableUpdateInfo = true;
- this.matInfo6.EnableUpdateWt = true;
- this.matInfo6.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo6.Key = "107";
- this.matInfo6.Location = new System.Drawing.Point(0, 0);
- this.matInfo6.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
- this.matInfo6.MatName = "";
- this.matInfo6.Name = "matInfo6";
- this.matInfo6.Size = new System.Drawing.Size(1123, 170);
- this.matInfo6.TabIndex = 1;
- //
- // ultraTabPageControl13
- //
- this.ultraTabPageControl13.Controls.Add(this.matInfo7);
- this.ultraTabPageControl13.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl13.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl13.Name = "ultraTabPageControl13";
- this.ultraTabPageControl13.Size = new System.Drawing.Size(1123, 170);
- //
- // matInfo7
- //
- this.matInfo7.AddNew = true;
- this.matInfo7.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActLenTemp,ActCount,ActWei" +
- "ght";
- this.matInfo7.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo7.EnableUpdateInfo = true;
- this.matInfo7.EnableUpdateWt = true;
- this.matInfo7.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo7.Key = "108";
- this.matInfo7.Location = new System.Drawing.Point(0, 0);
- this.matInfo7.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
- this.matInfo7.MatName = "";
- this.matInfo7.Name = "matInfo7";
- this.matInfo7.Size = new System.Drawing.Size(1123, 170);
- this.matInfo7.TabIndex = 1;
- //
- // ultraTabPageControl14
- //
- this.ultraTabPageControl14.Controls.Add(this.matInfo8);
- this.ultraTabPageControl14.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl14.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl14.Name = "ultraTabPageControl14";
- this.ultraTabPageControl14.Size = new System.Drawing.Size(1123, 170);
- //
- // matInfo8
- //
- this.matInfo8.AddNew = true;
- this.matInfo8.ColumnsC = "JudgeStoveNo,Steelname,ActDimater,ActLenTemp,ActCount,ActWeight";
- this.matInfo8.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo8.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo8.EnableUpdateInfo = true;
- this.matInfo8.EnableUpdateWt = true;
- this.matInfo8.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo8.Key = "109";
- this.matInfo8.Location = new System.Drawing.Point(0, 0);
- this.matInfo8.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
- this.matInfo8.MatName = "";
- this.matInfo8.Name = "matInfo8";
- this.matInfo8.Size = new System.Drawing.Size(1123, 170);
- this.matInfo8.TabIndex = 1;
- //
- // ultraTabPageControl21
- //
- this.ultraTabPageControl21.Controls.Add(this.matInfo16);
- this.ultraTabPageControl21.Controls.Add(this.ultraPanel12);
- this.ultraTabPageControl21.Location = new System.Drawing.Point(1, 26);
- this.ultraTabPageControl21.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl21.Name = "ultraTabPageControl21";
- this.ultraTabPageControl21.Size = new System.Drawing.Size(1129, 240);
- //
- // matInfo16
- //
- this.matInfo16.AddNew = false;
- this.matInfo16.ColumnsC = "ProOrderNo,JudgeStoveNo,Producname,Gradename,Steelname,ActDimater,ActHeight,ActLe" +
- "nTemp,ActCount,ActWeight,StorageName";
- this.matInfo16.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo16.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo16.EnableUpdateInfo = true;
- this.matInfo16.EnableUpdateWt = false;
- this.matInfo16.Font = new System.Drawing.Font("宋体", 10F);
- this.matInfo16.Key = "201";
- this.matInfo16.Location = new System.Drawing.Point(0, 48);
- this.matInfo16.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
- this.matInfo16.MatName = "钢管";
- this.matInfo16.Name = "matInfo16";
- this.matInfo16.Size = new System.Drawing.Size(1129, 192);
- this.matInfo16.TabIndex = 7;
- //
- // ultraPanel12
- //
- //
- // ultraPanel12.ClientArea
- //
- this.ultraPanel12.ClientArea.Controls.Add(this.utbSave);
- this.ultraPanel12.ClientArea.Controls.Add(this.ultraButton1);
- this.ultraPanel12.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraPanel12.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel12.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraPanel12.Name = "ultraPanel12";
- this.ultraPanel12.Size = new System.Drawing.Size(1129, 48);
- this.ultraPanel12.TabIndex = 6;
- //
- // utbSave
- //
- appearance19.Image = ((object)(resources.GetObject("appearance19.Image")));
- this.utbSave.Appearance = appearance19;
- this.utbSave.AutoSize = true;
- this.utbSave.Font = new System.Drawing.Font("宋体", 10F);
- this.utbSave.Location = new System.Drawing.Point(582, 8);
- this.utbSave.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utbSave.Name = "utbSave";
- this.utbSave.Size = new System.Drawing.Size(65, 27);
- this.utbSave.TabIndex = 597;
- this.utbSave.Text = " 保存";
- this.utbSave.Visible = false;
- //
- // ultraButton1
- //
- appearance7.Image = ((object)(resources.GetObject("appearance7.Image")));
- this.ultraButton1.Appearance = appearance7;
- this.ultraButton1.AutoSize = true;
- this.ultraButton1.Font = new System.Drawing.Font("宋体", 10F);
- this.ultraButton1.Location = new System.Drawing.Point(29, 8);
- this.ultraButton1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraButton1.Name = "ultraButton1";
- this.ultraButton1.Size = new System.Drawing.Size(65, 27);
- this.ultraButton1.TabIndex = 596;
- this.ultraButton1.Text = " 保存";
- this.ultraButton1.Click += new System.EventHandler(this.btnSave2_Click);
- //
- // ultraTabPageControl19
- //
- this.ultraTabPageControl19.Controls.Add(this.matInfo15);
- this.ultraTabPageControl19.Controls.Add(this.ultraPanel11);
- this.ultraTabPageControl19.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl19.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl19.Name = "ultraTabPageControl19";
- this.ultraTabPageControl19.Size = new System.Drawing.Size(1129, 240);
- //
- // matInfo15
- //
- this.matInfo15.AddNew = false;
- this.matInfo15.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActCount,Memo";
- this.matInfo15.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
- this.matInfo15.Dock = System.Windows.Forms.DockStyle.Fill;
- this.matInfo15.EnableUpdateInfo = true;
- this.matInfo15.EnableUpdateWt = false;
- this.matInfo15.Key = "208";
- this.matInfo15.Location = new System.Drawing.Point(0, 48);
- this.matInfo15.Margin = new System.Windows.Forms.Padding(0);
- this.matInfo15.MatName = "";
- this.matInfo15.Name = "matInfo15";
- this.matInfo15.Size = new System.Drawing.Size(1129, 192);
- this.matInfo15.TabIndex = 6;
- //
- // ultraPanel11
- //
- //
- // ultraPanel11.ClientArea
- //
- this.ultraPanel11.ClientArea.Controls.Add(this.utbSave4);
- this.ultraPanel11.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraPanel11.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel11.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraPanel11.Name = "ultraPanel11";
- this.ultraPanel11.Size = new System.Drawing.Size(1129, 48);
- this.ultraPanel11.TabIndex = 5;
- //
- // utbSave4
- //
- appearance13.Image = ((object)(resources.GetObject("appearance13.Image")));
- this.utbSave4.Appearance = appearance13;
- this.utbSave4.AutoSize = true;
- this.utbSave4.Font = new System.Drawing.Font("宋体", 10F);
- this.utbSave4.Location = new System.Drawing.Point(29, 8);
- this.utbSave4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utbSave4.Name = "utbSave4";
- this.utbSave4.Size = new System.Drawing.Size(65, 27);
- this.utbSave4.TabIndex = 596;
- this.utbSave4.Text = " 保存";
- this.utbSave4.Click += new System.EventHandler(this.btnSave2_Click);
- //
- // ultraTabPageControl22
- //
- this.ultraTabPageControl22.Controls.Add(this.tbOther);
- this.ultraTabPageControl22.Controls.Add(this.ultraPanel9);
- this.ultraTabPageControl22.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl22.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl22.Name = "ultraTabPageControl22";
- this.ultraTabPageControl22.Size = new System.Drawing.Size(1129, 240);
- //
- // tbOther
- //
- this.tbOther.Controls.Add(this.ultraTabSharedControlsPage8);
- this.tbOther.Controls.Add(this.ultraTabPageControl5);
- this.tbOther.Controls.Add(this.ultraTabPageControl6);
- this.tbOther.Controls.Add(this.ultraTabPageControl15);
- this.tbOther.Controls.Add(this.ultraTabPageControl16);
- this.tbOther.Controls.Add(this.ultraTabPageControl17);
- this.tbOther.Controls.Add(this.ultraTabPageControl18);
- this.tbOther.Controls.Add(this.ultraTabPageControl24);
- this.tbOther.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tbOther.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbOther.Location = new System.Drawing.Point(0, 48);
- this.tbOther.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.tbOther.Name = "tbOther";
- this.tbOther.SharedControlsPage = this.ultraTabSharedControlsPage8;
- this.tbOther.Size = new System.Drawing.Size(1129, 192);
- this.tbOther.TabIndex = 5;
- this.tbOther.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
- ultraTab13.Key = "200";
- ultraTab13.TabPage = this.ultraTabPageControl18;
- ultraTab13.Text = "钢管销售";
- ultraTab28.Key = "202";
- ultraTab28.TabPage = this.ultraTabPageControl5;
- ultraTab28.Text = "废料销售";
- ultraTab2.Key = "209";
- ultraTab2.TabPage = this.ultraTabPageControl24;
- ultraTab2.Text = "废料销售2";
- ultraTab29.Key = "203";
- ultraTab29.TabPage = this.ultraTabPageControl6;
- ultraTab29.Text = "修复出厂";
- ultraTab30.Key = "204";
- ultraTab30.TabPage = this.ultraTabPageControl15;
- ultraTab30.Text = "其他内转";
- ultraTab31.Key = "205";
- ultraTab31.TabPage = this.ultraTabPageControl16;
- ultraTab31.Text = "内转钢管";
- ultraTab32.Key = "206";
- ultraTab32.TabPage = this.ultraTabPageControl17;
- ultraTab32.Text = "内转钢坯";
- this.tbOther.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab13,
- ultraTab28,
- ultraTab2,
- ultraTab29,
- ultraTab30,
- ultraTab31,
- ultraTab32});
- this.tbOther.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.tbFirstWt_SelectedTabChanged);
- //
- // ultraTabSharedControlsPage8
- //
- this.ultraTabSharedControlsPage8.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabSharedControlsPage8.Name = "ultraTabSharedControlsPage8";
- this.ultraTabSharedControlsPage8.Size = new System.Drawing.Size(1125, 163);
- //
- // ultraPanel9
- //
- //
- // ultraPanel9.ClientArea
- //
- this.ultraPanel9.ClientArea.Controls.Add(this.btnSaveAsT2);
- this.ultraPanel9.ClientArea.Controls.Add(this.btnSave2);
- this.ultraPanel9.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraPanel9.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel9.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraPanel9.Name = "ultraPanel9";
- this.ultraPanel9.Size = new System.Drawing.Size(1129, 48);
- this.ultraPanel9.TabIndex = 4;
- //
- // btnSaveAsT2
- //
- appearance6.Image = ((object)(resources.GetObject("appearance6.Image")));
- this.btnSaveAsT2.Appearance = appearance6;
- this.btnSaveAsT2.AutoSize = true;
- this.btnSaveAsT2.Font = new System.Drawing.Font("宋体", 10F);
- this.btnSaveAsT2.Location = new System.Drawing.Point(144, 8);
- this.btnSaveAsT2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.btnSaveAsT2.Name = "btnSaveAsT2";
- this.btnSaveAsT2.Size = new System.Drawing.Size(106, 27);
- this.btnSaveAsT2.TabIndex = 598;
- this.btnSaveAsT2.Text = " 保存为模板";
- this.btnSaveAsT2.Click += new System.EventHandler(this.utbSaveAsT_Click);
- //
- // btnSave2
- //
- appearance8.Image = ((object)(resources.GetObject("appearance8.Image")));
- this.btnSave2.Appearance = appearance8;
- this.btnSave2.AutoSize = true;
- this.btnSave2.Font = new System.Drawing.Font("宋体", 10F);
- this.btnSave2.Location = new System.Drawing.Point(29, 8);
- this.btnSave2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.btnSave2.Name = "btnSave2";
- this.btnSave2.Size = new System.Drawing.Size(65, 27);
- this.btnSave2.TabIndex = 596;
- this.btnSave2.Text = " 保存";
- this.btnSave2.Click += new System.EventHandler(this.btnSave2_Click);
- //
- // ultraTabPageControl23
- //
- this.ultraTabPageControl23.Controls.Add(this.ultraPanel10);
- this.ultraTabPageControl23.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl23.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl23.Name = "ultraTabPageControl23";
- this.ultraTabPageControl23.Size = new System.Drawing.Size(1129, 240);
- //
- // ultraPanel10
- //
- //
- // ultraPanel10.ClientArea
- //
- this.ultraPanel10.ClientArea.Controls.Add(this.utbSave3);
- this.ultraPanel10.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel10.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel10.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraPanel10.Name = "ultraPanel10";
- this.ultraPanel10.Size = new System.Drawing.Size(1129, 240);
- this.ultraPanel10.TabIndex = 5;
- //
- // utbSave3
- //
- appearance9.Image = ((object)(resources.GetObject("appearance9.Image")));
- this.utbSave3.Appearance = appearance9;
- this.utbSave3.AutoSize = true;
- this.utbSave3.Font = new System.Drawing.Font("宋体", 10F);
- this.utbSave3.Location = new System.Drawing.Point(39, 18);
- this.utbSave3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utbSave3.Name = "utbSave3";
- this.utbSave3.Size = new System.Drawing.Size(65, 27);
- this.utbSave3.TabIndex = 596;
- this.utbSave3.Text = " 保存";
- this.utbSave3.Click += new System.EventHandler(this.btnSave2_Click);
- //
- // uceType
- //
- this.uceType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem14.DataValue = "101";
- valueListItem14.DisplayText = "空车过皮";
- valueListItem15.DataValue = "102";
- valueListItem15.DisplayText = "钢坯采购";
- valueListItem16.DataValue = "103";
- valueListItem16.DisplayText = "钢管退货";
- valueListItem17.DataValue = "104";
- valueListItem17.DisplayText = "采购辅料";
- valueListItem18.DataValue = "105";
- valueListItem18.DisplayText = "修复返厂";
- valueListItem26.DataValue = "106";
- valueListItem26.DisplayText = "设备采购";
- valueListItem27.DataValue = "107";
- valueListItem27.DisplayText = "其他内转";
- valueListItem28.DataValue = "108";
- valueListItem28.DisplayText = "内转钢管";
- valueListItem29.DataValue = "109";
- valueListItem29.DisplayText = "内转钢坯";
- valueListItem30.DataValue = "201";
- valueListItem30.DisplayText = "配车单称重";
- valueListItem31.DataValue = "202";
- valueListItem31.DisplayText = "废料销售";
- valueListItem32.DataValue = "203";
- valueListItem32.DisplayText = "修复出厂";
- valueListItem33.DataValue = "204";
- valueListItem33.DisplayText = "其他内转";
- valueListItem34.DataValue = "205";
- valueListItem34.DisplayText = "内转钢管";
- valueListItem35.DataValue = "206";
- valueListItem35.DisplayText = "内转钢坯";
- valueListItem36.DataValue = "207";
- valueListItem36.DisplayText = "空车回皮";
- valueListItem37.DataValue = "200";
- valueListItem37.DisplayText = "钢管销售";
- valueListItem38.DataValue = "208";
- valueListItem38.DisplayText = "废品倒运";
- this.uceType.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem14,
- valueListItem15,
- valueListItem16,
- valueListItem17,
- valueListItem18,
- valueListItem26,
- valueListItem27,
- valueListItem28,
- valueListItem29,
- valueListItem30,
- valueListItem31,
- valueListItem32,
- valueListItem33,
- valueListItem34,
- valueListItem35,
- valueListItem36,
- valueListItem37,
- valueListItem38});
- this.uceType.Location = new System.Drawing.Point(533, 186);
- this.uceType.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.uceType.Name = "uceType";
- this.uceType.Size = new System.Drawing.Size(144, 21);
- this.uceType.TabIndex = 72;
- this.uceType.Visible = false;
- //
- // uceVlid
- //
- this.uceVlid.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem1.DataValue = "0";
- valueListItem1.DisplayText = "无效";
- valueListItem2.DataValue = "1";
- valueListItem2.DisplayText = "有效";
- this.uceVlid.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem1,
- valueListItem2});
- this.uceVlid.Location = new System.Drawing.Point(608, 282);
- this.uceVlid.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.uceVlid.Name = "uceVlid";
- this.uceVlid.Size = new System.Drawing.Size(144, 21);
- this.uceVlid.TabIndex = 73;
- this.uceVlid.Visible = false;
- //
- // delete
- //
- editorButton1.Key = "select";
- editorButton1.Text = "删除";
- this.delete.ButtonsRight.Add(editorButton1);
- this.delete.Location = new System.Drawing.Point(265, 186);
- this.delete.Margin = new System.Windows.Forms.Padding(4);
- this.delete.Name = "delete";
- this.delete.Size = new System.Drawing.Size(183, 21);
- this.delete.TabIndex = 73;
- this.delete.Visible = false;
- this.delete.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.delete_EditorButtonClick);
- //
- // uteCarNo
- //
- this.uteCarNo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.uteCarNo.Location = new System.Drawing.Point(516, 8);
- this.uteCarNo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.uteCarNo.Name = "uteCarNo";
- this.uteCarNo.Size = new System.Drawing.Size(97, 21);
- this.uteCarNo.TabIndex = 950;
- this.uteCarNo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
- //
- // uteChangeType
- //
- editorButton2.Key = "select";
- editorButton2.Text = "修改";
- this.uteChangeType.ButtonsRight.Add(editorButton2);
- this.uteChangeType.Location = new System.Drawing.Point(369, 120);
- this.uteChangeType.Margin = new System.Windows.Forms.Padding(4);
- this.uteChangeType.Name = "uteChangeType";
- this.uteChangeType.Size = new System.Drawing.Size(183, 21);
- this.uteChangeType.TabIndex = 80;
- this.uteChangeType.Visible = false;
- this.uteChangeType.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.uteChangeType_EditorButtonClick);
- //
- // ultraTabPageControl3
- //
- this.ultraTabPageControl3.Controls.Add(this.ultraGroupBox1);
- this.ultraTabPageControl3.Location = new System.Drawing.Point(1, 26);
- this.ultraTabPageControl3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl3.Name = "ultraTabPageControl3";
- this.ultraTabPageControl3.Size = new System.Drawing.Size(1133, 269);
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.Controls.Add(this.tbFirstWt);
- this.ultraGroupBox1.Controls.Add(this.ultraPanel5);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox1.Font = new System.Drawing.Font("宋体", 10F);
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(1133, 269);
- this.ultraGroupBox1.TabIndex = 3;
- this.ultraGroupBox1.Text = "第一次称重";
- //
- // tbFirstWt
- //
- this.tbFirstWt.Controls.Add(this.ultraTabSharedControlsPage4);
- this.tbFirstWt.Controls.Add(this.ultraTabPageControl7);
- this.tbFirstWt.Controls.Add(this.ultraTabPageControl8);
- this.tbFirstWt.Controls.Add(this.ultraTabPageControl9);
- this.tbFirstWt.Controls.Add(this.ultraTabPageControl10);
- this.tbFirstWt.Controls.Add(this.ultraTabPageControl11);
- this.tbFirstWt.Controls.Add(this.ultraTabPageControl12);
- this.tbFirstWt.Controls.Add(this.ultraTabPageControl13);
- this.tbFirstWt.Controls.Add(this.ultraTabPageControl14);
- this.tbFirstWt.Controls.Add(this.ultraTabPageControl20);
- this.tbFirstWt.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tbFirstWt.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold);
- this.tbFirstWt.Location = new System.Drawing.Point(3, 67);
- this.tbFirstWt.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.tbFirstWt.Name = "tbFirstWt";
- this.tbFirstWt.SharedControlsPage = this.ultraTabSharedControlsPage4;
- this.tbFirstWt.Size = new System.Drawing.Size(1127, 199);
- this.tbFirstWt.TabIndex = 2;
- this.tbFirstWt.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
- ultraTab14.Key = "102";
- ultraTab14.TabPage = this.ultraTabPageControl7;
- ultraTab14.Text = "钢坯采购";
- ultraTab1.Key = "110";
- ultraTab1.TabPage = this.ultraTabPageControl20;
- ultraTab1.Text = "钢坯退货";
- ultraTab15.Key = "103";
- ultraTab15.TabPage = this.ultraTabPageControl8;
- ultraTab15.Text = "钢管退货";
- ultraTab16.Key = "104";
- ultraTab16.TabPage = this.ultraTabPageControl9;
- ultraTab16.Text = "采购辅料";
- ultraTab17.Key = "105";
- ultraTab17.TabPage = this.ultraTabPageControl10;
- ultraTab17.Text = "修复返厂";
- ultraTab18.Key = "106";
- ultraTab18.TabPage = this.ultraTabPageControl11;
- ultraTab18.Text = "设备采购";
- ultraTab19.Key = "107";
- ultraTab19.TabPage = this.ultraTabPageControl12;
- ultraTab19.Text = "其他内转";
- ultraTab20.Key = "108";
- ultraTab20.TabPage = this.ultraTabPageControl13;
- ultraTab20.Text = "内转钢管";
- ultraTab21.Key = "109";
- ultraTab21.TabPage = this.ultraTabPageControl14;
- ultraTab21.Text = "内转钢坯";
- this.tbFirstWt.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab14,
- ultraTab1,
- ultraTab15,
- ultraTab16,
- ultraTab17,
- ultraTab18,
- ultraTab19,
- ultraTab20,
- ultraTab21});
- this.tbFirstWt.Visible = false;
- this.tbFirstWt.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.tbFirstWt_SelectedTabChanged);
- //
- // ultraTabSharedControlsPage4
- //
- this.ultraTabSharedControlsPage4.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabSharedControlsPage4.Name = "ultraTabSharedControlsPage4";
- this.ultraTabSharedControlsPage4.Size = new System.Drawing.Size(1123, 170);
- //
- // ultraPanel5
- //
- //
- // ultraPanel5.ClientArea
- //
- this.ultraPanel5.ClientArea.Controls.Add(this.utbSelect2);
- this.ultraPanel5.ClientArea.Controls.Add(this.utbSelect);
- this.ultraPanel5.ClientArea.Controls.Add(this.utbSaveAsT);
- this.ultraPanel5.ClientArea.Controls.Add(this.chkGross);
- this.ultraPanel5.ClientArea.Controls.Add(this.utbSave1);
- this.ultraPanel5.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraPanel5.Location = new System.Drawing.Point(3, 19);
- this.ultraPanel5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraPanel5.Name = "ultraPanel5";
- this.ultraPanel5.Size = new System.Drawing.Size(1127, 48);
- this.ultraPanel5.TabIndex = 3;
- //
- // utbSelect2
- //
- appearance22.Image = ((object)(resources.GetObject("appearance22.Image")));
- this.utbSelect2.Appearance = appearance22;
- this.utbSelect2.AutoSize = true;
- this.utbSelect2.Font = new System.Drawing.Font("宋体", 10F);
- this.utbSelect2.Location = new System.Drawing.Point(643, 8);
- this.utbSelect2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utbSelect2.Name = "utbSelect2";
- this.utbSelect2.Size = new System.Drawing.Size(113, 27);
- this.utbSelect2.TabIndex = 600;
- this.utbSelect2.Text = "读取出库记录";
- this.utbSelect2.Visible = false;
- this.utbSelect2.Click += new System.EventHandler(this.utbSelect2_Click);
- //
- // utbSelect
- //
- appearance10.Image = ((object)(resources.GetObject("appearance10.Image")));
- this.utbSelect.Appearance = appearance10;
- this.utbSelect.AutoSize = true;
- this.utbSelect.Font = new System.Drawing.Font("宋体", 10F);
- this.utbSelect.Location = new System.Drawing.Point(505, 8);
- this.utbSelect.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utbSelect.Name = "utbSelect";
- this.utbSelect.Size = new System.Drawing.Size(58, 27);
- this.utbSelect.TabIndex = 599;
- this.utbSelect.Text = "选择";
- this.utbSelect.Visible = false;
- this.utbSelect.Click += new System.EventHandler(this.utbSelect_Click);
- //
- // utbSaveAsT
- //
- appearance1.Image = ((object)(resources.GetObject("appearance1.Image")));
- this.utbSaveAsT.Appearance = appearance1;
- this.utbSaveAsT.AutoSize = true;
- this.utbSaveAsT.Font = new System.Drawing.Font("宋体", 10F);
- this.utbSaveAsT.Location = new System.Drawing.Point(333, 8);
- this.utbSaveAsT.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utbSaveAsT.Name = "utbSaveAsT";
- this.utbSaveAsT.Size = new System.Drawing.Size(106, 27);
- this.utbSaveAsT.TabIndex = 598;
- this.utbSaveAsT.Text = " 保存为模板";
- this.utbSaveAsT.Visible = false;
- this.utbSaveAsT.Click += new System.EventHandler(this.utbSaveAsT_Click);
- //
- // chkGross
- //
- this.chkGross.AutoSize = true;
- this.chkGross.Font = new System.Drawing.Font("宋体", 10F);
- this.chkGross.Location = new System.Drawing.Point(139, 11);
- this.chkGross.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.chkGross.Name = "chkGross";
- this.chkGross.Size = new System.Drawing.Size(110, 18);
- this.chkGross.TabIndex = 597;
- this.chkGross.Text = "带货过皮车辆";
- this.chkGross.UseVisualStyleBackColor = true;
- this.chkGross.CheckedChanged += new System.EventHandler(this.chkGross_CheckedChanged);
- //
- // utbSave1
- //
- appearance23.Image = ((object)(resources.GetObject("appearance23.Image")));
- this.utbSave1.Appearance = appearance23;
- this.utbSave1.AutoSize = true;
- this.utbSave1.Font = new System.Drawing.Font("宋体", 10F);
- this.utbSave1.Location = new System.Drawing.Point(29, 8);
- this.utbSave1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utbSave1.Name = "utbSave1";
- this.utbSave1.Size = new System.Drawing.Size(65, 27);
- this.utbSave1.TabIndex = 596;
- this.utbSave1.Text = " 保存";
- this.utbSave1.Click += new System.EventHandler(this.utbSave1_Click);
- //
- // ultraTabPageControl4
- //
- this.ultraTabPageControl4.Controls.Add(this.tbScondWt);
- this.ultraTabPageControl4.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl4.Name = "ultraTabPageControl4";
- this.ultraTabPageControl4.Size = new System.Drawing.Size(1133, 269);
- //
- // tbScondWt
- //
- this.tbScondWt.Controls.Add(this.ultraTabSharedControlsPage7);
- this.tbScondWt.Controls.Add(this.ultraTabPageControl21);
- this.tbScondWt.Controls.Add(this.ultraTabPageControl22);
- this.tbScondWt.Controls.Add(this.ultraTabPageControl23);
- this.tbScondWt.Controls.Add(this.ultraTabPageControl19);
- this.tbScondWt.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tbScondWt.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbScondWt.Location = new System.Drawing.Point(0, 0);
- this.tbScondWt.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.tbScondWt.Name = "tbScondWt";
- this.tbScondWt.SharedControlsPage = this.ultraTabSharedControlsPage7;
- this.tbScondWt.Size = new System.Drawing.Size(1133, 269);
- this.tbScondWt.TabIndex = 3;
- this.tbScondWt.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
- ultraTab25.Key = "0";
- ultraTab25.TabPage = this.ultraTabPageControl21;
- ultraTab25.Text = "配车单称重";
- ultraTab22.Key = "3";
- ultraTab22.TabPage = this.ultraTabPageControl19;
- ultraTab22.Text = "废品倒运";
- ultraTab22.Visible = false;
- ultraTab26.Key = "1";
- ultraTab26.TabPage = this.ultraTabPageControl22;
- ultraTab26.Text = "其他称重";
- ultraTab27.Key = "2";
- ultraTab27.TabPage = this.ultraTabPageControl23;
- ultraTab27.Text = "空车回皮";
- this.tbScondWt.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab25,
- ultraTab22,
- ultraTab26,
- ultraTab27});
- this.tbScondWt.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.tbScondWt_SelectedTabChanged);
- //
- // ultraTabSharedControlsPage7
- //
- this.ultraTabSharedControlsPage7.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabSharedControlsPage7.Name = "ultraTabSharedControlsPage7";
- this.ultraTabSharedControlsPage7.Size = new System.Drawing.Size(1129, 240);
- //
- // ultraTabPageControl2
- //
- this.ultraTabPageControl2.Controls.Add(this.ultraPanel23);
- this.ultraTabPageControl2.Controls.Add(this.panel1);
- this.ultraTabPageControl2.Controls.Add(this.ultraPanel3);
- this.ultraTabPageControl2.Controls.Add(this.ultraPanel7);
- this.ultraTabPageControl2.Location = new System.Drawing.Point(1, 23);
- this.ultraTabPageControl2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl2.Name = "ultraTabPageControl2";
- this.ultraTabPageControl2.Size = new System.Drawing.Size(1137, 697);
- //
- // ultraPanel23
- //
- //
- // ultraPanel23.ClientArea
- //
- this.ultraPanel23.ClientArea.Controls.Add(this.uceVlid);
- this.ultraPanel23.ClientArea.Controls.Add(this.ugData);
- this.ultraPanel23.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel23.Location = new System.Drawing.Point(0, 102);
- this.ultraPanel23.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraPanel23.Name = "ultraPanel23";
- this.ultraPanel23.Size = new System.Drawing.Size(1137, 523);
- this.ultraPanel23.TabIndex = 3;
- //
- // ugData
- //
- this.ugData.DataSource = this.QueryBS;
- ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn1.Header.Caption = "磅单号";
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn2.Header.Caption = "一次流水号";
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.Hidden = true;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn3.Header.Caption = "二次流水号";
- ultraGridColumn3.Header.VisiblePosition = 2;
- ultraGridColumn3.Hidden = true;
- ultraGridColumn3.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn4.Header.Caption = "检斤人";
- ultraGridColumn4.Header.VisiblePosition = 3;
- ultraGridColumn4.Hidden = true;
- ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn5.Header.Caption = "检斤人";
- ultraGridColumn5.Header.VisiblePosition = 5;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn6.EditorComponent = this.uceType;
- ultraGridColumn6.Header.Caption = "类型";
- ultraGridColumn6.Header.VisiblePosition = 7;
- ultraGridColumn6.Hidden = true;
- ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
- ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn7.EditorComponent = this.uceType;
- ultraGridColumn7.Header.Caption = "类型";
- ultraGridColumn7.Header.VisiblePosition = 9;
- ultraGridColumn7.Hidden = true;
- ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
- ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn8.Header.Caption = "皮重";
- ultraGridColumn8.Header.VisiblePosition = 4;
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(66, 0);
- ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn9.Header.Caption = "毛重";
- ultraGridColumn9.Header.VisiblePosition = 6;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 0);
- ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn10.Header.Caption = "净重";
- ultraGridColumn10.Header.VisiblePosition = 8;
- ultraGridColumn10.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn11.Header.Caption = "称皮时间";
- ultraGridColumn11.Header.VisiblePosition = 10;
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(160, 0);
- ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn12.Header.Caption = "回皮时间";
- ultraGridColumn12.Header.VisiblePosition = 12;
- ultraGridColumn12.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(160, 0);
- ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn13.Header.Caption = "物资名称";
- ultraGridColumn13.Header.VisiblePosition = 11;
- ultraGridColumn13.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(129, 0);
- ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn14.Header.Caption = "过磅类型";
- ultraGridColumn14.Header.VisiblePosition = 13;
- ultraGridColumn14.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(107, 0);
- ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn15.Header.Caption = "装车单";
- ultraGridColumn15.Header.VisiblePosition = 14;
- ultraGridColumn15.Hidden = true;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn16.Header.Caption = "收货单位";
- ultraGridColumn16.Header.VisiblePosition = 15;
- ultraGridColumn16.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn16.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn17.Header.Caption = "订货单位";
- ultraGridColumn17.Header.VisiblePosition = 16;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 28;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn18.Header.Caption = "发货单位";
- ultraGridColumn18.Header.VisiblePosition = 17;
- ultraGridColumn18.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn19.Header.Caption = "运输单位";
- ultraGridColumn19.Header.VisiblePosition = 18;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 32;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn20.Header.Caption = "备注";
- ultraGridColumn20.Header.VisiblePosition = 19;
- ultraGridColumn20.RowLayoutColumnInfo.OriginX = 30;
- ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(189, 0);
- ultraGridColumn20.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn21.Header.Caption = "作废时间";
- ultraGridColumn21.Header.VisiblePosition = 21;
- ultraGridColumn21.Hidden = true;
- ultraGridColumn21.RowLayoutColumnInfo.OriginX = 48;
- ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn22.Header.Caption = "作废人";
- ultraGridColumn22.Header.VisiblePosition = 22;
- ultraGridColumn22.Hidden = true;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 46;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn23.Header.Caption = "磅房";
- ultraGridColumn23.Header.VisiblePosition = 23;
- ultraGridColumn23.Hidden = true;
- ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
- ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn24.Header.Caption = "磅房";
- ultraGridColumn24.Header.VisiblePosition = 24;
- ultraGridColumn24.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(59, 0);
- ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(57, 28);
- ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn25.EditorComponent = this.uceVlid;
- ultraGridColumn25.Header.Caption = "有效标志";
- ultraGridColumn25.Header.VisiblePosition = 20;
- ultraGridColumn25.Hidden = true;
- ultraGridColumn25.RowLayoutColumnInfo.OriginX = 50;
- ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn26.Header.Caption = "实发数";
- ultraGridColumn26.Header.VisiblePosition = 25;
- ultraGridColumn26.Hidden = true;
- ultraGridColumn26.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
- ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn27.Header.Caption = "车牌号";
- ultraGridColumn27.Header.VisiblePosition = 26;
- ultraGridColumn27.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(102, 0);
- ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn28.Header.Caption = "支数";
- ultraGridColumn28.Header.VisiblePosition = 27;
- ultraGridColumn28.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(62, 0);
- ultraGridColumn28.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn29.Header.Caption = "外径";
- ultraGridColumn29.Header.VisiblePosition = 28;
- ultraGridColumn29.RowLayoutColumnInfo.OriginX = 38;
- ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn30.Header.Caption = "规格";
- ultraGridColumn30.Header.VisiblePosition = 29;
- ultraGridColumn30.RowLayoutColumnInfo.OriginX = 36;
- ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn31.Header.Caption = "钢级(牌号)";
- ultraGridColumn31.Header.VisiblePosition = 30;
- ultraGridColumn31.RowLayoutColumnInfo.OriginX = 44;
- ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn32.Header.Caption = "钢种";
- ultraGridColumn32.Header.VisiblePosition = 31;
- ultraGridColumn32.RowLayoutColumnInfo.OriginX = 42;
- ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn32.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn33.Header.Caption = "品名";
- ultraGridColumn33.Header.VisiblePosition = 32;
- ultraGridColumn33.RowLayoutColumnInfo.OriginX = 40;
- ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn34.Header.Caption = "合同";
- ultraGridColumn34.Header.VisiblePosition = 33;
- ultraGridColumn34.RowLayoutColumnInfo.OriginX = 34;
- ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn35.Header.Caption = "炉号";
- ultraGridColumn35.Header.VisiblePosition = 34;
- ultraGridColumn35.RowLayoutColumnInfo.OriginX = 46;
- ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn36.Header.VisiblePosition = 35;
- ultraGridColumn36.Hidden = true;
- ultraGridColumn37.Header.VisiblePosition = 36;
- ultraGridColumn37.Hidden = true;
- ultraGridColumn38.Header.VisiblePosition = 37;
- ultraGridColumn38.Hidden = true;
- ultraGridColumn39.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn39.Header.VisiblePosition = 38;
- ultraGridColumn39.Hidden = true;
- ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn40.Header.VisiblePosition = 39;
- ultraGridColumn40.Hidden = true;
- ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn41.Header.VisiblePosition = 40;
- ultraGridColumn41.Hidden = true;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8,
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15,
- ultraGridColumn16,
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19,
- ultraGridColumn20,
- ultraGridColumn21,
- ultraGridColumn22,
- ultraGridColumn23,
- ultraGridColumn24,
- ultraGridColumn25,
- ultraGridColumn26,
- ultraGridColumn27,
- ultraGridColumn28,
- ultraGridColumn29,
- ultraGridColumn30,
- ultraGridColumn31,
- ultraGridColumn32,
- ultraGridColumn33,
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38,
- ultraGridColumn39,
- ultraGridColumn40,
- ultraGridColumn41});
- rowLayout1.ColumnInfos.AddRange(new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo[] {
- rowLayoutColumnInfo1,
- rowLayoutColumnInfo2,
- rowLayoutColumnInfo3,
- rowLayoutColumnInfo4,
- rowLayoutColumnInfo5,
- rowLayoutColumnInfo6,
- rowLayoutColumnInfo7,
- rowLayoutColumnInfo8,
- rowLayoutColumnInfo9,
- rowLayoutColumnInfo10,
- rowLayoutColumnInfo11,
- rowLayoutColumnInfo12,
- rowLayoutColumnInfo13,
- rowLayoutColumnInfo14,
- rowLayoutColumnInfo15,
- rowLayoutColumnInfo16,
- rowLayoutColumnInfo17,
- rowLayoutColumnInfo18,
- rowLayoutColumnInfo19,
- rowLayoutColumnInfo20,
- rowLayoutColumnInfo21,
- rowLayoutColumnInfo22,
- rowLayoutColumnInfo23,
- rowLayoutColumnInfo24,
- rowLayoutColumnInfo25,
- rowLayoutColumnInfo26,
- rowLayoutColumnInfo27,
- rowLayoutColumnInfo28,
- rowLayoutColumnInfo29,
- rowLayoutColumnInfo30,
- rowLayoutColumnInfo31,
- rowLayoutColumnInfo32,
- rowLayoutColumnInfo33,
- rowLayoutColumnInfo34,
- rowLayoutColumnInfo35,
- rowLayoutColumnInfo36,
- rowLayoutColumnInfo37,
- rowLayoutColumnInfo38,
- rowLayoutColumnInfo39,
- rowLayoutColumnInfo40,
- rowLayoutColumnInfo41});
- rowLayout1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
- ultraGridBand1.RowLayouts.AddRange(new Infragistics.Win.UltraWinGrid.RowLayout[] {
- rowLayout1});
- ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ugData.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ugData.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.None;
- this.ugData.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ugData.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ugData.Location = new System.Drawing.Point(0, 0);
- this.ugData.Margin = new System.Windows.Forms.Padding(4);
- this.ugData.Name = "ugData";
- this.ugData.Size = new System.Drawing.Size(1137, 523);
- this.ugData.TabIndex = 72;
- this.ugData.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.ugData_InitializeRow);
- this.ugData.AfterRowActivate += new System.EventHandler(this.ugData_AfterRowActivate);
- this.ugData.AfterRowRegionScroll += new Infragistics.Win.UltraWinGrid.RowScrollRegionEventHandler(this.ugData_AfterRowRegionScroll);
- this.ugData.BeforeRowDeactivate += new System.ComponentModel.CancelEventHandler(this.ugData_BeforeRowDeactivate);
- this.ugData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.CurrentGrid_KeyDown);
- //
- // QueryBS
- //
- this.QueryBS.DataSource = typeof(Core.StlMes.Client.LgResMgt.Mcms.entity.CmmWeightResultEntity);
- //
- // panel1
- //
- this.panel1.Controls.Add(this.lblCount);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel1.Location = new System.Drawing.Point(0, 78);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1137, 24);
- this.panel1.TabIndex = 74;
- //
- // lblCount
- //
- this.lblCount.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.lblCount.Dock = System.Windows.Forms.DockStyle.Fill;
- this.lblCount.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold);
- this.lblCount.Location = new System.Drawing.Point(0, 0);
- this.lblCount.Name = "lblCount";
- this.lblCount.Size = new System.Drawing.Size(1137, 24);
- this.lblCount.TabIndex = 0;
- this.lblCount.Text = "无数据";
- this.lblCount.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // ultraPanel3
- //
- this.ultraPanel3.AutoSize = true;
- //
- // ultraPanel3.ClientArea
- //
- this.ultraPanel3.ClientArea.Controls.Add(this.upQueryTop);
- this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraPanel3.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraPanel3.Name = "ultraPanel3";
- this.ultraPanel3.Size = new System.Drawing.Size(1137, 78);
- this.ultraPanel3.TabIndex = 2;
- //
- // upQueryTop
- //
- //
- // upQueryTop.ClientArea
- //
- this.upQueryTop.ClientArea.Controls.Add(this.uteJudgeStoveNo);
- this.upQueryTop.ClientArea.Controls.Add(this.label14);
- this.upQueryTop.ClientArea.Controls.Add(this.panel2);
- this.upQueryTop.ClientArea.Controls.Add(this.uteReceiveName);
- this.upQueryTop.ClientArea.Controls.Add(this.label11);
- this.upQueryTop.ClientArea.Controls.Add(this.uteShippersName);
- this.upQueryTop.ClientArea.Controls.Add(this.label10);
- this.upQueryTop.ClientArea.Controls.Add(this.uteOrder);
- this.upQueryTop.ClientArea.Controls.Add(this.label9);
- this.upQueryTop.ClientArea.Controls.Add(this.utePound);
- this.upQueryTop.ClientArea.Controls.Add(this.label7);
- this.upQueryTop.ClientArea.Controls.Add(this.uteMemo);
- this.upQueryTop.ClientArea.Controls.Add(this.label12);
- this.upQueryTop.ClientArea.Controls.Add(this.uceQueryCarType);
- this.upQueryTop.ClientArea.Controls.Add(this.uteCarNo);
- this.upQueryTop.ClientArea.Controls.Add(this.label8);
- this.upQueryTop.ClientArea.Controls.Add(this.label6);
- this.upQueryTop.ClientArea.Controls.Add(this.RegEndTime);
- this.upQueryTop.ClientArea.Controls.Add(this.chkTim);
- this.upQueryTop.ClientArea.Controls.Add(this.label4);
- this.upQueryTop.ClientArea.Controls.Add(this.RegStartTime);
- this.upQueryTop.Dock = System.Windows.Forms.DockStyle.Top;
- this.upQueryTop.Location = new System.Drawing.Point(0, 0);
- this.upQueryTop.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.upQueryTop.Name = "upQueryTop";
- this.upQueryTop.Size = new System.Drawing.Size(1137, 78);
- this.upQueryTop.TabIndex = 0;
- //
- // uteJudgeStoveNo
- //
- this.uteJudgeStoveNo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.uteJudgeStoveNo.Location = new System.Drawing.Point(894, 42);
- this.uteJudgeStoveNo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.uteJudgeStoveNo.Name = "uteJudgeStoveNo";
- this.uteJudgeStoveNo.Size = new System.Drawing.Size(110, 21);
- this.uteJudgeStoveNo.TabIndex = 958;
- //
- // label14
- //
- this.label14.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.label14.AutoSize = true;
- this.label14.Location = new System.Drawing.Point(847, 46);
- this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(29, 12);
- this.label14.TabIndex = 957;
- this.label14.Text = "炉号";
- //
- // panel2
- //
- this.panel2.Controls.Add(this.utnQuery);
- this.panel2.Controls.Add(this.utbReset);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Right;
- this.panel2.Location = new System.Drawing.Point(1058, 0);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(79, 78);
- this.panel2.TabIndex = 956;
- //
- // utnQuery
- //
- appearance17.Image = ((object)(resources.GetObject("appearance17.Image")));
- this.utnQuery.Appearance = appearance17;
- this.utnQuery.AutoSize = true;
- this.utnQuery.Font = new System.Drawing.Font("宋体", 10F);
- this.utnQuery.Location = new System.Drawing.Point(4, 42);
- this.utnQuery.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utnQuery.Name = "utnQuery";
- this.utnQuery.Size = new System.Drawing.Size(58, 27);
- this.utnQuery.TabIndex = 597;
- this.utnQuery.Text = "查询";
- this.utnQuery.Click += new System.EventHandler(this.utnQuery_Click);
- //
- // utbReset
- //
- appearance14.Image = ((object)(resources.GetObject("appearance14.Image")));
- this.utbReset.Appearance = appearance14;
- this.utbReset.AutoSize = true;
- this.utbReset.Font = new System.Drawing.Font("宋体", 10F);
- this.utbReset.Location = new System.Drawing.Point(3, 6);
- this.utbReset.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utbReset.Name = "utbReset";
- this.utbReset.Size = new System.Drawing.Size(58, 27);
- this.utbReset.TabIndex = 598;
- this.utbReset.Text = "重置";
- this.utbReset.Click += new System.EventHandler(this.utbReset_Click);
- //
- // uteReceiveName
- //
- this.uteReceiveName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.uteReceiveName.Location = new System.Drawing.Point(710, 42);
- this.uteReceiveName.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.uteReceiveName.Name = "uteReceiveName";
- this.uteReceiveName.Size = new System.Drawing.Size(121, 21);
- this.uteReceiveName.TabIndex = 950;
- this.uteReceiveName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
- //
- // label11
- //
- this.label11.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.label11.AutoSize = true;
- this.label11.Location = new System.Drawing.Point(638, 47);
- this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(53, 12);
- this.label11.TabIndex = 949;
- this.label11.Text = "收货单位";
- //
- // uteShippersName
- //
- this.uteShippersName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.uteShippersName.Location = new System.Drawing.Point(492, 43);
- this.uteShippersName.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.uteShippersName.Name = "uteShippersName";
- this.uteShippersName.Size = new System.Drawing.Size(121, 21);
- this.uteShippersName.TabIndex = 950;
- this.uteShippersName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
- //
- // label10
- //
- this.label10.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.label10.AutoSize = true;
- this.label10.Location = new System.Drawing.Point(417, 47);
- this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(53, 12);
- this.label10.TabIndex = 949;
- this.label10.Text = "发货单位";
- //
- // uteOrder
- //
- this.uteOrder.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.uteOrder.Location = new System.Drawing.Point(279, 43);
- this.uteOrder.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.uteOrder.Name = "uteOrder";
- this.uteOrder.Size = new System.Drawing.Size(121, 21);
- this.uteOrder.TabIndex = 950;
- this.uteOrder.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
- //
- // label9
- //
- this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.label9.AutoSize = true;
- this.label9.Location = new System.Drawing.Point(209, 47);
- this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(53, 12);
- this.label9.TabIndex = 949;
- this.label9.Text = "订货单位";
- //
- // utePound
- //
- this.utePound.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.utePound.Location = new System.Drawing.Point(57, 43);
- this.utePound.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utePound.Name = "utePound";
- this.utePound.Size = new System.Drawing.Size(143, 21);
- this.utePound.TabIndex = 950;
- //
- // label7
- //
- this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(4, 47);
- this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(41, 12);
- this.label7.TabIndex = 949;
- this.label7.Text = "磅单号";
- //
- // uteMemo
- //
- this.uteMemo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.uteMemo.Location = new System.Drawing.Point(894, 9);
- this.uteMemo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.uteMemo.Name = "uteMemo";
- this.uteMemo.Size = new System.Drawing.Size(110, 21);
- this.uteMemo.TabIndex = 950;
- this.uteMemo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
- //
- // label12
- //
- this.label12.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.label12.AutoSize = true;
- this.label12.Location = new System.Drawing.Point(846, 13);
- this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(29, 12);
- this.label12.TabIndex = 949;
- this.label12.Text = "备注";
- //
- // uceQueryCarType
- //
- valueListItem50.DataValue = "102";
- valueListItem50.DisplayText = "钢坯采购";
- valueListItem51.DataValue = "103";
- valueListItem51.DisplayText = "钢管退货";
- valueListItem52.DataValue = "104";
- valueListItem52.DisplayText = "采购辅料";
- valueListItem53.DataValue = "105";
- valueListItem53.DisplayText = "修复返厂";
- valueListItem54.DataValue = "106";
- valueListItem54.DisplayText = "设备采购";
- valueListItem55.DataValue = "201";
- valueListItem55.DisplayText = "钢管发运";
- valueListItem56.DataValue = "202";
- valueListItem56.DisplayText = "废料销售";
- valueListItem57.DataValue = "203";
- valueListItem57.DisplayText = "修复出厂";
- valueListItem58.DataValue = "204";
- valueListItem58.DisplayText = "其他内转";
- valueListItem59.DataValue = "205";
- valueListItem59.DisplayText = "内转钢管";
- valueListItem60.DataValue = "206";
- valueListItem60.DisplayText = "内转钢坯";
- valueListItem61.DataValue = "200";
- valueListItem61.DisplayText = "钢管销售";
- valueListItem62.DataValue = "208";
- valueListItem62.DisplayText = "废品倒运";
- this.uceQueryCarType.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem50,
- valueListItem51,
- valueListItem52,
- valueListItem53,
- valueListItem54,
- valueListItem55,
- valueListItem56,
- valueListItem57,
- valueListItem58,
- valueListItem59,
- valueListItem60,
- valueListItem61,
- valueListItem62});
- this.uceQueryCarType.Location = new System.Drawing.Point(709, 7);
- this.uceQueryCarType.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.uceQueryCarType.Name = "uceQueryCarType";
- this.uceQueryCarType.Size = new System.Drawing.Size(121, 21);
- this.uceQueryCarType.TabIndex = 950;
- this.uceQueryCarType.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
- //
- // label8
- //
- this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.label8.AutoSize = true;
- this.label8.Location = new System.Drawing.Point(663, 10);
- this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(29, 12);
- this.label8.TabIndex = 949;
- this.label8.Text = "类型";
- //
- // label6
- //
- this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(460, 13);
- this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(41, 12);
- this.label6.TabIndex = 949;
- this.label6.Text = "车牌号";
- //
- // RegEndTime
- //
- this.RegEndTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.RegEndTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
- this.RegEndTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.RegEndTime.Location = new System.Drawing.Point(289, 7);
- this.RegEndTime.Margin = new System.Windows.Forms.Padding(4);
- this.RegEndTime.Name = "RegEndTime";
- this.RegEndTime.Size = new System.Drawing.Size(159, 21);
- this.RegEndTime.TabIndex = 954;
- //
- // chkTim
- //
- this.chkTim.AutoSize = true;
- this.chkTim.Checked = true;
- this.chkTim.CheckState = System.Windows.Forms.CheckState.Checked;
- this.chkTim.Enabled = false;
- this.chkTim.Location = new System.Drawing.Point(4, 10);
- this.chkTim.Margin = new System.Windows.Forms.Padding(4);
- this.chkTim.Name = "chkTim";
- this.chkTim.Size = new System.Drawing.Size(72, 16);
- this.chkTim.TabIndex = 948;
- this.chkTim.Text = "称重时间";
- this.chkTim.UseVisualStyleBackColor = false;
- //
- // label4
- //
- this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(259, 10);
- this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(17, 12);
- this.label4.TabIndex = 953;
- this.label4.Text = "至";
- //
- // RegStartTime
- //
- this.RegStartTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.RegStartTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
- this.RegStartTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.RegStartTime.Location = new System.Drawing.Point(92, 7);
- this.RegStartTime.Margin = new System.Windows.Forms.Padding(4);
- this.RegStartTime.Name = "RegStartTime";
- this.RegStartTime.Size = new System.Drawing.Size(166, 21);
- this.RegStartTime.TabIndex = 948;
- //
- // ultraPanel7
- //
- //
- // ultraPanel7.ClientArea
- //
- this.ultraPanel7.ClientArea.Controls.Add(this.ultraButton2);
- this.ultraPanel7.ClientArea.Controls.Add(this.utbExport);
- this.ultraPanel7.ClientArea.Controls.Add(this.unExcel);
- this.ultraPanel7.ClientArea.Controls.Add(this.utnUpdate);
- this.ultraPanel7.ClientArea.Controls.Add(this.utbPrint);
- this.ultraPanel7.ClientArea.Controls.Add(this.utbPrintSingle);
- this.ultraPanel7.ClientArea.Controls.Add(this.btnDelete);
- this.ultraPanel7.ClientArea.Controls.Add(this.utbDelete2);
- this.ultraPanel7.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraPanel7.Location = new System.Drawing.Point(0, 625);
- this.ultraPanel7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraPanel7.Name = "ultraPanel7";
- this.ultraPanel7.Size = new System.Drawing.Size(1137, 72);
- this.ultraPanel7.TabIndex = 1;
- //
- // ultraButton2
- //
- this.ultraButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- appearance25.Image = ((object)(resources.GetObject("appearance25.Image")));
- this.ultraButton2.Appearance = appearance25;
- this.ultraButton2.AutoSize = true;
- this.ultraButton2.Font = new System.Drawing.Font("宋体", 10F);
- this.ultraButton2.Location = new System.Drawing.Point(211, 20);
- this.ultraButton2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraButton2.Name = "ultraButton2";
- this.ultraButton2.Size = new System.Drawing.Size(93, 27);
- this.ultraButton2.TabIndex = 605;
- this.ultraButton2.Text = "磅单打印2";
- this.ultraButton2.Click += new System.EventHandler(this.ultraButton2_Click);
- //
- // utbExport
- //
- this.utbExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- appearance34.Image = ((object)(resources.GetObject("appearance34.Image")));
- this.utbExport.Appearance = appearance34;
- this.utbExport.AutoSize = true;
- this.utbExport.Font = new System.Drawing.Font("宋体", 10F);
- this.utbExport.Location = new System.Drawing.Point(760, 20);
- this.utbExport.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utbExport.Name = "utbExport";
- this.utbExport.Size = new System.Drawing.Size(58, 27);
- this.utbExport.TabIndex = 604;
- this.utbExport.Text = "导出";
- this.utbExport.Click += new System.EventHandler(this.utbExport_Click);
- //
- // unExcel
- //
- this.unExcel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- appearance33.Image = ((object)(resources.GetObject("appearance33.Image")));
- this.unExcel.Appearance = appearance33;
- this.unExcel.AutoSize = true;
- this.unExcel.Font = new System.Drawing.Font("宋体", 10F);
- this.unExcel.Location = new System.Drawing.Point(680, 19);
- this.unExcel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.unExcel.Name = "unExcel";
- this.unExcel.Size = new System.Drawing.Size(58, 27);
- this.unExcel.TabIndex = 603;
- this.unExcel.Text = "统计";
- this.unExcel.Click += new System.EventHandler(this.unExcel_Click);
- //
- // utnUpdate
- //
- this.utnUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- appearance27.Image = ((object)(resources.GetObject("appearance27.Image")));
- this.utnUpdate.Appearance = appearance27;
- this.utnUpdate.AutoSize = true;
- this.utnUpdate.Font = new System.Drawing.Font("宋体", 10F);
- this.utnUpdate.Location = new System.Drawing.Point(850, 19);
- this.utnUpdate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utnUpdate.Name = "utnUpdate";
- this.utnUpdate.Size = new System.Drawing.Size(58, 27);
- this.utnUpdate.TabIndex = 602;
- this.utnUpdate.Text = "修改";
- this.utnUpdate.Click += new System.EventHandler(this.utnUpdate_Click);
- //
- // utbPrint
- //
- this.utbPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- appearance4.Image = ((object)(resources.GetObject("appearance4.Image")));
- this.utbPrint.Appearance = appearance4;
- this.utbPrint.AutoSize = true;
- this.utbPrint.Font = new System.Drawing.Font("宋体", 10F);
- this.utbPrint.Location = new System.Drawing.Point(358, 20);
- this.utbPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utbPrint.Name = "utbPrint";
- this.utbPrint.Size = new System.Drawing.Size(86, 27);
- this.utbPrint.TabIndex = 601;
- this.utbPrint.Text = "磅单打印";
- this.utbPrint.Click += new System.EventHandler(this.utbPrint_Click);
- //
- // utbPrintSingle
- //
- this.utbPrintSingle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- appearance29.Image = ((object)(resources.GetObject("appearance29.Image")));
- this.utbPrintSingle.Appearance = appearance29;
- this.utbPrintSingle.AutoSize = true;
- this.utbPrintSingle.Font = new System.Drawing.Font("宋体", 10F);
- this.utbPrintSingle.Location = new System.Drawing.Point(480, 20);
- this.utbPrintSingle.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utbPrintSingle.Name = "utbPrintSingle";
- this.utbPrintSingle.Size = new System.Drawing.Size(86, 27);
- this.utbPrintSingle.TabIndex = 600;
- this.utbPrintSingle.Text = "单项打印";
- this.utbPrintSingle.Click += new System.EventHandler(this.utbPrintSingle_Click);
- //
- // btnDelete
- //
- this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- appearance28.Image = ((object)(resources.GetObject("appearance28.Image")));
- this.btnDelete.Appearance = appearance28;
- this.btnDelete.AutoSize = true;
- this.btnDelete.Enabled = false;
- this.btnDelete.Font = new System.Drawing.Font("宋体", 10F);
- this.btnDelete.Location = new System.Drawing.Point(1028, 19);
- this.btnDelete.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.btnDelete.Name = "btnDelete";
- this.btnDelete.Size = new System.Drawing.Size(58, 27);
- this.btnDelete.TabIndex = 599;
- this.btnDelete.Text = "删除";
- this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
- //
- // utbDelete2
- //
- this.utbDelete2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- appearance35.Image = ((object)(resources.GetObject("appearance35.Image")));
- this.utbDelete2.Appearance = appearance35;
- this.utbDelete2.AutoSize = true;
- this.utbDelete2.Font = new System.Drawing.Font("宋体", 10F);
- this.utbDelete2.Location = new System.Drawing.Point(938, 20);
- this.utbDelete2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utbDelete2.Name = "utbDelete2";
- this.utbDelete2.Size = new System.Drawing.Size(58, 27);
- this.utbDelete2.TabIndex = 598;
- this.utbDelete2.Text = "重过";
- this.utbDelete2.Click += new System.EventHandler(this.btnDelete_Click);
- //
- // ultraTabPageControl1
- //
- this.ultraTabPageControl1.Controls.Add(this.txtCar2);
- this.ultraTabPageControl1.Controls.Add(this.splitContainer1);
- this.ultraTabPageControl1.Controls.Add(this.ultraPanel20);
- this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl1.Name = "ultraTabPageControl1";
- this.ultraTabPageControl1.Size = new System.Drawing.Size(1137, 697);
- //
- // txtCar2
- //
- this.txtCar2.FormattingEnabled = true;
- this.txtCar2.Location = new System.Drawing.Point(456, 30);
- this.txtCar2.Name = "txtCar2";
- this.txtCar2.Size = new System.Drawing.Size(185, 20);
- this.txtCar2.TabIndex = 599;
- this.txtCar2.TextChanged += new System.EventHandler(this.txtCar2_TextChanged);
- this.txtCar2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtCar2_KeyPress);
- //
- // splitContainer1
- //
- this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.Location = new System.Drawing.Point(0, 83);
- this.splitContainer1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.splitContainer1.Name = "splitContainer1";
- this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.Controls.Add(this.uceType2);
- this.splitContainer1.Panel1.Controls.Add(this.uteChangeType);
- this.splitContainer1.Panel1.Controls.Add(this.uteEdit);
- this.splitContainer1.Panel1.Controls.Add(this.delete);
- this.splitContainer1.Panel1.Controls.Add(this.uceType);
- this.splitContainer1.Panel1.Controls.Add(this.CurrentGrid);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.Controls.Add(this.tbWt);
- this.splitContainer1.Size = new System.Drawing.Size(1137, 614);
- this.splitContainer1.SplitterDistance = 312;
- this.splitContainer1.TabIndex = 581;
- this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer1_SplitterMoved);
- //
- // uceType2
- //
- editorButton3.Text = "修改 ";
- this.uceType2.ButtonsRight.Add(editorButton3);
- this.uceType2.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem3.DataValue = "101";
- valueListItem3.DisplayText = "空车过皮";
- valueListItem4.DataValue = "102";
- valueListItem4.DisplayText = "钢坯采购";
- valueListItem5.DataValue = "103";
- valueListItem5.DisplayText = "钢管退货";
- valueListItem6.DataValue = "104";
- valueListItem6.DisplayText = "采购辅料";
- valueListItem7.DataValue = "105";
- valueListItem7.DisplayText = "修复返厂";
- valueListItem8.DataValue = "106";
- valueListItem8.DisplayText = "设备采购";
- valueListItem9.DataValue = "107";
- valueListItem9.DisplayText = "其他内转";
- valueListItem10.DataValue = "108";
- valueListItem10.DisplayText = "内转钢管";
- valueListItem11.DataValue = "109";
- valueListItem11.DisplayText = "内转钢坯";
- valueListItem12.DataValue = "201";
- valueListItem12.DisplayText = "配车单称重";
- valueListItem13.DataValue = "202";
- valueListItem13.DisplayText = "废料销售";
- valueListItem19.DataValue = "203";
- valueListItem19.DisplayText = "修复出厂";
- valueListItem20.DataValue = "204";
- valueListItem20.DisplayText = "其他内转";
- valueListItem21.DataValue = "205";
- valueListItem21.DisplayText = "内转钢管";
- valueListItem22.DataValue = "206";
- valueListItem22.DisplayText = "内转钢坯";
- valueListItem23.DataValue = "207";
- valueListItem23.DisplayText = "空车回皮";
- valueListItem24.DataValue = "200";
- valueListItem24.DisplayText = "钢管销售";
- valueListItem25.DataValue = "208";
- valueListItem25.DisplayText = "废品倒运";
- this.uceType2.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem3,
- valueListItem4,
- valueListItem5,
- valueListItem6,
- valueListItem7,
- valueListItem8,
- valueListItem9,
- valueListItem10,
- valueListItem11,
- valueListItem12,
- valueListItem13,
- valueListItem19,
- valueListItem20,
- valueListItem21,
- valueListItem22,
- valueListItem23,
- valueListItem24,
- valueListItem25});
- this.uceType2.Location = new System.Drawing.Point(742, 198);
- this.uceType2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.uceType2.Name = "uceType2";
- this.uceType2.Size = new System.Drawing.Size(144, 21);
- this.uceType2.TabIndex = 81;
- this.uceType2.Visible = false;
- this.uceType2.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.uteChangeType_EditorButtonClick);
- //
- // uteEdit
- //
- editorButton4.Key = "select";
- editorButton4.Text = "修改";
- this.uteEdit.ButtonsRight.Add(editorButton4);
- this.uteEdit.Location = new System.Drawing.Point(808, 145);
- this.uteEdit.Margin = new System.Windows.Forms.Padding(4);
- this.uteEdit.Name = "uteEdit";
- this.uteEdit.Size = new System.Drawing.Size(183, 21);
- this.uteEdit.TabIndex = 79;
- this.uteEdit.Visible = false;
- this.uteEdit.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.uteEdit_EditorButtonClick);
- //
- // CurrentGrid
- //
- this.CurrentGrid.DataSource = this.cmmWeightRecordEntityBindingSource;
- ultraGridColumn42.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn42.EditorComponent = this.delete;
- ultraGridColumn42.Header.Caption = "过磅流水号";
- ultraGridColumn42.Header.VisiblePosition = 0;
- ultraGridColumn42.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(149, 0);
- ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn43.Header.Caption = "过磅时间";
- ultraGridColumn43.Header.VisiblePosition = 1;
- ultraGridColumn43.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn44.Header.Caption = "检斤人";
- ultraGridColumn44.Header.VisiblePosition = 2;
- ultraGridColumn44.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(127, 0);
- ultraGridColumn44.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn45.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- ultraGridColumn45.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn45.EditorComponent = this.uteCarNo;
- ultraGridColumn45.Header.Caption = "车牌号";
- ultraGridColumn45.Header.VisiblePosition = 20;
- ultraGridColumn45.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
- ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn46.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- ultraGridColumn46.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn46.EditorComponent = this.uteChangeType;
- ultraGridColumn46.Header.Caption = "检斤类型";
- ultraGridColumn46.Header.VisiblePosition = 3;
- ultraGridColumn46.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn46.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(131, 0);
- ultraGridColumn46.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn46.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn47.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn47.Header.Caption = "重量";
- ultraGridColumn47.Header.VisiblePosition = 4;
- ultraGridColumn47.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(58, 0);
- ultraGridColumn47.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn47.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn48.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn48.Header.Caption = "支数";
- ultraGridColumn48.Header.VisiblePosition = 5;
- ultraGridColumn48.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn48.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
- ultraGridColumn48.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn48.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn49.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn49.Header.Caption = "有效标志";
- ultraGridColumn49.Header.VisiblePosition = 16;
- ultraGridColumn49.Hidden = true;
- ultraGridColumn50.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn50.Header.Caption = "物资名称";
- ultraGridColumn50.Header.VisiblePosition = 6;
- ultraGridColumn50.Hidden = true;
- ultraGridColumn51.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn51.Header.Caption = "过磅类型";
- ultraGridColumn51.Header.VisiblePosition = 7;
- ultraGridColumn51.Hidden = true;
- ultraGridColumn51.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn51.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn51.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn52.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn52.Header.Caption = "装车单";
- ultraGridColumn52.Header.VisiblePosition = 8;
- ultraGridColumn52.Hidden = true;
- ultraGridColumn53.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn53.Header.Caption = "收货单位";
- ultraGridColumn53.Header.VisiblePosition = 9;
- ultraGridColumn53.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn53.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn53.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn54.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn54.Header.Caption = "订货单位";
- ultraGridColumn54.Header.VisiblePosition = 10;
- ultraGridColumn54.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn54.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn54.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn55.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn55.Header.Caption = "发货单位";
- ultraGridColumn55.Header.VisiblePosition = 11;
- ultraGridColumn55.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn55.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn55.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn56.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn56.Header.Caption = "运输单位";
- ultraGridColumn56.Header.VisiblePosition = 12;
- ultraGridColumn56.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn56.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn56.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn57.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn57.Header.Caption = "作废时间";
- ultraGridColumn57.Header.VisiblePosition = 17;
- ultraGridColumn57.Hidden = true;
- ultraGridColumn58.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn58.Header.Caption = "作废人";
- ultraGridColumn58.Header.VisiblePosition = 18;
- ultraGridColumn58.Hidden = true;
- ultraGridColumn59.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn59.Header.Caption = "备注";
- ultraGridColumn59.Header.VisiblePosition = 14;
- ultraGridColumn59.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn59.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn59.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn60.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn60.Header.Caption = "重量类型";
- ultraGridColumn60.Header.VisiblePosition = 13;
- ultraGridColumn60.Hidden = true;
- ultraGridColumn60.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn60.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn60.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn60.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn61.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn61.Header.Caption = "磅房";
- ultraGridColumn61.Header.VisiblePosition = 15;
- ultraGridColumn61.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn61.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(84, 0);
- ultraGridColumn61.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn61.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn62.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn62.Header.Caption = "实发数";
- ultraGridColumn62.Header.VisiblePosition = 19;
- ultraGridColumn62.Hidden = true;
- ultraGridColumn62.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn62.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
- ultraGridColumn62.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn62.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn63.Header.Caption = "皮重有效剩余时间(小时)";
- ultraGridColumn63.Header.VisiblePosition = 21;
- ultraGridColumn63.Hidden = true;
- ultraGridColumn63.RowLayoutColumnInfo.OriginX = 28;
- ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn63.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn63.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn64.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn64.Header.Caption = "带货过皮";
- ultraGridColumn64.Header.VisiblePosition = 22;
- ultraGridColumn64.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn64.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn64.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(94, 0);
- ultraGridColumn64.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn64.RowLayoutColumnInfo.SpanY = 2;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn42,
- ultraGridColumn43,
- ultraGridColumn44,
- ultraGridColumn45,
- ultraGridColumn46,
- ultraGridColumn47,
- ultraGridColumn48,
- ultraGridColumn49,
- ultraGridColumn50,
- ultraGridColumn51,
- ultraGridColumn52,
- ultraGridColumn53,
- ultraGridColumn54,
- ultraGridColumn55,
- ultraGridColumn56,
- ultraGridColumn57,
- ultraGridColumn58,
- ultraGridColumn59,
- ultraGridColumn60,
- ultraGridColumn61,
- ultraGridColumn62,
- ultraGridColumn63,
- ultraGridColumn64});
- rowLayout2.ColumnInfos.AddRange(new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo[] {
- rowLayoutColumnInfo42,
- rowLayoutColumnInfo43,
- rowLayoutColumnInfo44,
- rowLayoutColumnInfo45,
- rowLayoutColumnInfo46,
- rowLayoutColumnInfo47,
- rowLayoutColumnInfo48,
- rowLayoutColumnInfo49,
- rowLayoutColumnInfo50,
- rowLayoutColumnInfo51,
- rowLayoutColumnInfo52,
- rowLayoutColumnInfo53,
- rowLayoutColumnInfo54,
- rowLayoutColumnInfo55,
- rowLayoutColumnInfo56,
- rowLayoutColumnInfo57,
- rowLayoutColumnInfo58,
- rowLayoutColumnInfo59,
- rowLayoutColumnInfo60,
- rowLayoutColumnInfo61,
- rowLayoutColumnInfo62,
- rowLayoutColumnInfo63,
- rowLayoutColumnInfo64});
- rowLayout2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
- ultraGridBand2.RowLayouts.AddRange(new Infragistics.Win.UltraWinGrid.RowLayout[] {
- rowLayout2});
- ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.CurrentGrid.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.CurrentGrid.Dock = System.Windows.Forms.DockStyle.Fill;
- this.CurrentGrid.Font = new System.Drawing.Font("宋体", 10F);
- this.CurrentGrid.Location = new System.Drawing.Point(0, 0);
- this.CurrentGrid.Margin = new System.Windows.Forms.Padding(4);
- this.CurrentGrid.Name = "CurrentGrid";
- this.CurrentGrid.Size = new System.Drawing.Size(1137, 312);
- this.CurrentGrid.TabIndex = 71;
- this.CurrentGrid.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.CurrentGrid_InitializeLayout);
- this.CurrentGrid.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.CurrentGrid_InitializeRow);
- this.CurrentGrid.AfterRowActivate += new System.EventHandler(this.CurrentGrid_AfterRowActivate);
- this.CurrentGrid.AfterRowRegionScroll += new Infragistics.Win.UltraWinGrid.RowScrollRegionEventHandler(this.CurrentGrid_AfterRowRegionScroll);
- this.CurrentGrid.BeforeRowDeactivate += new System.ComponentModel.CancelEventHandler(this.CurrentGrid_BeforeRowDeactivate);
- this.CurrentGrid.DoubleClickCell += new Infragistics.Win.UltraWinGrid.DoubleClickCellEventHandler(this.CurrentGrid_DoubleClickCell);
- this.CurrentGrid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.CurrentGrid_KeyDown);
- this.CurrentGrid.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.CurrentGrid_KeyPress);
- //
- // cmmWeightRecordEntityBindingSource
- //
- this.cmmWeightRecordEntityBindingSource.DataSource = typeof(Core.StlMes.Client.LgResMgt.Mcms.entity.CmmWeightRecordEntity);
- //
- // tbWt
- //
- appearance21.ForeColor = System.Drawing.SystemColors.ControlText;
- this.tbWt.Appearance = appearance21;
- this.tbWt.Controls.Add(this.ultraTabSharedControlsPage2);
- this.tbWt.Controls.Add(this.ultraTabPageControl3);
- this.tbWt.Controls.Add(this.ultraTabPageControl4);
- this.tbWt.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tbWt.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbWt.Location = new System.Drawing.Point(0, 0);
- this.tbWt.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.tbWt.Name = "tbWt";
- this.tbWt.SharedControlsPage = this.ultraTabSharedControlsPage2;
- this.tbWt.Size = new System.Drawing.Size(1137, 298);
- this.tbWt.TabIndex = 1;
- this.tbWt.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
- ultraTab5.Key = "1";
- ultraTab5.TabPage = this.ultraTabPageControl3;
- ultraTab5.Text = "第一次称重";
- ultraTab6.Key = "2";
- ultraTab6.TabPage = this.ultraTabPageControl4;
- ultraTab6.Text = "第二次称重";
- this.tbWt.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab5,
- ultraTab6});
- this.tbWt.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.tbFirstWt_SelectedTabChanged);
- //
- // ultraTabSharedControlsPage2
- //
- this.ultraTabSharedControlsPage2.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabSharedControlsPage2.Name = "ultraTabSharedControlsPage2";
- this.ultraTabSharedControlsPage2.Size = new System.Drawing.Size(1133, 269);
- //
- // ultraPanel20
- //
- //
- // ultraPanel20.ClientArea
- //
- this.ultraPanel20.ClientArea.Controls.Add(this.ultraPanel4);
- this.ultraPanel20.ClientArea.Controls.Add(this.lblWt);
- this.ultraPanel20.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraPanel20.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel20.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraPanel20.Name = "ultraPanel20";
- this.ultraPanel20.Size = new System.Drawing.Size(1137, 83);
- this.ultraPanel20.TabIndex = 74;
- //
- // ultraPanel4
- //
- //
- // ultraPanel4.ClientArea
- //
- this.ultraPanel4.ClientArea.Controls.Add(this.utbExport2);
- this.ultraPanel4.ClientArea.Controls.Add(this.cboPoundList);
- this.ultraPanel4.ClientArea.Controls.Add(this.label13);
- this.ultraPanel4.ClientArea.Controls.Add(this.cbxCar1);
- this.ultraPanel4.ClientArea.Controls.Add(this.label3);
- this.ultraPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel4.Location = new System.Drawing.Point(274, 0);
- this.ultraPanel4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraPanel4.Name = "ultraPanel4";
- this.ultraPanel4.Size = new System.Drawing.Size(863, 83);
- this.ultraPanel4.TabIndex = 582;
- //
- // utbExport2
- //
- this.utbExport2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- appearance5.Image = ((object)(resources.GetObject("appearance5.Image")));
- this.utbExport2.Appearance = appearance5;
- this.utbExport2.AutoSize = true;
- this.utbExport2.Location = new System.Drawing.Point(536, 30);
- this.utbExport2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utbExport2.Name = "utbExport2";
- this.utbExport2.Size = new System.Drawing.Size(55, 26);
- this.utbExport2.TabIndex = 605;
- this.utbExport2.Text = "导出";
- this.utbExport2.Click += new System.EventHandler(this.utbExport2_Click);
- //
- // cboPoundList
- //
- this.cboPoundList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.cboPoundList.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cboPoundList.Font = new System.Drawing.Font("宋体", 10F);
- this.cboPoundList.FormattingEnabled = true;
- this.cboPoundList.Location = new System.Drawing.Point(769, 32);
- this.cboPoundList.Margin = new System.Windows.Forms.Padding(4);
- this.cboPoundList.Name = "cboPoundList";
- this.cboPoundList.Size = new System.Drawing.Size(67, 21);
- this.cboPoundList.TabIndex = 597;
- this.cboPoundList.SelectedValueChanged += new System.EventHandler(this.cboPoundList_SelectedValueChanged);
- //
- // label13
- //
- this.label13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.label13.AutoSize = true;
- this.label13.Font = new System.Drawing.Font("宋体", 10F);
- this.label13.Location = new System.Drawing.Point(638, 35);
- this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(98, 14);
- this.label13.TabIndex = 595;
- this.label13.Text = "过磅磅房编号:";
- this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // cbxCar1
- //
- this.cbxCar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.cbxCar1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cbxCar1.Font = new System.Drawing.Font("宋体", 10F);
- this.cbxCar1.FormattingEnabled = true;
- this.cbxCar1.Items.AddRange(new object[] {
- "厂内 ",
- "苏",
- "浙",
- "皖",
- "闽",
- "赣",
- "京",
- "沪",
- "津",
- "渝",
- "鲁",
- "冀",
- "晋",
- "蒙",
- "辽",
- "吉",
- "黑",
- "豫",
- "湘",
- "鄂",
- "粤",
- "桂",
- "琼",
- "川",
- "贵",
- "云",
- "藏",
- "陕",
- "甘",
- "青",
- "宁",
- "新",
- "港",
- "澳",
- "台"});
- this.cbxCar1.Location = new System.Drawing.Point(95, 29);
- this.cbxCar1.Margin = new System.Windows.Forms.Padding(4);
- this.cbxCar1.Name = "cbxCar1";
- this.cbxCar1.Size = new System.Drawing.Size(71, 21);
- this.cbxCar1.TabIndex = 593;
- this.cbxCar1.SelectedValueChanged += new System.EventHandler(this.cbxCar1_SelectedValueChanged);
- //
- // label3
- //
- this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
- this.label3.AutoSize = true;
- this.label3.Font = new System.Drawing.Font("宋体", 10F);
- this.label3.Location = new System.Drawing.Point(19, 32);
- this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(56, 14);
- this.label3.TabIndex = 592;
- this.label3.Text = "车牌号:";
- //
- // lblWt
- //
- appearance11.BackColor = System.Drawing.Color.LightBlue;
- appearance11.TextHAlignAsString = "Center";
- appearance11.TextVAlignAsString = "Middle";
- this.lblWt.Appearance = appearance11;
- this.lblWt.Dock = System.Windows.Forms.DockStyle.Left;
- this.lblWt.Font = new System.Drawing.Font("微软雅黑", 34.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblWt.Location = new System.Drawing.Point(0, 0);
- this.lblWt.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.lblWt.Name = "lblWt";
- this.lblWt.Size = new System.Drawing.Size(274, 83);
- this.lblWt.TabIndex = 73;
- this.lblWt.Text = "0.000t";
- //
- // tbMain
- //
- this.tbMain.Controls.Add(this.ultraTabSharedControlsPage1);
- this.tbMain.Controls.Add(this.ultraTabPageControl1);
- this.tbMain.Controls.Add(this.ultraTabPageControl2);
- this.tbMain.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tbMain.Location = new System.Drawing.Point(0, 0);
- this.tbMain.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.tbMain.Name = "tbMain";
- this.tbMain.SharedControlsPage = this.ultraTabSharedControlsPage1;
- this.tbMain.Size = new System.Drawing.Size(1141, 723);
- this.tbMain.TabIndex = 0;
- this.tbMain.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
- ultraTab4.Key = "2";
- ultraTab4.TabPage = this.ultraTabPageControl2;
- ultraTab4.Text = "称重记录";
- ultraTab3.Key = "1";
- ultraTab3.TabPage = this.ultraTabPageControl1;
- ultraTab3.Text = "配车称重";
- this.tbMain.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab4,
- ultraTab3});
- //
- // ultraTabSharedControlsPage1
- //
- this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
- this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1137, 697);
- //
- // ultraPanel1
- //
- //
- // ultraPanel1.ClientArea
- //
- this.ultraPanel1.ClientArea.Controls.Add(this.lvTemplate);
- this.ultraPanel1.ClientArea.Controls.Add(this.lblWtNow);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraPanel2);
- this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel1.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraPanel1.Name = "ultraPanel1";
- this.ultraPanel1.Size = new System.Drawing.Size(203, 723);
- this.ultraPanel1.TabIndex = 1;
- //
- // lvTemplate
- //
- this.lvTemplate.Dock = System.Windows.Forms.DockStyle.Fill;
- this.lvTemplate.Font = new System.Drawing.Font("宋体", 10F);
- this.lvTemplate.ItemSettings.AllowEdit = Infragistics.Win.DefaultableBoolean.False;
- this.lvTemplate.ItemSettings.DefaultImage = ((System.Drawing.Image)(resources.GetObject("lvTemplate.ItemSettings.DefaultImage")));
- this.lvTemplate.Location = new System.Drawing.Point(0, 253);
- this.lvTemplate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.lvTemplate.Name = "lvTemplate";
- this.lvTemplate.Size = new System.Drawing.Size(203, 470);
- this.lvTemplate.TabIndex = 593;
- this.lvTemplate.View = Infragistics.Win.UltraWinListView.UltraListViewStyle.List;
- this.lvTemplate.ItemDoubleClick += new Infragistics.Win.UltraWinListView.ItemDoubleClickEventHandler(this.lvTemplate_ItemDoubleClick);
- this.lvTemplate.MouseClick += new System.Windows.Forms.MouseEventHandler(this.lvTemplate_MouseClick);
- //
- // lblWtNow
- //
- appearance12.BackColor = System.Drawing.Color.LightBlue;
- appearance12.TextHAlignAsString = "Center";
- appearance12.TextVAlignAsString = "Middle";
- this.lblWtNow.Appearance = appearance12;
- this.lblWtNow.Dock = System.Windows.Forms.DockStyle.Top;
- this.lblWtNow.Font = new System.Drawing.Font("微软雅黑", 34.8F, System.Drawing.FontStyle.Bold);
- this.lblWtNow.Location = new System.Drawing.Point(0, 158);
- this.lblWtNow.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.lblWtNow.Name = "lblWtNow";
- this.lblWtNow.Size = new System.Drawing.Size(203, 95);
- this.lblWtNow.TabIndex = 72;
- this.lblWtNow.Text = "0.00t";
- this.lblWtNow.Click += new System.EventHandler(this.lblWtNow_Click);
- //
- // ultraPanel2
- //
- //
- // ultraPanel2.ClientArea
- //
- this.ultraPanel2.ClientArea.Controls.Add(this.lblStatus);
- this.ultraPanel2.ClientArea.Controls.Add(this.lblMsg);
- this.ultraPanel2.ClientArea.Controls.Add(this.btnSetting);
- this.ultraPanel2.ClientArea.Controls.Add(this.cboNo);
- this.ultraPanel2.ClientArea.Controls.Add(this.utbConnect);
- this.ultraPanel2.ClientArea.Controls.Add(this.label2);
- this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraPanel2.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraPanel2.Name = "ultraPanel2";
- this.ultraPanel2.Size = new System.Drawing.Size(203, 158);
- this.ultraPanel2.TabIndex = 591;
- //
- // lblStatus
- //
- this.lblStatus.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.lblStatus.Location = new System.Drawing.Point(0, 98);
- this.lblStatus.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.lblStatus.Name = "lblStatus";
- this.lblStatus.Size = new System.Drawing.Size(203, 30);
- this.lblStatus.TabIndex = 599;
- this.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // lblMsg
- //
- this.lblMsg.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.lblMsg.Location = new System.Drawing.Point(0, 128);
- this.lblMsg.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.lblMsg.Name = "lblMsg";
- this.lblMsg.Size = new System.Drawing.Size(203, 30);
- this.lblMsg.TabIndex = 598;
- this.lblMsg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // btnSetting
- //
- this.btnSetting.AutoSize = true;
- this.btnSetting.Location = new System.Drawing.Point(8, 4);
- this.btnSetting.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.btnSetting.Name = "btnSetting";
- this.btnSetting.Size = new System.Drawing.Size(39, 26);
- this.btnSetting.TabIndex = 597;
- this.btnSetting.Text = "配置";
- this.btnSetting.Click += new System.EventHandler(this.btnSetting_Click);
- //
- // cboNo
- //
- this.cboNo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cboNo.Font = new System.Drawing.Font("宋体", 10F);
- this.cboNo.FormattingEnabled = true;
- this.cboNo.Items.AddRange(new object[] {
- "300",
- "1200",
- "2400",
- "4800",
- "9600",
- "19200",
- "38400",
- "57600"});
- this.cboNo.Location = new System.Drawing.Point(101, 55);
- this.cboNo.Margin = new System.Windows.Forms.Padding(4);
- this.cboNo.Name = "cboNo";
- this.cboNo.Size = new System.Drawing.Size(86, 21);
- this.cboNo.TabIndex = 596;
- //
- // utbConnect
- //
- this.utbConnect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- appearance15.ForeColor = System.Drawing.Color.Lime;
- this.utbConnect.Appearance = appearance15;
- this.utbConnect.AutoSize = true;
- this.utbConnect.Font = new System.Drawing.Font("宋体", 10F);
- this.utbConnect.Location = new System.Drawing.Point(162, 4);
- this.utbConnect.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.utbConnect.Name = "utbConnect";
- this.utbConnect.Size = new System.Drawing.Size(29, 25);
- this.utbConnect.TabIndex = 595;
- this.utbConnect.Text = "●";
- this.utbConnect.Click += new System.EventHandler(this.utbConnect_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(13, 58);
- this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(59, 12);
- this.label2.TabIndex = 591;
- this.label2.Text = "磅房编号:";
- this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // ultraTabControl3
- //
- this.ultraTabControl3.Location = new System.Drawing.Point(0, 0);
- this.ultraTabControl3.Name = "ultraTabControl3";
- this.ultraTabControl3.SharedControlsPage = this.ultraTabSharedControlsPage3;
- this.ultraTabControl3.Size = new System.Drawing.Size(200, 100);
- this.ultraTabControl3.TabIndex = 0;
- //
- // ultraTabSharedControlsPage3
- //
- this.ultraTabSharedControlsPage3.Location = new System.Drawing.Point(1, 20);
- this.ultraTabSharedControlsPage3.Name = "ultraTabSharedControlsPage3";
- this.ultraTabSharedControlsPage3.Size = new System.Drawing.Size(196, 77);
- //
- // ultraGroupBox2
- //
- this.ultraGroupBox2.Controls.Add(this.ultraPanel6);
- this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox2.Name = "ultraGroupBox2";
- this.ultraGroupBox2.Size = new System.Drawing.Size(200, 110);
- this.ultraGroupBox2.TabIndex = 0;
- //
- // ultraPanel6
- //
- //
- // ultraPanel6.ClientArea
- //
- this.ultraPanel6.ClientArea.Controls.Add(this.ultraButton5);
- this.ultraPanel6.ClientArea.Controls.Add(this.checkBox2);
- this.ultraPanel6.ClientArea.Controls.Add(this.ultraButton6);
- this.ultraPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel6.Location = new System.Drawing.Point(3, 0);
- this.ultraPanel6.Name = "ultraPanel6";
- this.ultraPanel6.Size = new System.Drawing.Size(194, 107);
- this.ultraPanel6.TabIndex = 3;
- //
- // ultraButton5
- //
- appearance2.Image = ((object)(resources.GetObject("appearance2.Image")));
- this.ultraButton5.Appearance = appearance2;
- this.ultraButton5.AutoSize = true;
- this.ultraButton5.Font = new System.Drawing.Font("宋体", 10F);
- this.ultraButton5.Location = new System.Drawing.Point(349, 20);
- this.ultraButton5.Name = "ultraButton5";
- this.ultraButton5.Size = new System.Drawing.Size(113, 27);
- this.ultraButton5.TabIndex = 598;
- this.ultraButton5.Text = " 保存为模板";
- //
- // checkBox2
- //
- this.checkBox2.AutoSize = true;
- this.checkBox2.Location = new System.Drawing.Point(157, 24);
- this.checkBox2.Name = "checkBox2";
- this.checkBox2.Size = new System.Drawing.Size(96, 16);
- this.checkBox2.TabIndex = 597;
- this.checkBox2.Text = "带货过皮车辆";
- this.checkBox2.UseVisualStyleBackColor = true;
- //
- // ultraButton6
- //
- appearance3.Image = ((object)(resources.GetObject("appearance3.Image")));
- this.ultraButton6.Appearance = appearance3;
- this.ultraButton6.AutoSize = true;
- this.ultraButton6.Font = new System.Drawing.Font("宋体", 10F);
- this.ultraButton6.Location = new System.Drawing.Point(30, 20);
- this.ultraButton6.Name = "ultraButton6";
- this.ultraButton6.Size = new System.Drawing.Size(72, 27);
- this.ultraButton6.TabIndex = 596;
- this.ultraButton6.Text = " 保存";
- //
- // ultraTabSharedControlsPage5
- //
- this.ultraTabSharedControlsPage5.Location = new System.Drawing.Point(1, 20);
- this.ultraTabSharedControlsPage5.Name = "ultraTabSharedControlsPage5";
- this.ultraTabSharedControlsPage5.Size = new System.Drawing.Size(196, 77);
- //
- // ultraTabControl5
- //
- this.ultraTabControl5.Location = new System.Drawing.Point(0, 0);
- this.ultraTabControl5.Name = "ultraTabControl5";
- this.ultraTabControl5.SharedControlsPage = this.ultraTabSharedControlsPage5;
- this.ultraTabControl5.Size = new System.Drawing.Size(200, 100);
- this.ultraTabControl5.TabIndex = 0;
- //
- // ultraTabControl6
- //
- this.ultraTabControl6.Location = new System.Drawing.Point(0, 0);
- this.ultraTabControl6.Name = "ultraTabControl6";
- this.ultraTabControl6.SharedControlsPage = this.ultraTabSharedControlsPage6;
- this.ultraTabControl6.Size = new System.Drawing.Size(200, 100);
- this.ultraTabControl6.TabIndex = 0;
- //
- // ultraTabSharedControlsPage6
- //
- this.ultraTabSharedControlsPage6.Location = new System.Drawing.Point(1, 20);
- this.ultraTabSharedControlsPage6.Name = "ultraTabSharedControlsPage6";
- this.ultraTabSharedControlsPage6.Size = new System.Drawing.Size(196, 77);
- //
- // listViewMenuStrip
- //
- this.listViewMenuStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
- this.listViewMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.deleteTemplate});
- this.listViewMenuStrip.Name = "contextMenuStrip1";
- this.listViewMenuStrip.Size = new System.Drawing.Size(125, 26);
- //
- // deleteTemplate
- //
- this.deleteTemplate.Name = "deleteTemplate";
- this.deleteTemplate.Size = new System.Drawing.Size(124, 22);
- this.deleteTemplate.Text = "删除模板";
- this.deleteTemplate.Click += new System.EventHandler(this.deleteTemplate_Click);
- //
- // splitContainer2
- //
- this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer2.Location = new System.Drawing.Point(0, 0);
- this.splitContainer2.Name = "splitContainer2";
- //
- // splitContainer2.Panel1
- //
- this.splitContainer2.Panel1.Controls.Add(this.ultraPanel1);
- //
- // splitContainer2.Panel2
- //
- this.splitContainer2.Panel2.Controls.Add(this.tbMain);
- this.splitContainer2.Size = new System.Drawing.Size(1348, 723);
- this.splitContainer2.SplitterDistance = 203;
- this.splitContainer2.TabIndex = 74;
- this.splitContainer2.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer2_SplitterMoved);
- //
- // frmLocalTruckScale
- //
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
- this.ClientSize = new System.Drawing.Size(1348, 723);
- this.Controls.Add(this.splitContainer2);
- this.Margin = new System.Windows.Forms.Padding(4);
- this.Name = "frmLocalTruckScale";
- this.Text = "本地计量";
- this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmLocalTruckScale_FormClosed);
- this.Shown += new System.EventHandler(this.frmLocalTruckScale_Shown);
- this.ultraTabPageControl18.ResumeLayout(false);
- this.ultraTabPageControl5.ResumeLayout(false);
- this.ultraTabPageControl24.ResumeLayout(false);
- this.ultraTabPageControl6.ResumeLayout(false);
- this.ultraTabPageControl15.ResumeLayout(false);
- this.ultraTabPageControl16.ResumeLayout(false);
- this.ultraTabPageControl17.ResumeLayout(false);
- this.ultraTabPageControl7.ResumeLayout(false);
- this.ultraTabPageControl20.ResumeLayout(false);
- this.ultraTabPageControl8.ResumeLayout(false);
- this.ultraTabPageControl9.ResumeLayout(false);
- this.ultraTabPageControl10.ResumeLayout(false);
- this.ultraTabPageControl11.ResumeLayout(false);
- this.ultraTabPageControl12.ResumeLayout(false);
- this.ultraTabPageControl13.ResumeLayout(false);
- this.ultraTabPageControl14.ResumeLayout(false);
- this.ultraTabPageControl21.ResumeLayout(false);
- this.ultraPanel12.ClientArea.ResumeLayout(false);
- this.ultraPanel12.ClientArea.PerformLayout();
- this.ultraPanel12.ResumeLayout(false);
- this.ultraTabPageControl19.ResumeLayout(false);
- this.ultraPanel11.ClientArea.ResumeLayout(false);
- this.ultraPanel11.ClientArea.PerformLayout();
- this.ultraPanel11.ResumeLayout(false);
- this.ultraTabPageControl22.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.tbOther)).EndInit();
- this.tbOther.ResumeLayout(false);
- this.ultraPanel9.ClientArea.ResumeLayout(false);
- this.ultraPanel9.ClientArea.PerformLayout();
- this.ultraPanel9.ResumeLayout(false);
- this.ultraTabPageControl23.ResumeLayout(false);
- this.ultraPanel10.ClientArea.ResumeLayout(false);
- this.ultraPanel10.ClientArea.PerformLayout();
- this.ultraPanel10.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.uceType)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uceVlid)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.delete)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uteCarNo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uteChangeType)).EndInit();
- this.ultraTabPageControl3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.tbFirstWt)).EndInit();
- this.tbFirstWt.ResumeLayout(false);
- this.ultraPanel5.ClientArea.ResumeLayout(false);
- this.ultraPanel5.ClientArea.PerformLayout();
- this.ultraPanel5.ResumeLayout(false);
- this.ultraTabPageControl4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.tbScondWt)).EndInit();
- this.tbScondWt.ResumeLayout(false);
- this.ultraTabPageControl2.ResumeLayout(false);
- this.ultraTabPageControl2.PerformLayout();
- this.ultraPanel23.ClientArea.ResumeLayout(false);
- this.ultraPanel23.ClientArea.PerformLayout();
- this.ultraPanel23.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ugData)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.QueryBS)).EndInit();
- this.panel1.ResumeLayout(false);
- this.ultraPanel3.ClientArea.ResumeLayout(false);
- this.ultraPanel3.ResumeLayout(false);
- this.ultraPanel3.PerformLayout();
- this.upQueryTop.ClientArea.ResumeLayout(false);
- this.upQueryTop.ClientArea.PerformLayout();
- this.upQueryTop.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.uteJudgeStoveNo)).EndInit();
- this.panel2.ResumeLayout(false);
- this.panel2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.uteReceiveName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uteShippersName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uteOrder)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.utePound)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uteMemo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uceQueryCarType)).EndInit();
- this.ultraPanel7.ClientArea.ResumeLayout(false);
- this.ultraPanel7.ClientArea.PerformLayout();
- this.ultraPanel7.ResumeLayout(false);
- this.ultraTabPageControl1.ResumeLayout(false);
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel1.PerformLayout();
- this.splitContainer1.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
- this.splitContainer1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.uceType2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.uteEdit)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.CurrentGrid)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmmWeightRecordEntityBindingSource)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.tbWt)).EndInit();
- this.tbWt.ResumeLayout(false);
- this.ultraPanel20.ClientArea.ResumeLayout(false);
- this.ultraPanel20.ResumeLayout(false);
- this.ultraPanel4.ClientArea.ResumeLayout(false);
- this.ultraPanel4.ClientArea.PerformLayout();
- this.ultraPanel4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.tbMain)).EndInit();
- this.tbMain.ResumeLayout(false);
- this.ultraPanel1.ClientArea.ResumeLayout(false);
- this.ultraPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.lvTemplate)).EndInit();
- this.ultraPanel2.ClientArea.ResumeLayout(false);
- this.ultraPanel2.ClientArea.PerformLayout();
- this.ultraPanel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
- this.ultraGroupBox2.ResumeLayout(false);
- this.ultraPanel6.ClientArea.ResumeLayout(false);
- this.ultraPanel6.ClientArea.PerformLayout();
- this.ultraPanel6.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl6)).EndInit();
- this.listViewMenuStrip.ResumeLayout(false);
- this.splitContainer2.Panel1.ResumeLayout(false);
- this.splitContainer2.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
- this.splitContainer2.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private Infragistics.Win.UltraWinTabControl.UltraTabControl tbMain;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
- private Infragistics.Win.Misc.UltraPanel ultraPanel1;
- private Infragistics.Win.Misc.UltraPanel ultraPanel2;
- private System.Windows.Forms.Label label2;
- private Infragistics.Win.UltraWinListView.UltraListView lvTemplate;
- private System.Windows.Forms.SplitContainer splitContainer1;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl tbWt;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage2;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl4;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl3;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage3;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private Infragistics.Win.Misc.UltraPanel ultraPanel5;
- private Infragistics.Win.Misc.UltraButton utbSave1;
- private System.Windows.Forms.CheckBox chkGross;
- private Infragistics.Win.Misc.UltraButton utbSaveAsT;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
- private Infragistics.Win.Misc.UltraPanel ultraPanel6;
- private Infragistics.Win.Misc.UltraButton ultraButton5;
- private System.Windows.Forms.CheckBox checkBox2;
- private Infragistics.Win.Misc.UltraButton ultraButton6;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage5;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl5;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl tbScondWt;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage7;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl21;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl22;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl23;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl6;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage6;
- private Infragistics.Win.UltraWinGrid.UltraGrid CurrentGrid;
- private Infragistics.Win.Misc.UltraButton utbConnect;
- private Infragistics.Win.Misc.UltraLabel lblWtNow;
- private Infragistics.Win.Misc.UltraLabel lblWt;
- private Infragistics.Win.Misc.UltraPanel ultraPanel7;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl tbFirstWt;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage4;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl7;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl8;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl9;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl10;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl11;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl12;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl13;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl14;
- private MatInfo matInfo5;
- private MatInfo matInfo6;
- private MatInfo matInfo7;
- private MatInfo matInfo8;
- private MatInfo matInfo3;
- private MatInfo matInfo2;
- private MatInfo matInfo1;
- private MatInfo matInfo4;
- public Infragistics.Win.UltraWinEditors.UltraComboEditor uceType;
- private System.Windows.Forms.ContextMenuStrip listViewMenuStrip;
- private System.Windows.Forms.ToolStripMenuItem deleteTemplate;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl tbOther;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage8;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl5;
- private MatInfo matInfo9;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl6;
- private MatInfo matInfo10;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl15;
- private MatInfo matInfo11;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl16;
- private MatInfo matInfo12;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl17;
- private MatInfo matInfo13;
- private Infragistics.Win.Misc.UltraPanel ultraPanel9;
- private Infragistics.Win.Misc.UltraButton btnSaveAsT2;
- private Infragistics.Win.Misc.UltraButton btnSave2;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl18;
- private MatInfo matInfo14;
- private Infragistics.Win.Misc.UltraPanel ultraPanel10;
- private Infragistics.Win.Misc.UltraButton utbSave3;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl19;
- private MatInfo matInfo16;
- private Infragistics.Win.Misc.UltraPanel ultraPanel12;
- private Infragistics.Win.Misc.UltraButton ultraButton1;
- private MatInfo matInfo15;
- private Infragistics.Win.Misc.UltraPanel ultraPanel11;
- private Infragistics.Win.Misc.UltraButton utbSave4;
- private System.Windows.Forms.DateTimePicker RegEndTime;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.DateTimePicker RegStartTime;
- private System.Windows.Forms.CheckBox chkTim;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor uteCarNo;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Label label8;
- public Infragistics.Win.UltraWinEditors.UltraComboEditor uceQueryCarType;
- private System.Windows.Forms.Label label9;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor uteOrder;
- private System.Windows.Forms.Label label10;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor uteShippersName;
- private System.Windows.Forms.Label label11;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor uteReceiveName;
- private Infragistics.Win.Misc.UltraPanel upQueryTop;
- private Infragistics.Win.Misc.UltraPanel ultraPanel3;
- private System.Windows.Forms.Label label12;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor uteMemo;
- private Infragistics.Win.Misc.UltraPanel ultraPanel23;
- public Infragistics.Win.UltraWinEditors.UltraComboEditor uceVlid;
- private Infragistics.Win.UltraWinGrid.UltraGrid ugData;
- private Infragistics.Win.Misc.UltraButton btnDelete;
- private Infragistics.Win.Misc.UltraButton utbDelete2;
- private Infragistics.Win.Misc.UltraButton utbPrint;
- private Infragistics.Win.Misc.UltraButton utbPrintSingle;
- private System.Windows.Forms.BindingSource QueryBS;
- private System.Windows.Forms.ComboBox cboNo;
- private System.Windows.Forms.BindingSource cmmWeightRecordEntityBindingSource;
- public Infragistics.Win.UltraWinEditors.UltraTextEditor delete;
- private Infragistics.Win.Misc.UltraButton utnUpdate;
- private Infragistics.Win.Misc.UltraPanel ultraPanel20;
- private Infragistics.Win.Misc.UltraButton unExcel;
- private SuggestText txtCar2;
- private System.Windows.Forms.SplitContainer splitContainer2;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl20;
- private MatInfo matInfo17;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl24;
- private MatInfo matInfo18;
- private Infragistics.Win.Misc.UltraButton utbExport;
- private Infragistics.Win.Misc.UltraPanel ultraPanel4;
- private Infragistics.Win.Misc.UltraButton utbExport2;
- private System.Windows.Forms.ComboBox cboPoundList;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.ComboBox cbxCar1;
- private System.Windows.Forms.Label label3;
- public Infragistics.Win.UltraWinEditors.UltraTextEditor uteEdit;
- private System.Windows.Forms.Label label7;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor utePound;
- private System.Windows.Forms.Panel panel2;
- private Infragistics.Win.Misc.UltraButton utnQuery;
- private Infragistics.Win.Misc.UltraButton utbReset;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor uteJudgeStoveNo;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Label lblCount;
- private Infragistics.Win.Misc.UltraButton utbSelect;
- public Infragistics.Win.UltraWinEditors.UltraTextEditor uteChangeType;
- public Infragistics.Win.UltraWinEditors.UltraComboEditor uceType2;
- private Infragistics.Win.Misc.UltraButton utbSave;
- private Infragistics.Win.Misc.UltraButton utbSelect2;
- private Infragistics.Win.Misc.UltraButton btnSetting;
- private System.Windows.Forms.Label lblMsg;
- private System.Windows.Forms.Label lblStatus;
- private Infragistics.Win.Misc.UltraButton ultraButton2;
- }
- }
|