frmLocalTruckScaleNew.Designer.cs 280 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569
  1. using Core.StlMes.Client.LgResMgt.Mcms.entity;
  2. namespace Core.StlMes.Client.LgResMgt.Mcms
  3. {
  4. partial class frmLocalTruckScaleNew
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  31. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLocalTruckScaleNew));
  32. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  33. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  34. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab13 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  35. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab28 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  36. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  37. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab29 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  38. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab30 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  39. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab31 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  40. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab32 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  41. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab7 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  42. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  43. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  44. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab14 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  45. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  46. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab15 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  47. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab16 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  48. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab17 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  49. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab18 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  50. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab19 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  51. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab20 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  52. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab21 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  53. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab35 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  54. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  55. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  56. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  57. Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
  58. Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
  59. Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
  60. Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
  61. Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
  62. Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
  63. Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
  64. Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
  65. Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
  66. Infragistics.Win.ValueListItem valueListItem30 = new Infragistics.Win.ValueListItem();
  67. Infragistics.Win.ValueListItem valueListItem31 = new Infragistics.Win.ValueListItem();
  68. Infragistics.Win.ValueListItem valueListItem32 = new Infragistics.Win.ValueListItem();
  69. Infragistics.Win.ValueListItem valueListItem33 = new Infragistics.Win.ValueListItem();
  70. Infragistics.Win.ValueListItem valueListItem34 = new Infragistics.Win.ValueListItem();
  71. Infragistics.Win.ValueListItem valueListItem35 = new Infragistics.Win.ValueListItem();
  72. Infragistics.Win.ValueListItem valueListItem36 = new Infragistics.Win.ValueListItem();
  73. Infragistics.Win.ValueListItem valueListItem37 = new Infragistics.Win.ValueListItem();
  74. Infragistics.Win.ValueListItem valueListItem38 = new Infragistics.Win.ValueListItem();
  75. Infragistics.Win.ValueListItem valueListItem63 = new Infragistics.Win.ValueListItem();
  76. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  77. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  78. Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  79. Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  80. Infragistics.Win.UltraWinEditors.EditorButton editorButton3 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  81. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab8 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  82. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab9 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  83. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab10 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  84. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab11 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  85. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab12 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  86. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab23 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  87. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab24 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  88. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab33 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  89. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab34 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  90. Infragistics.Win.ValueListItem valueListItem39 = new Infragistics.Win.ValueListItem();
  91. Infragistics.Win.ValueListItem valueListItem40 = new Infragistics.Win.ValueListItem();
  92. Infragistics.Win.ValueListItem valueListItem41 = new Infragistics.Win.ValueListItem();
  93. Infragistics.Win.ValueListItem valueListItem42 = new Infragistics.Win.ValueListItem();
  94. Infragistics.Win.ValueListItem valueListItem43 = new Infragistics.Win.ValueListItem();
  95. Infragistics.Win.ValueListItem valueListItem44 = new Infragistics.Win.ValueListItem();
  96. Infragistics.Win.ValueListItem valueListItem45 = new Infragistics.Win.ValueListItem();
  97. Infragistics.Win.ValueListItem valueListItem46 = new Infragistics.Win.ValueListItem();
  98. Infragistics.Win.ValueListItem valueListItem47 = new Infragistics.Win.ValueListItem();
  99. Infragistics.Win.ValueListItem valueListItem49 = new Infragistics.Win.ValueListItem();
  100. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  101. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  102. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  103. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  104. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab25 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  105. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab22 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  106. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab26 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  107. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab27 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  108. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("CmmWeightResultEntity", -1);
  109. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ResultNo");
  110. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordNo1");
  111. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordNo2");
  112. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Recoder1");
  113. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Recoder2");
  114. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordType1");
  115. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordType2");
  116. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TareWt");
  117. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GrossWt");
  118. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("NetWt");
  119. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordDate1");
  120. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordDate2");
  121. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MatName");
  122. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MatType");
  123. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LoadvehicleNo");
  124. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReceiveName");
  125. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderName");
  126. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ShippersName");
  127. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TransportName");
  128. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Memo");
  129. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteDate");
  130. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteUser");
  131. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecoderLocation1");
  132. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecoderLocation2");
  133. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Validflag");
  134. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RealWt");
  135. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CarNo");
  136. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MatNum");
  137. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ActDimater");
  138. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SpecName");
  139. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Steelname");
  140. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Gradename");
  141. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Producname");
  142. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ProOrderNo");
  143. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JudgeStoveNo");
  144. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("StorageFlag");
  145. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("StorageDate");
  146. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("StorageUser");
  147. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderFull");
  148. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordWeight2");
  149. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordWeight1");
  150. Infragistics.Win.UltraWinGrid.RowLayout rowLayout1 = new Infragistics.Win.UltraWinGrid.RowLayout("1");
  151. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo1 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ResultNo", -1, Infragistics.Win.DefaultableBoolean.Default);
  152. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo2 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordNo1", -1, Infragistics.Win.DefaultableBoolean.Default);
  153. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo3 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordNo2", -1, Infragistics.Win.DefaultableBoolean.Default);
  154. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo4 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Recoder1", -1, Infragistics.Win.DefaultableBoolean.Default);
  155. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo5 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Recoder2", -1, Infragistics.Win.DefaultableBoolean.Default);
  156. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo6 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordType1", -1, Infragistics.Win.DefaultableBoolean.Default);
  157. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo7 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordType2", -1, Infragistics.Win.DefaultableBoolean.Default);
  158. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo8 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "TareWt", -1, Infragistics.Win.DefaultableBoolean.Default);
  159. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo9 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "GrossWt", -1, Infragistics.Win.DefaultableBoolean.Default);
  160. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo10 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "NetWt", -1, Infragistics.Win.DefaultableBoolean.Default);
  161. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo11 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordDate1", -1, Infragistics.Win.DefaultableBoolean.Default);
  162. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo12 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordDate2", -1, Infragistics.Win.DefaultableBoolean.Default);
  163. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo13 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "MatName", -1, Infragistics.Win.DefaultableBoolean.Default);
  164. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo14 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "MatType", -1, Infragistics.Win.DefaultableBoolean.Default);
  165. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo15 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "LoadvehicleNo", -1, Infragistics.Win.DefaultableBoolean.Default);
  166. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo16 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ReceiveName", -1, Infragistics.Win.DefaultableBoolean.Default);
  167. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo17 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "OrderName", -1, Infragistics.Win.DefaultableBoolean.Default);
  168. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo18 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ShippersName", -1, Infragistics.Win.DefaultableBoolean.Default);
  169. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo19 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "TransportName", -1, Infragistics.Win.DefaultableBoolean.Default);
  170. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo20 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Memo", -1, Infragistics.Win.DefaultableBoolean.Default);
  171. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo21 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "DeleteDate", -1, Infragistics.Win.DefaultableBoolean.Default);
  172. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo22 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "DeleteUser", -1, Infragistics.Win.DefaultableBoolean.Default);
  173. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo23 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecoderLocation1", -1, Infragistics.Win.DefaultableBoolean.Default);
  174. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo24 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecoderLocation2", -1, Infragistics.Win.DefaultableBoolean.Default);
  175. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo25 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Validflag", -1, Infragistics.Win.DefaultableBoolean.Default);
  176. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo26 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RealWt", -1, Infragistics.Win.DefaultableBoolean.Default);
  177. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo27 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "CarNo", -1, Infragistics.Win.DefaultableBoolean.Default);
  178. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo28 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "MatNum", -1, Infragistics.Win.DefaultableBoolean.Default);
  179. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo29 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ActDimater", -1, Infragistics.Win.DefaultableBoolean.Default);
  180. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo30 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "SpecName", -1, Infragistics.Win.DefaultableBoolean.Default);
  181. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo31 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Steelname", -1, Infragistics.Win.DefaultableBoolean.Default);
  182. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo32 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Gradename", -1, Infragistics.Win.DefaultableBoolean.Default);
  183. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo33 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Producname", -1, Infragistics.Win.DefaultableBoolean.Default);
  184. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo34 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ProOrderNo", -1, Infragistics.Win.DefaultableBoolean.Default);
  185. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo35 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "JudgeStoveNo", -1, Infragistics.Win.DefaultableBoolean.Default);
  186. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo36 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "StorageFlag", -1, Infragistics.Win.DefaultableBoolean.Default);
  187. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo37 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "StorageDate", -1, Infragistics.Win.DefaultableBoolean.Default);
  188. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo38 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "StorageUser", -1, Infragistics.Win.DefaultableBoolean.Default);
  189. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo39 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "OrderFull", -1, Infragistics.Win.DefaultableBoolean.Default);
  190. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo40 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordWeight2", -1, Infragistics.Win.DefaultableBoolean.Default);
  191. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo41 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordWeight1", -1, Infragistics.Win.DefaultableBoolean.Default);
  192. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  193. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  194. Infragistics.Win.ValueListItem valueListItem50 = new Infragistics.Win.ValueListItem();
  195. Infragistics.Win.ValueListItem valueListItem51 = new Infragistics.Win.ValueListItem();
  196. Infragistics.Win.ValueListItem valueListItem52 = new Infragistics.Win.ValueListItem();
  197. Infragistics.Win.ValueListItem valueListItem53 = new Infragistics.Win.ValueListItem();
  198. Infragistics.Win.ValueListItem valueListItem54 = new Infragistics.Win.ValueListItem();
  199. Infragistics.Win.ValueListItem valueListItem55 = new Infragistics.Win.ValueListItem();
  200. Infragistics.Win.ValueListItem valueListItem56 = new Infragistics.Win.ValueListItem();
  201. Infragistics.Win.ValueListItem valueListItem57 = new Infragistics.Win.ValueListItem();
  202. Infragistics.Win.ValueListItem valueListItem58 = new Infragistics.Win.ValueListItem();
  203. Infragistics.Win.ValueListItem valueListItem59 = new Infragistics.Win.ValueListItem();
  204. Infragistics.Win.ValueListItem valueListItem60 = new Infragistics.Win.ValueListItem();
  205. Infragistics.Win.ValueListItem valueListItem61 = new Infragistics.Win.ValueListItem();
  206. Infragistics.Win.ValueListItem valueListItem62 = new Infragistics.Win.ValueListItem();
  207. Infragistics.Win.ValueListItem valueListItem66 = new Infragistics.Win.ValueListItem();
  208. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  209. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  210. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  211. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  212. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  213. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  214. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  215. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  216. Infragistics.Win.UltraWinEditors.EditorButton editorButton4 = new Infragistics.Win.UltraWinEditors.EditorButton();
  217. Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
  218. Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
  219. Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
  220. Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
  221. Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
  222. Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
  223. Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
  224. Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
  225. Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
  226. Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
  227. Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
  228. Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
  229. Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
  230. Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
  231. Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
  232. Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
  233. Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
  234. Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
  235. Infragistics.Win.ValueListItem valueListItem48 = new Infragistics.Win.ValueListItem();
  236. Infragistics.Win.ValueListItem valueListItem64 = new Infragistics.Win.ValueListItem();
  237. Infragistics.Win.ValueListItem valueListItem65 = new Infragistics.Win.ValueListItem();
  238. Infragistics.Win.UltraWinEditors.EditorButton editorButton5 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  239. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("CmmWeightRecordEntity", -1);
  240. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordNo");
  241. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordDate");
  242. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Recoder");
  243. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CarNo");
  244. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordType");
  245. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordWeight");
  246. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordNumber");
  247. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Validflag");
  248. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MatName");
  249. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MatType");
  250. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LoadvehicleNo");
  251. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReceiveName");
  252. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderName");
  253. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ShippersName");
  254. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TransportName");
  255. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteDate");
  256. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteUser");
  257. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Memo");
  258. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WtType");
  259. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecoderLocation");
  260. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RealWt");
  261. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EffRemaind");
  262. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("firstGross");
  263. Infragistics.Win.UltraWinGrid.RowLayout rowLayout2 = new Infragistics.Win.UltraWinGrid.RowLayout("1");
  264. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo42 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordNo", -1, Infragistics.Win.DefaultableBoolean.Default);
  265. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo43 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordDate", -1, Infragistics.Win.DefaultableBoolean.Default);
  266. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo44 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Recoder", -1, Infragistics.Win.DefaultableBoolean.Default);
  267. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo45 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "CarNo", -1, Infragistics.Win.DefaultableBoolean.Default);
  268. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo46 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordType", -1, Infragistics.Win.DefaultableBoolean.Default);
  269. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo47 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordWeight", -1, Infragistics.Win.DefaultableBoolean.Default);
  270. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo48 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordNumber", -1, Infragistics.Win.DefaultableBoolean.Default);
  271. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo49 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Validflag", -1, Infragistics.Win.DefaultableBoolean.Default);
  272. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo50 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "MatName", -1, Infragistics.Win.DefaultableBoolean.Default);
  273. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo51 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "MatType", -1, Infragistics.Win.DefaultableBoolean.Default);
  274. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo52 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "LoadvehicleNo", -1, Infragistics.Win.DefaultableBoolean.Default);
  275. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo53 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ReceiveName", -1, Infragistics.Win.DefaultableBoolean.Default);
  276. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo54 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "OrderName", -1, Infragistics.Win.DefaultableBoolean.Default);
  277. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo55 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ShippersName", -1, Infragistics.Win.DefaultableBoolean.Default);
  278. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo56 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "TransportName", -1, Infragistics.Win.DefaultableBoolean.Default);
  279. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo57 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "DeleteDate", -1, Infragistics.Win.DefaultableBoolean.Default);
  280. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo58 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "DeleteUser", -1, Infragistics.Win.DefaultableBoolean.Default);
  281. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo59 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Memo", -1, Infragistics.Win.DefaultableBoolean.Default);
  282. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo60 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "WtType", -1, Infragistics.Win.DefaultableBoolean.Default);
  283. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo61 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecoderLocation", -1, Infragistics.Win.DefaultableBoolean.Default);
  284. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo62 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RealWt", -1, Infragistics.Win.DefaultableBoolean.Default);
  285. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo63 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "EffRemaind", -1, Infragistics.Win.DefaultableBoolean.Default);
  286. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo64 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "firstGross", -1, Infragistics.Win.DefaultableBoolean.Default);
  287. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  288. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab5 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  289. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab6 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  290. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  291. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  292. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab4 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  293. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  294. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  295. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  296. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  297. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  298. this.ultraTabPageControl18 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  299. this.ultraTabPageControl5 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  300. this.ultraTabPageControl24 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  301. this.ultraTabPageControl6 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  302. this.ultraTabPageControl15 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  303. this.ultraTabPageControl16 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  304. this.ultraTabPageControl17 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  305. this.ultraTabPageControl35 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  306. this.ultraTabPageControl26 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  307. this.ultraTabPageControl34 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  308. this.ultraTabPageControl27 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  309. this.ultraTabPageControl28 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  310. this.ultraTabPageControl29 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  311. this.ultraTabPageControl30 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  312. this.ultraTabPageControl31 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  313. this.ultraTabPageControl32 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  314. this.ultraTabPageControl33 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  315. this.ultraTabPageControl25 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  316. this.ultraTabPageControl7 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  317. this.ultraTabPageControl20 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  318. this.ultraTabPageControl8 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  319. this.ultraTabPageControl9 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  320. this.ultraTabPageControl10 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  321. this.ultraTabPageControl11 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  322. this.ultraTabPageControl12 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  323. this.ultraTabPageControl13 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  324. this.ultraTabPageControl14 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  325. this.ultraTabPageControl21 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  326. this.ultraPanel12 = new Infragistics.Win.Misc.UltraPanel();
  327. this.utbSave = new Infragistics.Win.Misc.UltraButton();
  328. this.ultraButton1 = new Infragistics.Win.Misc.UltraButton();
  329. this.ultraTabPageControl19 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  330. this.ultraPanel11 = new Infragistics.Win.Misc.UltraPanel();
  331. this.utbSave4 = new Infragistics.Win.Misc.UltraButton();
  332. this.ultraTabPageControl22 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  333. this.tbOther = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  334. this.ultraTabSharedControlsPage8 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  335. this.ultraPanel9 = new Infragistics.Win.Misc.UltraPanel();
  336. this.tb_order = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  337. this.lb_order = new System.Windows.Forms.Label();
  338. this.CX_HTH = new System.Windows.Forms.Label();
  339. this.CX_HT = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  340. this.btnSaveAsT2 = new Infragistics.Win.Misc.UltraButton();
  341. this.btnSave2 = new Infragistics.Win.Misc.UltraButton();
  342. this.ultraTabPageControl23 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  343. this.ultraPanel10 = new Infragistics.Win.Misc.UltraPanel();
  344. this.ultraPanel13 = new Infragistics.Win.Misc.UltraPanel();
  345. this.qitahuipi = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  346. this.ultraTabSharedControlsPage9 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  347. this.ultraPanel8 = new Infragistics.Win.Misc.UltraPanel();
  348. this.utbSaveAsT2 = new Infragistics.Win.Misc.UltraButton();
  349. this.ultraButton2 = new Infragistics.Win.Misc.UltraButton();
  350. this.checkBox3 = new System.Windows.Forms.CheckBox();
  351. this.utbSave3 = new Infragistics.Win.Misc.UltraButton();
  352. this.uceType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  353. this.uceVlid = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  354. this.delete = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  355. this.uteChangeType = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  356. this.uctMemo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  357. this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  358. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  359. this.tbFirstWt = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  360. this.ultraTabSharedControlsPage4 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  361. this.ultraPanel5 = new Infragistics.Win.Misc.UltraPanel();
  362. this.checkBox1 = new System.Windows.Forms.CheckBox();
  363. this.recordType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  364. this.chkSteelCar = new System.Windows.Forms.CheckBox();
  365. this.utbSelect2 = new Infragistics.Win.Misc.UltraButton();
  366. this.utbSelect = new Infragistics.Win.Misc.UltraButton();
  367. this.utbSaveAsT = new Infragistics.Win.Misc.UltraButton();
  368. this.chkGross = new System.Windows.Forms.CheckBox();
  369. this.utbSave1 = new Infragistics.Win.Misc.UltraButton();
  370. this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  371. this.tbScondWt = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  372. this.ultraTabSharedControlsPage7 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  373. this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  374. this.ultraPanel23 = new Infragistics.Win.Misc.UltraPanel();
  375. this.ugData = new Infragistics.Win.UltraWinGrid.UltraGrid();
  376. this.panel1 = new System.Windows.Forms.Panel();
  377. this.lblCount = new System.Windows.Forms.Label();
  378. this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
  379. this.upQueryTop = new Infragistics.Win.Misc.UltraPanel();
  380. this.utbReset = new Infragistics.Win.Misc.UltraButton();
  381. this.utnQuery = new Infragistics.Win.Misc.UltraButton();
  382. this.uteJudgeStoveNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  383. this.label14 = new System.Windows.Forms.Label();
  384. this.uteReceiveName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  385. this.label11 = new System.Windows.Forms.Label();
  386. this.uteShippersName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  387. this.label10 = new System.Windows.Forms.Label();
  388. this.uteOrder = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  389. this.label9 = new System.Windows.Forms.Label();
  390. this.utePound = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  391. this.label7 = new System.Windows.Forms.Label();
  392. this.uteMemo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  393. this.label12 = new System.Windows.Forms.Label();
  394. this.uceQueryCarType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  395. this.uteCarNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  396. this.label8 = new System.Windows.Forms.Label();
  397. this.label6 = new System.Windows.Forms.Label();
  398. this.RegEndTime = new System.Windows.Forms.DateTimePicker();
  399. this.chkTim = new System.Windows.Forms.CheckBox();
  400. this.label4 = new System.Windows.Forms.Label();
  401. this.RegStartTime = new System.Windows.Forms.DateTimePicker();
  402. this.ultraPanel7 = new Infragistics.Win.Misc.UltraPanel();
  403. this.ultraButton3 = new Infragistics.Win.Misc.UltraButton();
  404. this.utbExport = new Infragistics.Win.Misc.UltraButton();
  405. this.unExcel = new Infragistics.Win.Misc.UltraButton();
  406. this.utnUpdate = new Infragistics.Win.Misc.UltraButton();
  407. this.utbPrint = new Infragistics.Win.Misc.UltraButton();
  408. this.utbPrintSingle = new Infragistics.Win.Misc.UltraButton();
  409. this.btnDelete = new Infragistics.Win.Misc.UltraButton();
  410. this.utbDelete2 = new Infragistics.Win.Misc.UltraButton();
  411. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  412. this.plImgShow = new System.Windows.Forms.Panel();
  413. this.pictureShow = new System.Windows.Forms.PictureBox();
  414. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  415. this.uceType2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  416. this.uteEdit = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  417. this.CurrentGrid = new Infragistics.Win.UltraWinGrid.UltraGrid();
  418. this.tbWt = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  419. this.ultraTabSharedControlsPage2 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  420. this.ultraPanel20 = new Infragistics.Win.Misc.UltraPanel();
  421. this.comboCount = new System.Windows.Forms.ComboBox();
  422. this.label1 = new System.Windows.Forms.Label();
  423. this.cmbVioce = new System.Windows.Forms.ComboBox();
  424. this.btnPlay = new System.Windows.Forms.Button();
  425. this.button4 = new System.Windows.Forms.Button();
  426. this.button3 = new System.Windows.Forms.Button();
  427. this.button2 = new System.Windows.Forms.Button();
  428. this.button1 = new System.Windows.Forms.Button();
  429. this.cboPoundList = new System.Windows.Forms.ComboBox();
  430. this.label13 = new System.Windows.Forms.Label();
  431. this.cbxCar1 = new System.Windows.Forms.ComboBox();
  432. this.label3 = new System.Windows.Forms.Label();
  433. this.utbExport2 = new Infragistics.Win.Misc.UltraButton();
  434. this.lblWt = new Infragistics.Win.Misc.UltraLabel();
  435. this.tbMain = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  436. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  437. this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
  438. this.panel4 = new System.Windows.Forms.Panel();
  439. this.panel5 = new System.Windows.Forms.Panel();
  440. this.lvTemplate = new Infragistics.Win.UltraWinListView.UltraListView();
  441. this.lblWtNow = new Infragistics.Win.Misc.UltraLabel();
  442. this.ultraPanel21 = new Core.Mes.Client.Comm.Control.UltraPanel2();
  443. this.btnA = new System.Windows.Forms.Button();
  444. this.btnC = new System.Windows.Forms.Button();
  445. this.btnB = new System.Windows.Forms.Button();
  446. this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
  447. this.btn = new System.Windows.Forms.Button();
  448. this.lblStatus = new System.Windows.Forms.Label();
  449. this.lblMsg = new System.Windows.Forms.Label();
  450. this.utbConnect = new Infragistics.Win.Misc.UltraButton();
  451. this.ultraTabControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  452. this.ultraTabSharedControlsPage3 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  453. this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
  454. this.ultraPanel6 = new Infragistics.Win.Misc.UltraPanel();
  455. this.ultraButton5 = new Infragistics.Win.Misc.UltraButton();
  456. this.checkBox2 = new System.Windows.Forms.CheckBox();
  457. this.ultraButton6 = new Infragistics.Win.Misc.UltraButton();
  458. this.ultraTabSharedControlsPage5 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  459. this.ultraTabControl5 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  460. this.ultraTabControl6 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  461. this.ultraTabSharedControlsPage6 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  462. this.listViewMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
  463. this.deleteTemplate = new System.Windows.Forms.ToolStripMenuItem();
  464. this.splitContainer2 = new System.Windows.Forms.SplitContainer();
  465. this.panel3 = new System.Windows.Forms.Panel();
  466. this.PicPnl = new System.Windows.Forms.Panel();
  467. this.panel2 = new System.Windows.Forms.Panel();
  468. this.timer2 = new System.Windows.Forms.Timer(this.components);
  469. this.timer1 = new System.Windows.Forms.Timer(this.components);
  470. this.cmmWeightRecordEntityBindingSource = new System.Windows.Forms.BindingSource(this.components);
  471. this.matInfo3 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  472. this.matInfo2 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  473. this.matInfo1 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  474. this.matInfo4 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  475. this.matInfo5 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  476. this.matInfo6 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  477. this.matInfo7 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  478. this.matInfo8 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  479. this.matInfo17 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  480. this.matInfo16 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  481. this.matInfo9 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  482. this.matInfo10 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  483. this.matInfo11 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  484. this.matInfo12 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  485. this.matInfo13 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  486. this.matInfo14 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  487. this.matInfo18 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  488. this.matInfo29 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  489. this.matInfo20 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  490. this.matInfo21 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  491. this.matInfo22 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  492. this.matInfo23 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  493. this.matInfo24 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  494. this.matInfo25 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  495. this.matInfo26 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  496. this.matInfo27 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  497. this.matInfo28 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  498. this.matInfo19 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  499. this.matInfo15 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  500. this.txtCar2 = new Core.StlMes.Client.LgResMgt.Mcms.SuggestText();
  501. this.QueryBS = new System.Windows.Forms.BindingSource(this.components);
  502. this.ultraTabPageControl18.SuspendLayout();
  503. this.ultraTabPageControl5.SuspendLayout();
  504. this.ultraTabPageControl24.SuspendLayout();
  505. this.ultraTabPageControl6.SuspendLayout();
  506. this.ultraTabPageControl15.SuspendLayout();
  507. this.ultraTabPageControl16.SuspendLayout();
  508. this.ultraTabPageControl17.SuspendLayout();
  509. this.ultraTabPageControl35.SuspendLayout();
  510. this.ultraTabPageControl26.SuspendLayout();
  511. this.ultraTabPageControl34.SuspendLayout();
  512. this.ultraTabPageControl27.SuspendLayout();
  513. this.ultraTabPageControl28.SuspendLayout();
  514. this.ultraTabPageControl29.SuspendLayout();
  515. this.ultraTabPageControl30.SuspendLayout();
  516. this.ultraTabPageControl31.SuspendLayout();
  517. this.ultraTabPageControl32.SuspendLayout();
  518. this.ultraTabPageControl33.SuspendLayout();
  519. this.ultraTabPageControl25.SuspendLayout();
  520. this.ultraTabPageControl7.SuspendLayout();
  521. this.ultraTabPageControl20.SuspendLayout();
  522. this.ultraTabPageControl8.SuspendLayout();
  523. this.ultraTabPageControl9.SuspendLayout();
  524. this.ultraTabPageControl10.SuspendLayout();
  525. this.ultraTabPageControl11.SuspendLayout();
  526. this.ultraTabPageControl12.SuspendLayout();
  527. this.ultraTabPageControl13.SuspendLayout();
  528. this.ultraTabPageControl14.SuspendLayout();
  529. this.ultraTabPageControl21.SuspendLayout();
  530. this.ultraPanel12.ClientArea.SuspendLayout();
  531. this.ultraPanel12.SuspendLayout();
  532. this.ultraTabPageControl19.SuspendLayout();
  533. this.ultraPanel11.ClientArea.SuspendLayout();
  534. this.ultraPanel11.SuspendLayout();
  535. this.ultraTabPageControl22.SuspendLayout();
  536. ((System.ComponentModel.ISupportInitialize)(this.tbOther)).BeginInit();
  537. this.tbOther.SuspendLayout();
  538. this.ultraPanel9.ClientArea.SuspendLayout();
  539. this.ultraPanel9.SuspendLayout();
  540. ((System.ComponentModel.ISupportInitialize)(this.tb_order)).BeginInit();
  541. ((System.ComponentModel.ISupportInitialize)(this.CX_HT)).BeginInit();
  542. this.ultraTabPageControl23.SuspendLayout();
  543. this.ultraPanel10.ClientArea.SuspendLayout();
  544. this.ultraPanel10.SuspendLayout();
  545. this.ultraPanel13.ClientArea.SuspendLayout();
  546. this.ultraPanel13.SuspendLayout();
  547. ((System.ComponentModel.ISupportInitialize)(this.qitahuipi)).BeginInit();
  548. this.qitahuipi.SuspendLayout();
  549. this.ultraPanel8.ClientArea.SuspendLayout();
  550. this.ultraPanel8.SuspendLayout();
  551. ((System.ComponentModel.ISupportInitialize)(this.uceType)).BeginInit();
  552. ((System.ComponentModel.ISupportInitialize)(this.uceVlid)).BeginInit();
  553. ((System.ComponentModel.ISupportInitialize)(this.delete)).BeginInit();
  554. ((System.ComponentModel.ISupportInitialize)(this.uteChangeType)).BeginInit();
  555. ((System.ComponentModel.ISupportInitialize)(this.uctMemo)).BeginInit();
  556. this.ultraTabPageControl3.SuspendLayout();
  557. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  558. this.ultraGroupBox1.SuspendLayout();
  559. ((System.ComponentModel.ISupportInitialize)(this.tbFirstWt)).BeginInit();
  560. this.tbFirstWt.SuspendLayout();
  561. this.ultraPanel5.ClientArea.SuspendLayout();
  562. this.ultraPanel5.SuspendLayout();
  563. ((System.ComponentModel.ISupportInitialize)(this.recordType)).BeginInit();
  564. this.ultraTabPageControl4.SuspendLayout();
  565. ((System.ComponentModel.ISupportInitialize)(this.tbScondWt)).BeginInit();
  566. this.tbScondWt.SuspendLayout();
  567. this.ultraTabPageControl2.SuspendLayout();
  568. this.ultraPanel23.ClientArea.SuspendLayout();
  569. this.ultraPanel23.SuspendLayout();
  570. ((System.ComponentModel.ISupportInitialize)(this.ugData)).BeginInit();
  571. this.panel1.SuspendLayout();
  572. this.ultraPanel3.ClientArea.SuspendLayout();
  573. this.ultraPanel3.SuspendLayout();
  574. this.upQueryTop.ClientArea.SuspendLayout();
  575. this.upQueryTop.SuspendLayout();
  576. ((System.ComponentModel.ISupportInitialize)(this.uteJudgeStoveNo)).BeginInit();
  577. ((System.ComponentModel.ISupportInitialize)(this.uteReceiveName)).BeginInit();
  578. ((System.ComponentModel.ISupportInitialize)(this.uteShippersName)).BeginInit();
  579. ((System.ComponentModel.ISupportInitialize)(this.uteOrder)).BeginInit();
  580. ((System.ComponentModel.ISupportInitialize)(this.utePound)).BeginInit();
  581. ((System.ComponentModel.ISupportInitialize)(this.uteMemo)).BeginInit();
  582. ((System.ComponentModel.ISupportInitialize)(this.uceQueryCarType)).BeginInit();
  583. ((System.ComponentModel.ISupportInitialize)(this.uteCarNo)).BeginInit();
  584. this.ultraPanel7.ClientArea.SuspendLayout();
  585. this.ultraPanel7.SuspendLayout();
  586. this.ultraTabPageControl1.SuspendLayout();
  587. this.plImgShow.SuspendLayout();
  588. ((System.ComponentModel.ISupportInitialize)(this.pictureShow)).BeginInit();
  589. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  590. this.splitContainer1.Panel1.SuspendLayout();
  591. this.splitContainer1.Panel2.SuspendLayout();
  592. this.splitContainer1.SuspendLayout();
  593. ((System.ComponentModel.ISupportInitialize)(this.uceType2)).BeginInit();
  594. ((System.ComponentModel.ISupportInitialize)(this.uteEdit)).BeginInit();
  595. ((System.ComponentModel.ISupportInitialize)(this.CurrentGrid)).BeginInit();
  596. ((System.ComponentModel.ISupportInitialize)(this.tbWt)).BeginInit();
  597. this.tbWt.SuspendLayout();
  598. this.ultraPanel20.ClientArea.SuspendLayout();
  599. this.ultraPanel20.SuspendLayout();
  600. ((System.ComponentModel.ISupportInitialize)(this.tbMain)).BeginInit();
  601. this.tbMain.SuspendLayout();
  602. this.ultraPanel1.ClientArea.SuspendLayout();
  603. this.ultraPanel1.SuspendLayout();
  604. this.panel4.SuspendLayout();
  605. this.panel5.SuspendLayout();
  606. ((System.ComponentModel.ISupportInitialize)(this.lvTemplate)).BeginInit();
  607. this.ultraPanel21.ClientArea.SuspendLayout();
  608. this.ultraPanel21.SuspendLayout();
  609. this.ultraPanel2.ClientArea.SuspendLayout();
  610. this.ultraPanel2.SuspendLayout();
  611. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl3)).BeginInit();
  612. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
  613. this.ultraGroupBox2.SuspendLayout();
  614. this.ultraPanel6.ClientArea.SuspendLayout();
  615. this.ultraPanel6.SuspendLayout();
  616. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl5)).BeginInit();
  617. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl6)).BeginInit();
  618. this.listViewMenuStrip.SuspendLayout();
  619. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
  620. this.splitContainer2.Panel1.SuspendLayout();
  621. this.splitContainer2.Panel2.SuspendLayout();
  622. this.splitContainer2.SuspendLayout();
  623. this.panel3.SuspendLayout();
  624. ((System.ComponentModel.ISupportInitialize)(this.cmmWeightRecordEntityBindingSource)).BeginInit();
  625. ((System.ComponentModel.ISupportInitialize)(this.QueryBS)).BeginInit();
  626. this.SuspendLayout();
  627. //
  628. // ultraTabPageControl18
  629. //
  630. this.ultraTabPageControl18.Controls.Add(this.matInfo14);
  631. this.ultraTabPageControl18.Location = new System.Drawing.Point(1, 26);
  632. this.ultraTabPageControl18.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  633. this.ultraTabPageControl18.Name = "ultraTabPageControl18";
  634. this.ultraTabPageControl18.Size = new System.Drawing.Size(832, 129);
  635. //
  636. // ultraTabPageControl5
  637. //
  638. this.ultraTabPageControl5.Controls.Add(this.matInfo9);
  639. this.ultraTabPageControl5.Location = new System.Drawing.Point(-10000, -10000);
  640. this.ultraTabPageControl5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  641. this.ultraTabPageControl5.Name = "ultraTabPageControl5";
  642. this.ultraTabPageControl5.Size = new System.Drawing.Size(832, 129);
  643. //
  644. // ultraTabPageControl24
  645. //
  646. this.ultraTabPageControl24.Controls.Add(this.matInfo18);
  647. this.ultraTabPageControl24.Location = new System.Drawing.Point(-10000, -10000);
  648. this.ultraTabPageControl24.Name = "ultraTabPageControl24";
  649. this.ultraTabPageControl24.Size = new System.Drawing.Size(832, 129);
  650. //
  651. // ultraTabPageControl6
  652. //
  653. this.ultraTabPageControl6.Controls.Add(this.matInfo10);
  654. this.ultraTabPageControl6.Location = new System.Drawing.Point(-10000, -10000);
  655. this.ultraTabPageControl6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  656. this.ultraTabPageControl6.Name = "ultraTabPageControl6";
  657. this.ultraTabPageControl6.Size = new System.Drawing.Size(832, 129);
  658. //
  659. // ultraTabPageControl15
  660. //
  661. this.ultraTabPageControl15.Controls.Add(this.matInfo11);
  662. this.ultraTabPageControl15.Location = new System.Drawing.Point(-10000, -10000);
  663. this.ultraTabPageControl15.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  664. this.ultraTabPageControl15.Name = "ultraTabPageControl15";
  665. this.ultraTabPageControl15.Size = new System.Drawing.Size(832, 129);
  666. //
  667. // ultraTabPageControl16
  668. //
  669. this.ultraTabPageControl16.Controls.Add(this.matInfo12);
  670. this.ultraTabPageControl16.Location = new System.Drawing.Point(-10000, -10000);
  671. this.ultraTabPageControl16.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  672. this.ultraTabPageControl16.Name = "ultraTabPageControl16";
  673. this.ultraTabPageControl16.Size = new System.Drawing.Size(832, 129);
  674. //
  675. // ultraTabPageControl17
  676. //
  677. this.ultraTabPageControl17.Controls.Add(this.matInfo13);
  678. this.ultraTabPageControl17.Location = new System.Drawing.Point(-10000, -10000);
  679. this.ultraTabPageControl17.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  680. this.ultraTabPageControl17.Name = "ultraTabPageControl17";
  681. this.ultraTabPageControl17.Size = new System.Drawing.Size(832, 129);
  682. //
  683. // ultraTabPageControl35
  684. //
  685. this.ultraTabPageControl35.Controls.Add(this.matInfo29);
  686. this.ultraTabPageControl35.Location = new System.Drawing.Point(-10000, -10000);
  687. this.ultraTabPageControl35.Name = "ultraTabPageControl35";
  688. this.ultraTabPageControl35.Size = new System.Drawing.Size(832, 129);
  689. //
  690. // ultraTabPageControl26
  691. //
  692. this.ultraTabPageControl26.Controls.Add(this.matInfo20);
  693. this.ultraTabPageControl26.Location = new System.Drawing.Point(1, 26);
  694. this.ultraTabPageControl26.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  695. this.ultraTabPageControl26.Name = "ultraTabPageControl26";
  696. this.ultraTabPageControl26.Size = new System.Drawing.Size(832, 104);
  697. //
  698. // ultraTabPageControl34
  699. //
  700. this.ultraTabPageControl34.Controls.Add(this.matInfo28);
  701. this.ultraTabPageControl34.Location = new System.Drawing.Point(-10000, -10000);
  702. this.ultraTabPageControl34.Name = "ultraTabPageControl34";
  703. this.ultraTabPageControl34.Size = new System.Drawing.Size(832, 104);
  704. //
  705. // ultraTabPageControl27
  706. //
  707. this.ultraTabPageControl27.Controls.Add(this.matInfo21);
  708. this.ultraTabPageControl27.Location = new System.Drawing.Point(-10000, -10000);
  709. this.ultraTabPageControl27.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  710. this.ultraTabPageControl27.Name = "ultraTabPageControl27";
  711. this.ultraTabPageControl27.Size = new System.Drawing.Size(832, 104);
  712. //
  713. // ultraTabPageControl28
  714. //
  715. this.ultraTabPageControl28.Controls.Add(this.matInfo22);
  716. this.ultraTabPageControl28.Location = new System.Drawing.Point(-10000, -10000);
  717. this.ultraTabPageControl28.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  718. this.ultraTabPageControl28.Name = "ultraTabPageControl28";
  719. this.ultraTabPageControl28.Size = new System.Drawing.Size(832, 104);
  720. //
  721. // ultraTabPageControl29
  722. //
  723. this.ultraTabPageControl29.Controls.Add(this.matInfo23);
  724. this.ultraTabPageControl29.Location = new System.Drawing.Point(-10000, -10000);
  725. this.ultraTabPageControl29.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  726. this.ultraTabPageControl29.Name = "ultraTabPageControl29";
  727. this.ultraTabPageControl29.Size = new System.Drawing.Size(832, 104);
  728. //
  729. // ultraTabPageControl30
  730. //
  731. this.ultraTabPageControl30.Controls.Add(this.matInfo24);
  732. this.ultraTabPageControl30.Location = new System.Drawing.Point(-10000, -10000);
  733. this.ultraTabPageControl30.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  734. this.ultraTabPageControl30.Name = "ultraTabPageControl30";
  735. this.ultraTabPageControl30.Size = new System.Drawing.Size(832, 104);
  736. //
  737. // ultraTabPageControl31
  738. //
  739. this.ultraTabPageControl31.Controls.Add(this.matInfo25);
  740. this.ultraTabPageControl31.Location = new System.Drawing.Point(-10000, -10000);
  741. this.ultraTabPageControl31.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  742. this.ultraTabPageControl31.Name = "ultraTabPageControl31";
  743. this.ultraTabPageControl31.Size = new System.Drawing.Size(832, 104);
  744. //
  745. // ultraTabPageControl32
  746. //
  747. this.ultraTabPageControl32.Controls.Add(this.matInfo26);
  748. this.ultraTabPageControl32.Location = new System.Drawing.Point(-10000, -10000);
  749. this.ultraTabPageControl32.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  750. this.ultraTabPageControl32.Name = "ultraTabPageControl32";
  751. this.ultraTabPageControl32.Size = new System.Drawing.Size(832, 104);
  752. //
  753. // ultraTabPageControl33
  754. //
  755. this.ultraTabPageControl33.Controls.Add(this.matInfo27);
  756. this.ultraTabPageControl33.Location = new System.Drawing.Point(-10000, -10000);
  757. this.ultraTabPageControl33.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  758. this.ultraTabPageControl33.Name = "ultraTabPageControl33";
  759. this.ultraTabPageControl33.Size = new System.Drawing.Size(832, 104);
  760. //
  761. // ultraTabPageControl25
  762. //
  763. this.ultraTabPageControl25.Controls.Add(this.matInfo19);
  764. this.ultraTabPageControl25.Location = new System.Drawing.Point(-10000, -10000);
  765. this.ultraTabPageControl25.Name = "ultraTabPageControl25";
  766. this.ultraTabPageControl25.Size = new System.Drawing.Size(832, 104);
  767. //
  768. // ultraTabPageControl7
  769. //
  770. this.ultraTabPageControl7.Controls.Add(this.matInfo3);
  771. this.ultraTabPageControl7.Location = new System.Drawing.Point(1, 26);
  772. this.ultraTabPageControl7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  773. this.ultraTabPageControl7.Name = "ultraTabPageControl7";
  774. this.ultraTabPageControl7.Size = new System.Drawing.Size(830, 34);
  775. //
  776. // ultraTabPageControl20
  777. //
  778. this.ultraTabPageControl20.Controls.Add(this.matInfo17);
  779. this.ultraTabPageControl20.Location = new System.Drawing.Point(-10000, -10000);
  780. this.ultraTabPageControl20.Name = "ultraTabPageControl20";
  781. this.ultraTabPageControl20.Size = new System.Drawing.Size(830, 34);
  782. //
  783. // ultraTabPageControl8
  784. //
  785. this.ultraTabPageControl8.Controls.Add(this.matInfo2);
  786. this.ultraTabPageControl8.Location = new System.Drawing.Point(-10000, -10000);
  787. this.ultraTabPageControl8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  788. this.ultraTabPageControl8.Name = "ultraTabPageControl8";
  789. this.ultraTabPageControl8.Size = new System.Drawing.Size(830, 34);
  790. //
  791. // ultraTabPageControl9
  792. //
  793. this.ultraTabPageControl9.Controls.Add(this.matInfo1);
  794. this.ultraTabPageControl9.Location = new System.Drawing.Point(-10000, -10000);
  795. this.ultraTabPageControl9.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  796. this.ultraTabPageControl9.Name = "ultraTabPageControl9";
  797. this.ultraTabPageControl9.Size = new System.Drawing.Size(830, 34);
  798. //
  799. // ultraTabPageControl10
  800. //
  801. this.ultraTabPageControl10.Controls.Add(this.matInfo4);
  802. this.ultraTabPageControl10.Location = new System.Drawing.Point(-10000, -10000);
  803. this.ultraTabPageControl10.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  804. this.ultraTabPageControl10.Name = "ultraTabPageControl10";
  805. this.ultraTabPageControl10.Size = new System.Drawing.Size(830, 34);
  806. //
  807. // ultraTabPageControl11
  808. //
  809. this.ultraTabPageControl11.Controls.Add(this.matInfo5);
  810. this.ultraTabPageControl11.Location = new System.Drawing.Point(-10000, -10000);
  811. this.ultraTabPageControl11.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  812. this.ultraTabPageControl11.Name = "ultraTabPageControl11";
  813. this.ultraTabPageControl11.Size = new System.Drawing.Size(830, 34);
  814. //
  815. // ultraTabPageControl12
  816. //
  817. this.ultraTabPageControl12.Controls.Add(this.matInfo6);
  818. this.ultraTabPageControl12.Location = new System.Drawing.Point(-10000, -10000);
  819. this.ultraTabPageControl12.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  820. this.ultraTabPageControl12.Name = "ultraTabPageControl12";
  821. this.ultraTabPageControl12.Size = new System.Drawing.Size(830, 34);
  822. //
  823. // ultraTabPageControl13
  824. //
  825. this.ultraTabPageControl13.Controls.Add(this.matInfo7);
  826. this.ultraTabPageControl13.Location = new System.Drawing.Point(-10000, -10000);
  827. this.ultraTabPageControl13.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  828. this.ultraTabPageControl13.Name = "ultraTabPageControl13";
  829. this.ultraTabPageControl13.Size = new System.Drawing.Size(830, 34);
  830. //
  831. // ultraTabPageControl14
  832. //
  833. this.ultraTabPageControl14.Controls.Add(this.matInfo8);
  834. this.ultraTabPageControl14.Location = new System.Drawing.Point(-10000, -10000);
  835. this.ultraTabPageControl14.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  836. this.ultraTabPageControl14.Name = "ultraTabPageControl14";
  837. this.ultraTabPageControl14.Size = new System.Drawing.Size(830, 34);
  838. //
  839. // ultraTabPageControl21
  840. //
  841. this.ultraTabPageControl21.Controls.Add(this.matInfo16);
  842. this.ultraTabPageControl21.Controls.Add(this.ultraPanel12);
  843. this.ultraTabPageControl21.Location = new System.Drawing.Point(1, 26);
  844. this.ultraTabPageControl21.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  845. this.ultraTabPageControl21.Name = "ultraTabPageControl21";
  846. this.ultraTabPageControl21.Size = new System.Drawing.Size(836, 206);
  847. //
  848. // ultraPanel12
  849. //
  850. //
  851. // ultraPanel12.ClientArea
  852. //
  853. this.ultraPanel12.ClientArea.Controls.Add(this.utbSave);
  854. this.ultraPanel12.ClientArea.Controls.Add(this.ultraButton1);
  855. this.ultraPanel12.Dock = System.Windows.Forms.DockStyle.Top;
  856. this.ultraPanel12.Location = new System.Drawing.Point(0, 0);
  857. this.ultraPanel12.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  858. this.ultraPanel12.Name = "ultraPanel12";
  859. this.ultraPanel12.Size = new System.Drawing.Size(836, 48);
  860. this.ultraPanel12.TabIndex = 6;
  861. //
  862. // utbSave
  863. //
  864. appearance19.Image = ((object)(resources.GetObject("appearance19.Image")));
  865. this.utbSave.Appearance = appearance19;
  866. this.utbSave.AutoSize = true;
  867. this.utbSave.Font = new System.Drawing.Font("宋体", 10F);
  868. this.utbSave.Location = new System.Drawing.Point(582, 8);
  869. this.utbSave.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  870. this.utbSave.Name = "utbSave";
  871. this.utbSave.Size = new System.Drawing.Size(65, 27);
  872. this.utbSave.TabIndex = 597;
  873. this.utbSave.Text = " 保存";
  874. this.utbSave.Visible = false;
  875. //
  876. // ultraButton1
  877. //
  878. appearance7.Image = ((object)(resources.GetObject("appearance7.Image")));
  879. this.ultraButton1.Appearance = appearance7;
  880. this.ultraButton1.AutoSize = true;
  881. this.ultraButton1.Font = new System.Drawing.Font("宋体", 10F);
  882. this.ultraButton1.Location = new System.Drawing.Point(29, 8);
  883. this.ultraButton1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  884. this.ultraButton1.Name = "ultraButton1";
  885. this.ultraButton1.Size = new System.Drawing.Size(65, 27);
  886. this.ultraButton1.TabIndex = 596;
  887. this.ultraButton1.Text = " 保存";
  888. this.ultraButton1.Click += new System.EventHandler(this.btnSave2_Click);
  889. //
  890. // ultraTabPageControl19
  891. //
  892. this.ultraTabPageControl19.Controls.Add(this.matInfo15);
  893. this.ultraTabPageControl19.Controls.Add(this.ultraPanel11);
  894. this.ultraTabPageControl19.Location = new System.Drawing.Point(-10000, -10000);
  895. this.ultraTabPageControl19.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  896. this.ultraTabPageControl19.Name = "ultraTabPageControl19";
  897. this.ultraTabPageControl19.Size = new System.Drawing.Size(836, 206);
  898. //
  899. // ultraPanel11
  900. //
  901. //
  902. // ultraPanel11.ClientArea
  903. //
  904. this.ultraPanel11.ClientArea.Controls.Add(this.utbSave4);
  905. this.ultraPanel11.Dock = System.Windows.Forms.DockStyle.Top;
  906. this.ultraPanel11.Location = new System.Drawing.Point(0, 0);
  907. this.ultraPanel11.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  908. this.ultraPanel11.Name = "ultraPanel11";
  909. this.ultraPanel11.Size = new System.Drawing.Size(836, 48);
  910. this.ultraPanel11.TabIndex = 5;
  911. //
  912. // utbSave4
  913. //
  914. appearance13.Image = ((object)(resources.GetObject("appearance13.Image")));
  915. this.utbSave4.Appearance = appearance13;
  916. this.utbSave4.AutoSize = true;
  917. this.utbSave4.Font = new System.Drawing.Font("宋体", 10F);
  918. this.utbSave4.Location = new System.Drawing.Point(29, 8);
  919. this.utbSave4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  920. this.utbSave4.Name = "utbSave4";
  921. this.utbSave4.Size = new System.Drawing.Size(65, 27);
  922. this.utbSave4.TabIndex = 596;
  923. this.utbSave4.Text = " 保存";
  924. this.utbSave4.Click += new System.EventHandler(this.btnSave2_Click);
  925. //
  926. // ultraTabPageControl22
  927. //
  928. this.ultraTabPageControl22.Controls.Add(this.tbOther);
  929. this.ultraTabPageControl22.Controls.Add(this.ultraPanel9);
  930. this.ultraTabPageControl22.Location = new System.Drawing.Point(-10000, -10000);
  931. this.ultraTabPageControl22.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  932. this.ultraTabPageControl22.Name = "ultraTabPageControl22";
  933. this.ultraTabPageControl22.Size = new System.Drawing.Size(836, 206);
  934. //
  935. // tbOther
  936. //
  937. this.tbOther.Controls.Add(this.ultraTabSharedControlsPage8);
  938. this.tbOther.Controls.Add(this.ultraTabPageControl5);
  939. this.tbOther.Controls.Add(this.ultraTabPageControl6);
  940. this.tbOther.Controls.Add(this.ultraTabPageControl15);
  941. this.tbOther.Controls.Add(this.ultraTabPageControl16);
  942. this.tbOther.Controls.Add(this.ultraTabPageControl17);
  943. this.tbOther.Controls.Add(this.ultraTabPageControl18);
  944. this.tbOther.Controls.Add(this.ultraTabPageControl24);
  945. this.tbOther.Controls.Add(this.ultraTabPageControl35);
  946. this.tbOther.Dock = System.Windows.Forms.DockStyle.Fill;
  947. this.tbOther.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  948. this.tbOther.Location = new System.Drawing.Point(0, 48);
  949. this.tbOther.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  950. this.tbOther.Name = "tbOther";
  951. this.tbOther.SharedControlsPage = this.ultraTabSharedControlsPage8;
  952. this.tbOther.Size = new System.Drawing.Size(836, 158);
  953. this.tbOther.TabIndex = 5;
  954. this.tbOther.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
  955. ultraTab13.Key = "200";
  956. ultraTab13.TabPage = this.ultraTabPageControl18;
  957. ultraTab13.Text = "钢管销售";
  958. ultraTab28.Key = "202";
  959. ultraTab28.TabPage = this.ultraTabPageControl5;
  960. ultraTab28.Text = "废料销售";
  961. ultraTab2.Key = "209";
  962. ultraTab2.TabPage = this.ultraTabPageControl24;
  963. ultraTab2.Text = "废料销售2";
  964. ultraTab29.Key = "203";
  965. ultraTab29.TabPage = this.ultraTabPageControl6;
  966. ultraTab29.Text = "修复出厂";
  967. ultraTab30.Key = "204";
  968. ultraTab30.TabPage = this.ultraTabPageControl15;
  969. ultraTab30.Text = "其他内转";
  970. ultraTab31.Key = "205";
  971. ultraTab31.TabPage = this.ultraTabPageControl16;
  972. ultraTab31.Text = "内转钢管";
  973. ultraTab32.Key = "206";
  974. ultraTab32.TabPage = this.ultraTabPageControl17;
  975. ultraTab32.Text = "内转钢坯";
  976. ultraTab7.Key = "210";
  977. ultraTab7.TabPage = this.ultraTabPageControl35;
  978. ultraTab7.Text = "钢坯退货";
  979. this.tbOther.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  980. ultraTab13,
  981. ultraTab28,
  982. ultraTab2,
  983. ultraTab29,
  984. ultraTab30,
  985. ultraTab31,
  986. ultraTab32,
  987. ultraTab7});
  988. this.tbOther.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.tbFirstWt_SelectedTabChanged);
  989. //
  990. // ultraTabSharedControlsPage8
  991. //
  992. this.ultraTabSharedControlsPage8.Location = new System.Drawing.Point(-10000, -10000);
  993. this.ultraTabSharedControlsPage8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  994. this.ultraTabSharedControlsPage8.Name = "ultraTabSharedControlsPage8";
  995. this.ultraTabSharedControlsPage8.Size = new System.Drawing.Size(832, 129);
  996. //
  997. // ultraPanel9
  998. //
  999. //
  1000. // ultraPanel9.ClientArea
  1001. //
  1002. this.ultraPanel9.ClientArea.Controls.Add(this.tb_order);
  1003. this.ultraPanel9.ClientArea.Controls.Add(this.lb_order);
  1004. this.ultraPanel9.ClientArea.Controls.Add(this.CX_HTH);
  1005. this.ultraPanel9.ClientArea.Controls.Add(this.CX_HT);
  1006. this.ultraPanel9.ClientArea.Controls.Add(this.btnSaveAsT2);
  1007. this.ultraPanel9.ClientArea.Controls.Add(this.btnSave2);
  1008. this.ultraPanel9.Dock = System.Windows.Forms.DockStyle.Top;
  1009. this.ultraPanel9.Location = new System.Drawing.Point(0, 0);
  1010. this.ultraPanel9.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1011. this.ultraPanel9.Name = "ultraPanel9";
  1012. this.ultraPanel9.Size = new System.Drawing.Size(836, 48);
  1013. this.ultraPanel9.TabIndex = 4;
  1014. //
  1015. // tb_order
  1016. //
  1017. this.tb_order.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1018. | System.Windows.Forms.AnchorStyles.Left)));
  1019. this.tb_order.Location = new System.Drawing.Point(609, 8);
  1020. this.tb_order.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1021. this.tb_order.Name = "tb_order";
  1022. this.tb_order.Size = new System.Drawing.Size(197, 24);
  1023. this.tb_order.TabIndex = 951;
  1024. //
  1025. // lb_order
  1026. //
  1027. this.lb_order.AutoSize = true;
  1028. this.lb_order.Location = new System.Drawing.Point(544, 12);
  1029. this.lb_order.Name = "lb_order";
  1030. this.lb_order.Size = new System.Drawing.Size(71, 15);
  1031. this.lb_order.TabIndex = 601;
  1032. this.lb_order.Text = "合同号:";
  1033. //
  1034. // CX_HTH
  1035. //
  1036. this.CX_HTH.AutoSize = true;
  1037. this.CX_HTH.Location = new System.Drawing.Point(284, 13);
  1038. this.CX_HTH.Name = "CX_HTH";
  1039. this.CX_HTH.Size = new System.Drawing.Size(71, 15);
  1040. this.CX_HTH.TabIndex = 600;
  1041. this.CX_HTH.Text = "提单号:";
  1042. //
  1043. // CX_HT
  1044. //
  1045. this.CX_HT.Location = new System.Drawing.Point(361, 8);
  1046. this.CX_HT.Name = "CX_HT";
  1047. this.CX_HT.Size = new System.Drawing.Size(173, 24);
  1048. this.CX_HT.TabIndex = 599;
  1049. this.CX_HT.ValueChanged += new System.EventHandler(this.CX_HT_ValueChanged);
  1050. //
  1051. // btnSaveAsT2
  1052. //
  1053. appearance6.Image = ((object)(resources.GetObject("appearance6.Image")));
  1054. this.btnSaveAsT2.Appearance = appearance6;
  1055. this.btnSaveAsT2.AutoSize = true;
  1056. this.btnSaveAsT2.Font = new System.Drawing.Font("宋体", 10F);
  1057. this.btnSaveAsT2.Location = new System.Drawing.Point(144, 8);
  1058. this.btnSaveAsT2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1059. this.btnSaveAsT2.Name = "btnSaveAsT2";
  1060. this.btnSaveAsT2.Size = new System.Drawing.Size(106, 27);
  1061. this.btnSaveAsT2.TabIndex = 598;
  1062. this.btnSaveAsT2.Text = " 保存为模板";
  1063. this.btnSaveAsT2.Click += new System.EventHandler(this.utbSaveAsT_Click);
  1064. //
  1065. // btnSave2
  1066. //
  1067. appearance8.Image = ((object)(resources.GetObject("appearance8.Image")));
  1068. this.btnSave2.Appearance = appearance8;
  1069. this.btnSave2.AutoSize = true;
  1070. this.btnSave2.Font = new System.Drawing.Font("宋体", 10F);
  1071. this.btnSave2.Location = new System.Drawing.Point(29, 8);
  1072. this.btnSave2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1073. this.btnSave2.Name = "btnSave2";
  1074. this.btnSave2.Size = new System.Drawing.Size(65, 27);
  1075. this.btnSave2.TabIndex = 596;
  1076. this.btnSave2.Text = " 保存";
  1077. this.btnSave2.Click += new System.EventHandler(this.btnSave2_Click);
  1078. //
  1079. // ultraTabPageControl23
  1080. //
  1081. this.ultraTabPageControl23.Controls.Add(this.ultraPanel10);
  1082. this.ultraTabPageControl23.Location = new System.Drawing.Point(-10000, -10000);
  1083. this.ultraTabPageControl23.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1084. this.ultraTabPageControl23.Name = "ultraTabPageControl23";
  1085. this.ultraTabPageControl23.Size = new System.Drawing.Size(836, 206);
  1086. //
  1087. // ultraPanel10
  1088. //
  1089. //
  1090. // ultraPanel10.ClientArea
  1091. //
  1092. this.ultraPanel10.ClientArea.Controls.Add(this.ultraPanel13);
  1093. this.ultraPanel10.ClientArea.Controls.Add(this.ultraPanel8);
  1094. this.ultraPanel10.Dock = System.Windows.Forms.DockStyle.Fill;
  1095. this.ultraPanel10.Location = new System.Drawing.Point(0, 0);
  1096. this.ultraPanel10.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1097. this.ultraPanel10.Name = "ultraPanel10";
  1098. this.ultraPanel10.Size = new System.Drawing.Size(836, 206);
  1099. this.ultraPanel10.TabIndex = 5;
  1100. //
  1101. // ultraPanel13
  1102. //
  1103. //
  1104. // ultraPanel13.ClientArea
  1105. //
  1106. this.ultraPanel13.ClientArea.Controls.Add(this.qitahuipi);
  1107. this.ultraPanel13.Dock = System.Windows.Forms.DockStyle.Fill;
  1108. this.ultraPanel13.Location = new System.Drawing.Point(0, 73);
  1109. this.ultraPanel13.Name = "ultraPanel13";
  1110. this.ultraPanel13.Size = new System.Drawing.Size(836, 133);
  1111. this.ultraPanel13.TabIndex = 598;
  1112. //
  1113. // qitahuipi
  1114. //
  1115. this.qitahuipi.Controls.Add(this.ultraTabSharedControlsPage9);
  1116. this.qitahuipi.Controls.Add(this.ultraTabPageControl26);
  1117. this.qitahuipi.Controls.Add(this.ultraTabPageControl27);
  1118. this.qitahuipi.Controls.Add(this.ultraTabPageControl28);
  1119. this.qitahuipi.Controls.Add(this.ultraTabPageControl29);
  1120. this.qitahuipi.Controls.Add(this.ultraTabPageControl30);
  1121. this.qitahuipi.Controls.Add(this.ultraTabPageControl31);
  1122. this.qitahuipi.Controls.Add(this.ultraTabPageControl32);
  1123. this.qitahuipi.Controls.Add(this.ultraTabPageControl33);
  1124. this.qitahuipi.Controls.Add(this.ultraTabPageControl34);
  1125. this.qitahuipi.Controls.Add(this.ultraTabPageControl25);
  1126. this.qitahuipi.Dock = System.Windows.Forms.DockStyle.Fill;
  1127. this.qitahuipi.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold);
  1128. this.qitahuipi.Location = new System.Drawing.Point(0, 0);
  1129. this.qitahuipi.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1130. this.qitahuipi.Name = "qitahuipi";
  1131. this.qitahuipi.SharedControlsPage = this.ultraTabSharedControlsPage9;
  1132. this.qitahuipi.Size = new System.Drawing.Size(836, 133);
  1133. this.qitahuipi.TabIndex = 3;
  1134. this.qitahuipi.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
  1135. ultraTab14.Key = "102";
  1136. ultraTab14.TabPage = this.ultraTabPageControl26;
  1137. ultraTab14.Text = "钢坯采购";
  1138. ultraTab1.Key = "110";
  1139. ultraTab1.TabPage = this.ultraTabPageControl34;
  1140. ultraTab1.Text = "钢坯退货";
  1141. ultraTab15.Key = "103";
  1142. ultraTab15.TabPage = this.ultraTabPageControl27;
  1143. ultraTab15.Text = "钢管退货";
  1144. ultraTab16.Key = "104";
  1145. ultraTab16.TabPage = this.ultraTabPageControl28;
  1146. ultraTab16.Text = "采购辅料";
  1147. ultraTab17.Key = "105";
  1148. ultraTab17.TabPage = this.ultraTabPageControl29;
  1149. ultraTab17.Text = "修复返厂";
  1150. ultraTab18.Key = "106";
  1151. ultraTab18.TabPage = this.ultraTabPageControl30;
  1152. ultraTab18.Text = "设备采购";
  1153. ultraTab19.Key = "107";
  1154. ultraTab19.TabPage = this.ultraTabPageControl31;
  1155. ultraTab19.Text = "其他内转";
  1156. ultraTab20.Key = "108";
  1157. ultraTab20.TabPage = this.ultraTabPageControl32;
  1158. ultraTab20.Text = "内转钢管";
  1159. ultraTab21.Key = "109";
  1160. ultraTab21.TabPage = this.ultraTabPageControl33;
  1161. ultraTab21.Text = "内转钢坯";
  1162. ultraTab35.Key = "301";
  1163. ultraTab35.TabPage = this.ultraTabPageControl25;
  1164. ultraTab35.Text = "外购钢管";
  1165. this.qitahuipi.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  1166. ultraTab14,
  1167. ultraTab1,
  1168. ultraTab15,
  1169. ultraTab16,
  1170. ultraTab17,
  1171. ultraTab18,
  1172. ultraTab19,
  1173. ultraTab20,
  1174. ultraTab21,
  1175. ultraTab35});
  1176. this.qitahuipi.Visible = false;
  1177. this.qitahuipi.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.qitahuipi_SelectedTabChanged);
  1178. //
  1179. // ultraTabSharedControlsPage9
  1180. //
  1181. this.ultraTabSharedControlsPage9.Location = new System.Drawing.Point(-10000, -10000);
  1182. this.ultraTabSharedControlsPage9.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1183. this.ultraTabSharedControlsPage9.Name = "ultraTabSharedControlsPage9";
  1184. this.ultraTabSharedControlsPage9.Size = new System.Drawing.Size(832, 104);
  1185. //
  1186. // ultraPanel8
  1187. //
  1188. //
  1189. // ultraPanel8.ClientArea
  1190. //
  1191. this.ultraPanel8.ClientArea.Controls.Add(this.utbSaveAsT2);
  1192. this.ultraPanel8.ClientArea.Controls.Add(this.ultraButton2);
  1193. this.ultraPanel8.ClientArea.Controls.Add(this.checkBox3);
  1194. this.ultraPanel8.ClientArea.Controls.Add(this.utbSave3);
  1195. this.ultraPanel8.Dock = System.Windows.Forms.DockStyle.Top;
  1196. this.ultraPanel8.Location = new System.Drawing.Point(0, 0);
  1197. this.ultraPanel8.Name = "ultraPanel8";
  1198. this.ultraPanel8.Size = new System.Drawing.Size(836, 73);
  1199. this.ultraPanel8.TabIndex = 597;
  1200. //
  1201. // utbSaveAsT2
  1202. //
  1203. appearance18.Image = ((object)(resources.GetObject("appearance18.Image")));
  1204. this.utbSaveAsT2.Appearance = appearance18;
  1205. this.utbSaveAsT2.AutoSize = true;
  1206. this.utbSaveAsT2.Font = new System.Drawing.Font("宋体", 10F);
  1207. this.utbSaveAsT2.Location = new System.Drawing.Point(231, 17);
  1208. this.utbSaveAsT2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1209. this.utbSaveAsT2.Name = "utbSaveAsT2";
  1210. this.utbSaveAsT2.Size = new System.Drawing.Size(106, 27);
  1211. this.utbSaveAsT2.TabIndex = 604;
  1212. this.utbSaveAsT2.Text = " 保存为模板";
  1213. this.utbSaveAsT2.Click += new System.EventHandler(this.utbSaveAsT2_Click);
  1214. //
  1215. // ultraButton2
  1216. //
  1217. appearance16.Image = ((object)(resources.GetObject("appearance16.Image")));
  1218. this.ultraButton2.Appearance = appearance16;
  1219. this.ultraButton2.AutoSize = true;
  1220. this.ultraButton2.Font = new System.Drawing.Font("宋体", 10F);
  1221. this.ultraButton2.Location = new System.Drawing.Point(385, 17);
  1222. this.ultraButton2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1223. this.ultraButton2.Name = "ultraButton2";
  1224. this.ultraButton2.Size = new System.Drawing.Size(58, 27);
  1225. this.ultraButton2.TabIndex = 603;
  1226. this.ultraButton2.Text = "选择";
  1227. this.ultraButton2.Click += new System.EventHandler(this.ultraButton2_Click);
  1228. //
  1229. // checkBox3
  1230. //
  1231. this.checkBox3.AutoSize = true;
  1232. this.checkBox3.Font = new System.Drawing.Font("宋体", 10F);
  1233. this.checkBox3.Location = new System.Drawing.Point(19, 44);
  1234. this.checkBox3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1235. this.checkBox3.Name = "checkBox3";
  1236. this.checkBox3.Size = new System.Drawing.Size(82, 18);
  1237. this.checkBox3.TabIndex = 602;
  1238. this.checkBox3.Text = "先毛后皮";
  1239. this.checkBox3.UseVisualStyleBackColor = true;
  1240. this.checkBox3.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged);
  1241. //
  1242. // utbSave3
  1243. //
  1244. appearance9.Image = ((object)(resources.GetObject("appearance9.Image")));
  1245. this.utbSave3.Appearance = appearance9;
  1246. this.utbSave3.AutoSize = true;
  1247. this.utbSave3.Font = new System.Drawing.Font("宋体", 10F);
  1248. this.utbSave3.Location = new System.Drawing.Point(19, 6);
  1249. this.utbSave3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1250. this.utbSave3.Name = "utbSave3";
  1251. this.utbSave3.Size = new System.Drawing.Size(65, 27);
  1252. this.utbSave3.TabIndex = 597;
  1253. this.utbSave3.Text = " 保存";
  1254. this.utbSave3.Click += new System.EventHandler(this.btnSave2_Click);
  1255. //
  1256. // uceType
  1257. //
  1258. this.uceType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1259. valueListItem14.DataValue = "101";
  1260. valueListItem14.DisplayText = "空车过皮";
  1261. valueListItem15.DataValue = "102";
  1262. valueListItem15.DisplayText = "钢坯采购";
  1263. valueListItem16.DataValue = "103";
  1264. valueListItem16.DisplayText = "钢管退货";
  1265. valueListItem17.DataValue = "104";
  1266. valueListItem17.DisplayText = "采购辅料";
  1267. valueListItem18.DataValue = "105";
  1268. valueListItem18.DisplayText = "修复返厂";
  1269. valueListItem26.DataValue = "106";
  1270. valueListItem26.DisplayText = "设备采购";
  1271. valueListItem27.DataValue = "107";
  1272. valueListItem27.DisplayText = "其他内转";
  1273. valueListItem28.DataValue = "108";
  1274. valueListItem28.DisplayText = "内转钢管";
  1275. valueListItem29.DataValue = "109";
  1276. valueListItem29.DisplayText = "内转钢坯";
  1277. valueListItem30.DataValue = "201";
  1278. valueListItem30.DisplayText = "配车单称重";
  1279. valueListItem31.DataValue = "202";
  1280. valueListItem31.DisplayText = "废料销售";
  1281. valueListItem32.DataValue = "203";
  1282. valueListItem32.DisplayText = "修复出厂";
  1283. valueListItem33.DataValue = "204";
  1284. valueListItem33.DisplayText = "其他内转";
  1285. valueListItem34.DataValue = "205";
  1286. valueListItem34.DisplayText = "内转钢管";
  1287. valueListItem35.DataValue = "206";
  1288. valueListItem35.DisplayText = "内转钢坯";
  1289. valueListItem36.DataValue = "207";
  1290. valueListItem36.DisplayText = "空车回皮";
  1291. valueListItem37.DataValue = "200";
  1292. valueListItem37.DisplayText = "钢管销售";
  1293. valueListItem38.DataValue = "208";
  1294. valueListItem38.DisplayText = "废品倒运";
  1295. valueListItem63.DataValue = "钢管外购";
  1296. valueListItem63.DisplayText = "301";
  1297. this.uceType.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1298. valueListItem14,
  1299. valueListItem15,
  1300. valueListItem16,
  1301. valueListItem17,
  1302. valueListItem18,
  1303. valueListItem26,
  1304. valueListItem27,
  1305. valueListItem28,
  1306. valueListItem29,
  1307. valueListItem30,
  1308. valueListItem31,
  1309. valueListItem32,
  1310. valueListItem33,
  1311. valueListItem34,
  1312. valueListItem35,
  1313. valueListItem36,
  1314. valueListItem37,
  1315. valueListItem38,
  1316. valueListItem63});
  1317. this.uceType.Location = new System.Drawing.Point(473, 186);
  1318. this.uceType.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1319. this.uceType.Name = "uceType";
  1320. this.uceType.Size = new System.Drawing.Size(144, 21);
  1321. this.uceType.TabIndex = 72;
  1322. this.uceType.Visible = false;
  1323. //
  1324. // uceVlid
  1325. //
  1326. this.uceVlid.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1327. valueListItem1.DataValue = "0";
  1328. valueListItem1.DisplayText = "无效";
  1329. valueListItem2.DataValue = "1";
  1330. valueListItem2.DisplayText = "有效";
  1331. this.uceVlid.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1332. valueListItem1,
  1333. valueListItem2});
  1334. this.uceVlid.Location = new System.Drawing.Point(579, 282);
  1335. this.uceVlid.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1336. this.uceVlid.Name = "uceVlid";
  1337. this.uceVlid.Size = new System.Drawing.Size(144, 21);
  1338. this.uceVlid.TabIndex = 73;
  1339. this.uceVlid.Visible = false;
  1340. //
  1341. // delete
  1342. //
  1343. editorButton1.Key = "select";
  1344. editorButton1.Text = "删除";
  1345. this.delete.ButtonsRight.Add(editorButton1);
  1346. this.delete.Location = new System.Drawing.Point(265, 186);
  1347. this.delete.Margin = new System.Windows.Forms.Padding(4);
  1348. this.delete.Name = "delete";
  1349. this.delete.Size = new System.Drawing.Size(183, 21);
  1350. this.delete.TabIndex = 73;
  1351. this.delete.Visible = false;
  1352. this.delete.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.delete_EditorButtonClick);
  1353. //
  1354. // uteChangeType
  1355. //
  1356. editorButton2.Key = "select";
  1357. editorButton2.Text = "修改";
  1358. this.uteChangeType.ButtonsRight.Add(editorButton2);
  1359. this.uteChangeType.Location = new System.Drawing.Point(369, 120);
  1360. this.uteChangeType.Margin = new System.Windows.Forms.Padding(4);
  1361. this.uteChangeType.Name = "uteChangeType";
  1362. this.uteChangeType.Size = new System.Drawing.Size(183, 21);
  1363. this.uteChangeType.TabIndex = 80;
  1364. this.uteChangeType.Visible = false;
  1365. this.uteChangeType.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.uteChangeType_EditorButtonClick);
  1366. //
  1367. // uctMemo
  1368. //
  1369. editorButton3.Key = "select";
  1370. editorButton3.Text = "修改";
  1371. this.uctMemo.ButtonsRight.Add(editorButton3);
  1372. this.uctMemo.Location = new System.Drawing.Point(89, 120);
  1373. this.uctMemo.Margin = new System.Windows.Forms.Padding(4);
  1374. this.uctMemo.Name = "uctMemo";
  1375. this.uctMemo.Size = new System.Drawing.Size(82, 21);
  1376. this.uctMemo.TabIndex = 82;
  1377. this.uctMemo.Visible = false;
  1378. this.uctMemo.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.uctMemo_EditorButtonClick);
  1379. //
  1380. // ultraTabPageControl3
  1381. //
  1382. this.ultraTabPageControl3.Controls.Add(this.ultraGroupBox1);
  1383. this.ultraTabPageControl3.Location = new System.Drawing.Point(-10000, -10000);
  1384. this.ultraTabPageControl3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1385. this.ultraTabPageControl3.Name = "ultraTabPageControl3";
  1386. this.ultraTabPageControl3.Size = new System.Drawing.Size(840, 235);
  1387. //
  1388. // ultraGroupBox1
  1389. //
  1390. this.ultraGroupBox1.Controls.Add(this.tbFirstWt);
  1391. this.ultraGroupBox1.Controls.Add(this.ultraPanel5);
  1392. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  1393. this.ultraGroupBox1.Font = new System.Drawing.Font("宋体", 10F);
  1394. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  1395. this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1396. this.ultraGroupBox1.Name = "ultraGroupBox1";
  1397. this.ultraGroupBox1.Size = new System.Drawing.Size(840, 235);
  1398. this.ultraGroupBox1.TabIndex = 3;
  1399. this.ultraGroupBox1.Text = "第一次称重";
  1400. //
  1401. // tbFirstWt
  1402. //
  1403. this.tbFirstWt.Controls.Add(this.ultraTabSharedControlsPage4);
  1404. this.tbFirstWt.Controls.Add(this.ultraTabPageControl7);
  1405. this.tbFirstWt.Controls.Add(this.ultraTabPageControl8);
  1406. this.tbFirstWt.Controls.Add(this.ultraTabPageControl9);
  1407. this.tbFirstWt.Controls.Add(this.ultraTabPageControl10);
  1408. this.tbFirstWt.Controls.Add(this.ultraTabPageControl11);
  1409. this.tbFirstWt.Controls.Add(this.ultraTabPageControl12);
  1410. this.tbFirstWt.Controls.Add(this.ultraTabPageControl13);
  1411. this.tbFirstWt.Controls.Add(this.ultraTabPageControl14);
  1412. this.tbFirstWt.Controls.Add(this.ultraTabPageControl20);
  1413. this.tbFirstWt.Dock = System.Windows.Forms.DockStyle.Fill;
  1414. this.tbFirstWt.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold);
  1415. this.tbFirstWt.Location = new System.Drawing.Point(3, 169);
  1416. this.tbFirstWt.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1417. this.tbFirstWt.Name = "tbFirstWt";
  1418. this.tbFirstWt.SharedControlsPage = this.ultraTabSharedControlsPage4;
  1419. this.tbFirstWt.Size = new System.Drawing.Size(834, 63);
  1420. this.tbFirstWt.TabIndex = 2;
  1421. this.tbFirstWt.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
  1422. ultraTab8.Key = "102";
  1423. ultraTab8.TabPage = this.ultraTabPageControl7;
  1424. ultraTab8.Text = "钢坯采购";
  1425. ultraTab9.Key = "110";
  1426. ultraTab9.TabPage = this.ultraTabPageControl20;
  1427. ultraTab9.Text = "钢坯退货";
  1428. ultraTab10.Key = "103";
  1429. ultraTab10.TabPage = this.ultraTabPageControl8;
  1430. ultraTab10.Text = "钢管退货";
  1431. ultraTab11.Key = "104";
  1432. ultraTab11.TabPage = this.ultraTabPageControl9;
  1433. ultraTab11.Text = "采购辅料";
  1434. ultraTab12.Key = "105";
  1435. ultraTab12.TabPage = this.ultraTabPageControl10;
  1436. ultraTab12.Text = "修复返厂";
  1437. ultraTab23.Key = "106";
  1438. ultraTab23.TabPage = this.ultraTabPageControl11;
  1439. ultraTab23.Text = "设备采购";
  1440. ultraTab24.Key = "107";
  1441. ultraTab24.TabPage = this.ultraTabPageControl12;
  1442. ultraTab24.Text = "其他内转";
  1443. ultraTab33.Key = "108";
  1444. ultraTab33.TabPage = this.ultraTabPageControl13;
  1445. ultraTab33.Text = "内转钢管";
  1446. ultraTab34.Key = "109";
  1447. ultraTab34.TabPage = this.ultraTabPageControl14;
  1448. ultraTab34.Text = "内转钢坯";
  1449. this.tbFirstWt.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  1450. ultraTab8,
  1451. ultraTab9,
  1452. ultraTab10,
  1453. ultraTab11,
  1454. ultraTab12,
  1455. ultraTab23,
  1456. ultraTab24,
  1457. ultraTab33,
  1458. ultraTab34});
  1459. this.tbFirstWt.Visible = false;
  1460. this.tbFirstWt.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.tbFirstWt_SelectedTabChanged);
  1461. //
  1462. // ultraTabSharedControlsPage4
  1463. //
  1464. this.ultraTabSharedControlsPage4.Location = new System.Drawing.Point(-10000, -10000);
  1465. this.ultraTabSharedControlsPage4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1466. this.ultraTabSharedControlsPage4.Name = "ultraTabSharedControlsPage4";
  1467. this.ultraTabSharedControlsPage4.Size = new System.Drawing.Size(830, 34);
  1468. //
  1469. // ultraPanel5
  1470. //
  1471. //
  1472. // ultraPanel5.ClientArea
  1473. //
  1474. this.ultraPanel5.ClientArea.Controls.Add(this.checkBox1);
  1475. this.ultraPanel5.ClientArea.Controls.Add(this.recordType);
  1476. this.ultraPanel5.ClientArea.Controls.Add(this.chkSteelCar);
  1477. this.ultraPanel5.ClientArea.Controls.Add(this.utbSelect2);
  1478. this.ultraPanel5.ClientArea.Controls.Add(this.utbSelect);
  1479. this.ultraPanel5.ClientArea.Controls.Add(this.utbSaveAsT);
  1480. this.ultraPanel5.ClientArea.Controls.Add(this.chkGross);
  1481. this.ultraPanel5.ClientArea.Controls.Add(this.utbSave1);
  1482. this.ultraPanel5.Dock = System.Windows.Forms.DockStyle.Top;
  1483. this.ultraPanel5.Location = new System.Drawing.Point(3, 19);
  1484. this.ultraPanel5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1485. this.ultraPanel5.Name = "ultraPanel5";
  1486. this.ultraPanel5.Size = new System.Drawing.Size(834, 150);
  1487. this.ultraPanel5.TabIndex = 3;
  1488. //
  1489. // checkBox1
  1490. //
  1491. this.checkBox1.AutoSize = true;
  1492. this.checkBox1.Font = new System.Drawing.Font("宋体", 10F);
  1493. this.checkBox1.Location = new System.Drawing.Point(36, 62);
  1494. this.checkBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1495. this.checkBox1.Name = "checkBox1";
  1496. this.checkBox1.Size = new System.Drawing.Size(82, 18);
  1497. this.checkBox1.TabIndex = 603;
  1498. this.checkBox1.Text = "先毛后皮";
  1499. this.checkBox1.UseVisualStyleBackColor = true;
  1500. this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
  1501. //
  1502. // recordType
  1503. //
  1504. valueListItem39.DataValue = "102";
  1505. valueListItem39.DisplayText = "钢坯采购";
  1506. valueListItem40.DataValue = "110";
  1507. valueListItem40.DisplayText = "钢坯退货";
  1508. valueListItem41.DataValue = "103";
  1509. valueListItem41.DisplayText = "钢管退货";
  1510. valueListItem42.DataValue = "104";
  1511. valueListItem42.DisplayText = "采购辅料";
  1512. valueListItem43.DataValue = "105";
  1513. valueListItem43.DisplayText = "修复返厂";
  1514. valueListItem44.DataValue = "106";
  1515. valueListItem44.DisplayText = "设备采购";
  1516. valueListItem45.DataValue = "107";
  1517. valueListItem45.DisplayText = "其他内转";
  1518. valueListItem46.DataValue = "108";
  1519. valueListItem46.DisplayText = "内转钢管";
  1520. valueListItem47.DataValue = "109";
  1521. valueListItem47.DisplayText = "内转钢坯";
  1522. valueListItem49.DataValue = "301";
  1523. valueListItem49.DisplayText = "外购钢管";
  1524. this.recordType.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1525. valueListItem39,
  1526. valueListItem40,
  1527. valueListItem41,
  1528. valueListItem42,
  1529. valueListItem43,
  1530. valueListItem44,
  1531. valueListItem45,
  1532. valueListItem46,
  1533. valueListItem47,
  1534. valueListItem49});
  1535. this.recordType.Location = new System.Drawing.Point(24, 87);
  1536. this.recordType.Name = "recordType";
  1537. this.recordType.Size = new System.Drawing.Size(144, 22);
  1538. this.recordType.TabIndex = 602;
  1539. //
  1540. // chkSteelCar
  1541. //
  1542. this.chkSteelCar.AutoSize = true;
  1543. this.chkSteelCar.Font = new System.Drawing.Font("宋体", 10F);
  1544. this.chkSteelCar.Location = new System.Drawing.Point(36, 35);
  1545. this.chkSteelCar.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1546. this.chkSteelCar.Name = "chkSteelCar";
  1547. this.chkSteelCar.Size = new System.Drawing.Size(82, 18);
  1548. this.chkSteelCar.TabIndex = 601;
  1549. this.chkSteelCar.Text = "钢管车辆";
  1550. this.chkSteelCar.UseVisualStyleBackColor = true;
  1551. this.chkSteelCar.CheckedChanged += new System.EventHandler(this.chkSteelCar_CheckedChanged);
  1552. //
  1553. // utbSelect2
  1554. //
  1555. appearance4.Image = ((object)(resources.GetObject("appearance4.Image")));
  1556. this.utbSelect2.Appearance = appearance4;
  1557. this.utbSelect2.AutoSize = true;
  1558. this.utbSelect2.Font = new System.Drawing.Font("宋体", 10F);
  1559. this.utbSelect2.Location = new System.Drawing.Point(643, 8);
  1560. this.utbSelect2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1561. this.utbSelect2.Name = "utbSelect2";
  1562. this.utbSelect2.Size = new System.Drawing.Size(113, 27);
  1563. this.utbSelect2.TabIndex = 600;
  1564. this.utbSelect2.Text = "读取出库记录";
  1565. this.utbSelect2.Visible = false;
  1566. this.utbSelect2.Click += new System.EventHandler(this.utbSelect2_Click);
  1567. //
  1568. // utbSelect
  1569. //
  1570. appearance1.Image = ((object)(resources.GetObject("appearance1.Image")));
  1571. this.utbSelect.Appearance = appearance1;
  1572. this.utbSelect.AutoSize = true;
  1573. this.utbSelect.Font = new System.Drawing.Font("宋体", 10F);
  1574. this.utbSelect.Location = new System.Drawing.Point(541, 8);
  1575. this.utbSelect.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1576. this.utbSelect.Name = "utbSelect";
  1577. this.utbSelect.Size = new System.Drawing.Size(58, 27);
  1578. this.utbSelect.TabIndex = 599;
  1579. this.utbSelect.Text = "选择";
  1580. this.utbSelect.Visible = false;
  1581. this.utbSelect.Click += new System.EventHandler(this.utbSelect_Click);
  1582. //
  1583. // utbSaveAsT
  1584. //
  1585. appearance10.Image = ((object)(resources.GetObject("appearance10.Image")));
  1586. this.utbSaveAsT.Appearance = appearance10;
  1587. this.utbSaveAsT.AutoSize = true;
  1588. this.utbSaveAsT.Font = new System.Drawing.Font("宋体", 10F);
  1589. this.utbSaveAsT.Location = new System.Drawing.Point(375, 8);
  1590. this.utbSaveAsT.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1591. this.utbSaveAsT.Name = "utbSaveAsT";
  1592. this.utbSaveAsT.Size = new System.Drawing.Size(106, 27);
  1593. this.utbSaveAsT.TabIndex = 598;
  1594. this.utbSaveAsT.Text = " 保存为模板";
  1595. this.utbSaveAsT.Visible = false;
  1596. this.utbSaveAsT.Click += new System.EventHandler(this.utbSaveAsT_Click);
  1597. //
  1598. // chkGross
  1599. //
  1600. this.chkGross.AutoSize = true;
  1601. this.chkGross.Font = new System.Drawing.Font("宋体", 10F);
  1602. this.chkGross.Location = new System.Drawing.Point(36, 9);
  1603. this.chkGross.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1604. this.chkGross.Name = "chkGross";
  1605. this.chkGross.Size = new System.Drawing.Size(110, 18);
  1606. this.chkGross.TabIndex = 597;
  1607. this.chkGross.Text = "带货过皮车辆";
  1608. this.chkGross.UseVisualStyleBackColor = true;
  1609. this.chkGross.CheckedChanged += new System.EventHandler(this.chkGross_CheckedChanged);
  1610. //
  1611. // utbSave1
  1612. //
  1613. appearance20.Image = ((object)(resources.GetObject("appearance20.Image")));
  1614. this.utbSave1.Appearance = appearance20;
  1615. this.utbSave1.AutoSize = true;
  1616. this.utbSave1.Font = new System.Drawing.Font("宋体", 10F);
  1617. this.utbSave1.Location = new System.Drawing.Point(24, 118);
  1618. this.utbSave1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1619. this.utbSave1.Name = "utbSave1";
  1620. this.utbSave1.Size = new System.Drawing.Size(65, 27);
  1621. this.utbSave1.TabIndex = 596;
  1622. this.utbSave1.Text = " 保存";
  1623. this.utbSave1.Click += new System.EventHandler(this.utbSave1_Click);
  1624. //
  1625. // ultraTabPageControl4
  1626. //
  1627. this.ultraTabPageControl4.Controls.Add(this.tbScondWt);
  1628. this.ultraTabPageControl4.Location = new System.Drawing.Point(1, 26);
  1629. this.ultraTabPageControl4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1630. this.ultraTabPageControl4.Name = "ultraTabPageControl4";
  1631. this.ultraTabPageControl4.Size = new System.Drawing.Size(840, 235);
  1632. //
  1633. // tbScondWt
  1634. //
  1635. this.tbScondWt.Controls.Add(this.ultraTabSharedControlsPage7);
  1636. this.tbScondWt.Controls.Add(this.ultraTabPageControl21);
  1637. this.tbScondWt.Controls.Add(this.ultraTabPageControl22);
  1638. this.tbScondWt.Controls.Add(this.ultraTabPageControl23);
  1639. this.tbScondWt.Controls.Add(this.ultraTabPageControl19);
  1640. this.tbScondWt.Dock = System.Windows.Forms.DockStyle.Fill;
  1641. this.tbScondWt.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1642. this.tbScondWt.Location = new System.Drawing.Point(0, 0);
  1643. this.tbScondWt.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1644. this.tbScondWt.Name = "tbScondWt";
  1645. this.tbScondWt.SharedControlsPage = this.ultraTabSharedControlsPage7;
  1646. this.tbScondWt.Size = new System.Drawing.Size(840, 235);
  1647. this.tbScondWt.TabIndex = 3;
  1648. this.tbScondWt.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
  1649. ultraTab25.Key = "0";
  1650. ultraTab25.TabPage = this.ultraTabPageControl21;
  1651. ultraTab25.Text = "配车单称重";
  1652. ultraTab22.Key = "3";
  1653. ultraTab22.TabPage = this.ultraTabPageControl19;
  1654. ultraTab22.Text = "废品倒运";
  1655. ultraTab22.Visible = false;
  1656. ultraTab26.Key = "1";
  1657. ultraTab26.TabPage = this.ultraTabPageControl22;
  1658. ultraTab26.Text = "其他称重";
  1659. ultraTab27.Key = "2";
  1660. ultraTab27.TabPage = this.ultraTabPageControl23;
  1661. ultraTab27.Text = "空车回皮";
  1662. this.tbScondWt.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  1663. ultraTab25,
  1664. ultraTab22,
  1665. ultraTab26,
  1666. ultraTab27});
  1667. this.tbScondWt.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.tbScondWt_SelectedTabChanged);
  1668. //
  1669. // ultraTabSharedControlsPage7
  1670. //
  1671. this.ultraTabSharedControlsPage7.Location = new System.Drawing.Point(-10000, -10000);
  1672. this.ultraTabSharedControlsPage7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1673. this.ultraTabSharedControlsPage7.Name = "ultraTabSharedControlsPage7";
  1674. this.ultraTabSharedControlsPage7.Size = new System.Drawing.Size(836, 206);
  1675. //
  1676. // ultraTabPageControl2
  1677. //
  1678. this.ultraTabPageControl2.Controls.Add(this.ultraPanel23);
  1679. this.ultraTabPageControl2.Controls.Add(this.panel1);
  1680. this.ultraTabPageControl2.Controls.Add(this.ultraPanel3);
  1681. this.ultraTabPageControl2.Controls.Add(this.ultraPanel7);
  1682. this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
  1683. this.ultraTabPageControl2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1684. this.ultraTabPageControl2.Name = "ultraTabPageControl2";
  1685. this.ultraTabPageControl2.Size = new System.Drawing.Size(844, 697);
  1686. //
  1687. // ultraPanel23
  1688. //
  1689. //
  1690. // ultraPanel23.ClientArea
  1691. //
  1692. this.ultraPanel23.ClientArea.Controls.Add(this.uceVlid);
  1693. this.ultraPanel23.ClientArea.Controls.Add(this.ugData);
  1694. this.ultraPanel23.Dock = System.Windows.Forms.DockStyle.Fill;
  1695. this.ultraPanel23.Location = new System.Drawing.Point(0, 151);
  1696. this.ultraPanel23.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1697. this.ultraPanel23.Name = "ultraPanel23";
  1698. this.ultraPanel23.Size = new System.Drawing.Size(844, 474);
  1699. this.ultraPanel23.TabIndex = 3;
  1700. //
  1701. // ugData
  1702. //
  1703. this.ugData.DataSource = this.QueryBS;
  1704. ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1705. ultraGridColumn1.Header.Caption = "磅单号";
  1706. ultraGridColumn1.Header.VisiblePosition = 0;
  1707. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
  1708. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  1709. ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1710. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
  1711. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
  1712. ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1713. ultraGridColumn2.Header.Caption = "一次流水号";
  1714. ultraGridColumn2.Header.VisiblePosition = 1;
  1715. ultraGridColumn2.Hidden = true;
  1716. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 10;
  1717. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  1718. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
  1719. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
  1720. ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1721. ultraGridColumn3.Header.Caption = "二次流水号";
  1722. ultraGridColumn3.Header.VisiblePosition = 2;
  1723. ultraGridColumn3.Hidden = true;
  1724. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 12;
  1725. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  1726. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
  1727. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
  1728. ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1729. ultraGridColumn4.Header.Caption = "检斤人";
  1730. ultraGridColumn4.Header.VisiblePosition = 3;
  1731. ultraGridColumn4.Hidden = true;
  1732. ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
  1733. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
  1734. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
  1735. ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1736. ultraGridColumn5.Header.Caption = "检斤人";
  1737. ultraGridColumn5.Header.VisiblePosition = 5;
  1738. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 20;
  1739. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  1740. ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
  1741. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
  1742. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
  1743. ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1744. ultraGridColumn6.EditorComponent = this.uceType;
  1745. ultraGridColumn6.Header.Caption = "类型";
  1746. ultraGridColumn6.Header.VisiblePosition = 7;
  1747. ultraGridColumn6.Hidden = true;
  1748. ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
  1749. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
  1750. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
  1751. ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1752. ultraGridColumn7.EditorComponent = this.uceType;
  1753. ultraGridColumn7.Header.Caption = "类型";
  1754. ultraGridColumn7.Header.VisiblePosition = 9;
  1755. ultraGridColumn7.Hidden = true;
  1756. ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
  1757. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
  1758. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
  1759. ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1760. ultraGridColumn8.Header.Caption = "皮重";
  1761. ultraGridColumn8.Header.VisiblePosition = 4;
  1762. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 12;
  1763. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  1764. ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(66, 0);
  1765. ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1766. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
  1767. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
  1768. ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1769. ultraGridColumn9.Header.Caption = "毛重";
  1770. ultraGridColumn9.Header.VisiblePosition = 6;
  1771. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 14;
  1772. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  1773. ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 0);
  1774. ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1775. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
  1776. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
  1777. ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1778. ultraGridColumn10.Header.Caption = "净重";
  1779. ultraGridColumn10.Header.VisiblePosition = 8;
  1780. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 16;
  1781. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  1782. ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1783. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
  1784. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
  1785. ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1786. ultraGridColumn11.Header.Caption = "称皮时间";
  1787. ultraGridColumn11.Header.VisiblePosition = 10;
  1788. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 18;
  1789. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  1790. ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(160, 0);
  1791. ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1792. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
  1793. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
  1794. ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1795. ultraGridColumn12.Header.Caption = "回皮时间";
  1796. ultraGridColumn12.Header.VisiblePosition = 12;
  1797. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 8;
  1798. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  1799. ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(160, 0);
  1800. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
  1801. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
  1802. ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1803. ultraGridColumn13.Header.Caption = "物资名称";
  1804. ultraGridColumn13.Header.VisiblePosition = 11;
  1805. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 4;
  1806. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  1807. ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(129, 0);
  1808. ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1809. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
  1810. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
  1811. ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1812. ultraGridColumn14.Header.Caption = "过磅类型";
  1813. ultraGridColumn14.Header.VisiblePosition = 13;
  1814. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 24;
  1815. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  1816. ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(107, 0);
  1817. ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1818. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
  1819. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
  1820. ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1821. ultraGridColumn15.Header.Caption = "装车单";
  1822. ultraGridColumn15.Header.VisiblePosition = 14;
  1823. ultraGridColumn15.Hidden = true;
  1824. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 8;
  1825. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  1826. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
  1827. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
  1828. ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1829. ultraGridColumn16.Header.Caption = "收货单位";
  1830. ultraGridColumn16.Header.VisiblePosition = 15;
  1831. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 22;
  1832. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  1833. ultraGridColumn16.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1834. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
  1835. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
  1836. ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1837. ultraGridColumn17.Header.Caption = "订货单位";
  1838. ultraGridColumn17.Header.VisiblePosition = 16;
  1839. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 28;
  1840. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  1841. ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1842. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
  1843. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
  1844. ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1845. ultraGridColumn18.Header.Caption = "发货单位";
  1846. ultraGridColumn18.Header.VisiblePosition = 17;
  1847. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 26;
  1848. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  1849. ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1850. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
  1851. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
  1852. ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1853. ultraGridColumn19.Header.Caption = "运输单位";
  1854. ultraGridColumn19.Header.VisiblePosition = 18;
  1855. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 32;
  1856. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  1857. ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1858. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
  1859. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
  1860. ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1861. ultraGridColumn20.Header.Caption = "备注";
  1862. ultraGridColumn20.Header.VisiblePosition = 19;
  1863. ultraGridColumn20.RowLayoutColumnInfo.OriginX = 30;
  1864. ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
  1865. ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(189, 0);
  1866. ultraGridColumn20.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1867. ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
  1868. ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
  1869. ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1870. ultraGridColumn21.Header.Caption = "作废时间";
  1871. ultraGridColumn21.Header.VisiblePosition = 21;
  1872. ultraGridColumn21.Hidden = true;
  1873. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 48;
  1874. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  1875. ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1876. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
  1877. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
  1878. ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1879. ultraGridColumn22.Header.Caption = "作废人";
  1880. ultraGridColumn22.Header.VisiblePosition = 22;
  1881. ultraGridColumn22.Hidden = true;
  1882. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 46;
  1883. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  1884. ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1885. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
  1886. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
  1887. ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1888. ultraGridColumn23.Header.Caption = "磅房";
  1889. ultraGridColumn23.Header.VisiblePosition = 23;
  1890. ultraGridColumn23.Hidden = true;
  1891. ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
  1892. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
  1893. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
  1894. ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1895. ultraGridColumn24.Header.Caption = "磅房";
  1896. ultraGridColumn24.Header.VisiblePosition = 24;
  1897. ultraGridColumn24.RowLayoutColumnInfo.OriginX = 2;
  1898. ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
  1899. ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(59, 0);
  1900. ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(57, 28);
  1901. ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
  1902. ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
  1903. ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1904. ultraGridColumn25.EditorComponent = this.uceVlid;
  1905. ultraGridColumn25.Header.Caption = "有效标志";
  1906. ultraGridColumn25.Header.VisiblePosition = 20;
  1907. ultraGridColumn25.Hidden = true;
  1908. ultraGridColumn25.RowLayoutColumnInfo.OriginX = 50;
  1909. ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
  1910. ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1911. ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
  1912. ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
  1913. ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1914. ultraGridColumn26.Header.Caption = "实发数";
  1915. ultraGridColumn26.Header.VisiblePosition = 25;
  1916. ultraGridColumn26.Hidden = true;
  1917. ultraGridColumn26.RowLayoutColumnInfo.OriginX = 14;
  1918. ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
  1919. ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
  1920. ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
  1921. ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
  1922. ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1923. ultraGridColumn27.Header.Caption = "车牌号";
  1924. ultraGridColumn27.Header.VisiblePosition = 26;
  1925. ultraGridColumn27.RowLayoutColumnInfo.OriginX = 6;
  1926. ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
  1927. ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(102, 0);
  1928. ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1929. ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
  1930. ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
  1931. ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1932. ultraGridColumn28.Header.Caption = "支数";
  1933. ultraGridColumn28.Header.VisiblePosition = 27;
  1934. ultraGridColumn28.RowLayoutColumnInfo.OriginX = 10;
  1935. ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
  1936. ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(62, 0);
  1937. ultraGridColumn28.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1938. ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
  1939. ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
  1940. ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1941. ultraGridColumn29.Header.Caption = "外径";
  1942. ultraGridColumn29.Header.VisiblePosition = 28;
  1943. ultraGridColumn29.RowLayoutColumnInfo.OriginX = 38;
  1944. ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
  1945. ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
  1946. ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
  1947. ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1948. ultraGridColumn30.Header.Caption = "规格";
  1949. ultraGridColumn30.Header.VisiblePosition = 29;
  1950. ultraGridColumn30.RowLayoutColumnInfo.OriginX = 36;
  1951. ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
  1952. ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
  1953. ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
  1954. ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1955. ultraGridColumn31.Header.Caption = "钢级(牌号)";
  1956. ultraGridColumn31.Header.VisiblePosition = 30;
  1957. ultraGridColumn31.RowLayoutColumnInfo.OriginX = 44;
  1958. ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
  1959. ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
  1960. ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
  1961. ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1962. ultraGridColumn32.Header.Caption = "钢种";
  1963. ultraGridColumn32.Header.VisiblePosition = 31;
  1964. ultraGridColumn32.RowLayoutColumnInfo.OriginX = 42;
  1965. ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
  1966. ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
  1967. ultraGridColumn32.RowLayoutColumnInfo.SpanY = 2;
  1968. ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1969. ultraGridColumn33.Header.Caption = "品名";
  1970. ultraGridColumn33.Header.VisiblePosition = 32;
  1971. ultraGridColumn33.RowLayoutColumnInfo.OriginX = 40;
  1972. ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
  1973. ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
  1974. ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
  1975. ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1976. ultraGridColumn34.Header.Caption = "合同";
  1977. ultraGridColumn34.Header.VisiblePosition = 33;
  1978. ultraGridColumn34.RowLayoutColumnInfo.OriginX = 34;
  1979. ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
  1980. ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
  1981. ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
  1982. ultraGridColumn35.Header.Caption = "炉号";
  1983. ultraGridColumn35.Header.VisiblePosition = 34;
  1984. ultraGridColumn35.RowLayoutColumnInfo.OriginX = 46;
  1985. ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
  1986. ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
  1987. ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
  1988. ultraGridColumn36.Header.VisiblePosition = 35;
  1989. ultraGridColumn36.Hidden = true;
  1990. ultraGridColumn37.Header.VisiblePosition = 36;
  1991. ultraGridColumn37.Hidden = true;
  1992. ultraGridColumn38.Header.VisiblePosition = 37;
  1993. ultraGridColumn38.Hidden = true;
  1994. ultraGridColumn39.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1995. ultraGridColumn39.Header.VisiblePosition = 38;
  1996. ultraGridColumn39.Hidden = true;
  1997. ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1998. ultraGridColumn40.Header.VisiblePosition = 39;
  1999. ultraGridColumn40.Hidden = true;
  2000. ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2001. ultraGridColumn41.Header.VisiblePosition = 40;
  2002. ultraGridColumn41.Hidden = true;
  2003. ultraGridBand1.Columns.AddRange(new object[] {
  2004. ultraGridColumn1,
  2005. ultraGridColumn2,
  2006. ultraGridColumn3,
  2007. ultraGridColumn4,
  2008. ultraGridColumn5,
  2009. ultraGridColumn6,
  2010. ultraGridColumn7,
  2011. ultraGridColumn8,
  2012. ultraGridColumn9,
  2013. ultraGridColumn10,
  2014. ultraGridColumn11,
  2015. ultraGridColumn12,
  2016. ultraGridColumn13,
  2017. ultraGridColumn14,
  2018. ultraGridColumn15,
  2019. ultraGridColumn16,
  2020. ultraGridColumn17,
  2021. ultraGridColumn18,
  2022. ultraGridColumn19,
  2023. ultraGridColumn20,
  2024. ultraGridColumn21,
  2025. ultraGridColumn22,
  2026. ultraGridColumn23,
  2027. ultraGridColumn24,
  2028. ultraGridColumn25,
  2029. ultraGridColumn26,
  2030. ultraGridColumn27,
  2031. ultraGridColumn28,
  2032. ultraGridColumn29,
  2033. ultraGridColumn30,
  2034. ultraGridColumn31,
  2035. ultraGridColumn32,
  2036. ultraGridColumn33,
  2037. ultraGridColumn34,
  2038. ultraGridColumn35,
  2039. ultraGridColumn36,
  2040. ultraGridColumn37,
  2041. ultraGridColumn38,
  2042. ultraGridColumn39,
  2043. ultraGridColumn40,
  2044. ultraGridColumn41});
  2045. rowLayout1.ColumnInfos.AddRange(new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo[] {
  2046. rowLayoutColumnInfo1,
  2047. rowLayoutColumnInfo2,
  2048. rowLayoutColumnInfo3,
  2049. rowLayoutColumnInfo4,
  2050. rowLayoutColumnInfo5,
  2051. rowLayoutColumnInfo6,
  2052. rowLayoutColumnInfo7,
  2053. rowLayoutColumnInfo8,
  2054. rowLayoutColumnInfo9,
  2055. rowLayoutColumnInfo10,
  2056. rowLayoutColumnInfo11,
  2057. rowLayoutColumnInfo12,
  2058. rowLayoutColumnInfo13,
  2059. rowLayoutColumnInfo14,
  2060. rowLayoutColumnInfo15,
  2061. rowLayoutColumnInfo16,
  2062. rowLayoutColumnInfo17,
  2063. rowLayoutColumnInfo18,
  2064. rowLayoutColumnInfo19,
  2065. rowLayoutColumnInfo20,
  2066. rowLayoutColumnInfo21,
  2067. rowLayoutColumnInfo22,
  2068. rowLayoutColumnInfo23,
  2069. rowLayoutColumnInfo24,
  2070. rowLayoutColumnInfo25,
  2071. rowLayoutColumnInfo26,
  2072. rowLayoutColumnInfo27,
  2073. rowLayoutColumnInfo28,
  2074. rowLayoutColumnInfo29,
  2075. rowLayoutColumnInfo30,
  2076. rowLayoutColumnInfo31,
  2077. rowLayoutColumnInfo32,
  2078. rowLayoutColumnInfo33,
  2079. rowLayoutColumnInfo34,
  2080. rowLayoutColumnInfo35,
  2081. rowLayoutColumnInfo36,
  2082. rowLayoutColumnInfo37,
  2083. rowLayoutColumnInfo38,
  2084. rowLayoutColumnInfo39,
  2085. rowLayoutColumnInfo40,
  2086. rowLayoutColumnInfo41});
  2087. rowLayout1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
  2088. ultraGridBand1.RowLayouts.AddRange(new Infragistics.Win.UltraWinGrid.RowLayout[] {
  2089. rowLayout1});
  2090. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  2091. this.ugData.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  2092. this.ugData.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.None;
  2093. this.ugData.Dock = System.Windows.Forms.DockStyle.Fill;
  2094. this.ugData.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2095. this.ugData.Location = new System.Drawing.Point(0, 0);
  2096. this.ugData.Margin = new System.Windows.Forms.Padding(4);
  2097. this.ugData.Name = "ugData";
  2098. this.ugData.Size = new System.Drawing.Size(844, 474);
  2099. this.ugData.TabIndex = 72;
  2100. this.ugData.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.ugData_InitializeRow);
  2101. this.ugData.AfterRowActivate += new System.EventHandler(this.ugData_AfterRowActivate);
  2102. this.ugData.AfterRowRegionScroll += new Infragistics.Win.UltraWinGrid.RowScrollRegionEventHandler(this.ugData_AfterRowRegionScroll);
  2103. this.ugData.BeforeRowDeactivate += new System.ComponentModel.CancelEventHandler(this.ugData_BeforeRowDeactivate);
  2104. this.ugData.DoubleClickCell += new Infragistics.Win.UltraWinGrid.DoubleClickCellEventHandler(this.ugData_DoubleClickCell);
  2105. this.ugData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.CurrentGrid_KeyDown);
  2106. //
  2107. // panel1
  2108. //
  2109. this.panel1.Controls.Add(this.lblCount);
  2110. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  2111. this.panel1.Location = new System.Drawing.Point(0, 127);
  2112. this.panel1.Name = "panel1";
  2113. this.panel1.Size = new System.Drawing.Size(844, 24);
  2114. this.panel1.TabIndex = 74;
  2115. //
  2116. // lblCount
  2117. //
  2118. this.lblCount.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2119. this.lblCount.Dock = System.Windows.Forms.DockStyle.Fill;
  2120. this.lblCount.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold);
  2121. this.lblCount.Location = new System.Drawing.Point(0, 0);
  2122. this.lblCount.Name = "lblCount";
  2123. this.lblCount.Size = new System.Drawing.Size(844, 24);
  2124. this.lblCount.TabIndex = 0;
  2125. this.lblCount.Text = "无数据";
  2126. this.lblCount.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2127. //
  2128. // ultraPanel3
  2129. //
  2130. this.ultraPanel3.AutoSize = true;
  2131. //
  2132. // ultraPanel3.ClientArea
  2133. //
  2134. this.ultraPanel3.ClientArea.Controls.Add(this.upQueryTop);
  2135. this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Top;
  2136. this.ultraPanel3.Location = new System.Drawing.Point(0, 0);
  2137. this.ultraPanel3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2138. this.ultraPanel3.Name = "ultraPanel3";
  2139. this.ultraPanel3.Size = new System.Drawing.Size(844, 127);
  2140. this.ultraPanel3.TabIndex = 2;
  2141. //
  2142. // upQueryTop
  2143. //
  2144. //
  2145. // upQueryTop.ClientArea
  2146. //
  2147. this.upQueryTop.ClientArea.Controls.Add(this.utbReset);
  2148. this.upQueryTop.ClientArea.Controls.Add(this.utnQuery);
  2149. this.upQueryTop.ClientArea.Controls.Add(this.uteJudgeStoveNo);
  2150. this.upQueryTop.ClientArea.Controls.Add(this.label14);
  2151. this.upQueryTop.ClientArea.Controls.Add(this.uteReceiveName);
  2152. this.upQueryTop.ClientArea.Controls.Add(this.label11);
  2153. this.upQueryTop.ClientArea.Controls.Add(this.uteShippersName);
  2154. this.upQueryTop.ClientArea.Controls.Add(this.label10);
  2155. this.upQueryTop.ClientArea.Controls.Add(this.uteOrder);
  2156. this.upQueryTop.ClientArea.Controls.Add(this.label9);
  2157. this.upQueryTop.ClientArea.Controls.Add(this.utePound);
  2158. this.upQueryTop.ClientArea.Controls.Add(this.label7);
  2159. this.upQueryTop.ClientArea.Controls.Add(this.uteMemo);
  2160. this.upQueryTop.ClientArea.Controls.Add(this.label12);
  2161. this.upQueryTop.ClientArea.Controls.Add(this.uceQueryCarType);
  2162. this.upQueryTop.ClientArea.Controls.Add(this.uteCarNo);
  2163. this.upQueryTop.ClientArea.Controls.Add(this.label8);
  2164. this.upQueryTop.ClientArea.Controls.Add(this.label6);
  2165. this.upQueryTop.ClientArea.Controls.Add(this.RegEndTime);
  2166. this.upQueryTop.ClientArea.Controls.Add(this.chkTim);
  2167. this.upQueryTop.ClientArea.Controls.Add(this.label4);
  2168. this.upQueryTop.ClientArea.Controls.Add(this.RegStartTime);
  2169. this.upQueryTop.Dock = System.Windows.Forms.DockStyle.Top;
  2170. this.upQueryTop.Location = new System.Drawing.Point(0, 0);
  2171. this.upQueryTop.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2172. this.upQueryTop.Name = "upQueryTop";
  2173. this.upQueryTop.Size = new System.Drawing.Size(844, 127);
  2174. this.upQueryTop.TabIndex = 0;
  2175. //
  2176. // utbReset
  2177. //
  2178. this.utbReset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2179. appearance14.Image = ((object)(resources.GetObject("appearance14.Image")));
  2180. this.utbReset.Appearance = appearance14;
  2181. this.utbReset.AutoSize = true;
  2182. this.utbReset.Font = new System.Drawing.Font("宋体", 10F);
  2183. this.utbReset.Location = new System.Drawing.Point(696, 6);
  2184. this.utbReset.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2185. this.utbReset.Name = "utbReset";
  2186. this.utbReset.Size = new System.Drawing.Size(58, 27);
  2187. this.utbReset.TabIndex = 598;
  2188. this.utbReset.Text = "重置";
  2189. this.utbReset.Click += new System.EventHandler(this.utbReset_Click);
  2190. //
  2191. // utnQuery
  2192. //
  2193. this.utnQuery.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2194. appearance17.Image = ((object)(resources.GetObject("appearance17.Image")));
  2195. this.utnQuery.Appearance = appearance17;
  2196. this.utnQuery.AutoSize = true;
  2197. this.utnQuery.Font = new System.Drawing.Font("宋体", 10F);
  2198. this.utnQuery.Location = new System.Drawing.Point(696, 40);
  2199. this.utnQuery.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2200. this.utnQuery.Name = "utnQuery";
  2201. this.utnQuery.Size = new System.Drawing.Size(58, 27);
  2202. this.utnQuery.TabIndex = 597;
  2203. this.utnQuery.Text = "查询";
  2204. this.utnQuery.Click += new System.EventHandler(this.utnQuery_Click);
  2205. //
  2206. // uteJudgeStoveNo
  2207. //
  2208. this.uteJudgeStoveNo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2209. | System.Windows.Forms.AnchorStyles.Left)));
  2210. this.uteJudgeStoveNo.Location = new System.Drawing.Point(200, 76);
  2211. this.uteJudgeStoveNo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2212. this.uteJudgeStoveNo.Name = "uteJudgeStoveNo";
  2213. this.uteJudgeStoveNo.Size = new System.Drawing.Size(110, 21);
  2214. this.uteJudgeStoveNo.TabIndex = 958;
  2215. //
  2216. // label14
  2217. //
  2218. this.label14.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2219. | System.Windows.Forms.AnchorStyles.Left)));
  2220. this.label14.AutoSize = true;
  2221. this.label14.Location = new System.Drawing.Point(166, 79);
  2222. this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2223. this.label14.Name = "label14";
  2224. this.label14.Size = new System.Drawing.Size(29, 12);
  2225. this.label14.TabIndex = 957;
  2226. this.label14.Text = "炉号";
  2227. //
  2228. // uteReceiveName
  2229. //
  2230. this.uteReceiveName.Location = new System.Drawing.Point(723, 42);
  2231. this.uteReceiveName.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2232. this.uteReceiveName.Name = "uteReceiveName";
  2233. this.uteReceiveName.Size = new System.Drawing.Size(121, 21);
  2234. this.uteReceiveName.TabIndex = 950;
  2235. this.uteReceiveName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
  2236. //
  2237. // label11
  2238. //
  2239. this.label11.AutoSize = true;
  2240. this.label11.Location = new System.Drawing.Point(651, 48);
  2241. this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2242. this.label11.Name = "label11";
  2243. this.label11.Size = new System.Drawing.Size(53, 12);
  2244. this.label11.TabIndex = 949;
  2245. this.label11.Text = "收货单位";
  2246. //
  2247. // uteShippersName
  2248. //
  2249. this.uteShippersName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2250. | System.Windows.Forms.AnchorStyles.Left)));
  2251. this.uteShippersName.Location = new System.Drawing.Point(517, 43);
  2252. this.uteShippersName.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2253. this.uteShippersName.Name = "uteShippersName";
  2254. this.uteShippersName.Size = new System.Drawing.Size(121, 21);
  2255. this.uteShippersName.TabIndex = 950;
  2256. this.uteShippersName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
  2257. //
  2258. // label10
  2259. //
  2260. this.label10.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2261. | System.Windows.Forms.AnchorStyles.Left)));
  2262. this.label10.AutoSize = true;
  2263. this.label10.Location = new System.Drawing.Point(442, 47);
  2264. this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2265. this.label10.Name = "label10";
  2266. this.label10.Size = new System.Drawing.Size(53, 12);
  2267. this.label10.TabIndex = 949;
  2268. this.label10.Text = "发货单位";
  2269. //
  2270. // uteOrder
  2271. //
  2272. this.uteOrder.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2273. | System.Windows.Forms.AnchorStyles.Left)));
  2274. this.uteOrder.Location = new System.Drawing.Point(279, 43);
  2275. this.uteOrder.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2276. this.uteOrder.Name = "uteOrder";
  2277. this.uteOrder.Size = new System.Drawing.Size(121, 21);
  2278. this.uteOrder.TabIndex = 950;
  2279. this.uteOrder.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
  2280. //
  2281. // label9
  2282. //
  2283. this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2284. | System.Windows.Forms.AnchorStyles.Left)));
  2285. this.label9.AutoSize = true;
  2286. this.label9.Location = new System.Drawing.Point(209, 47);
  2287. this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2288. this.label9.Name = "label9";
  2289. this.label9.Size = new System.Drawing.Size(53, 12);
  2290. this.label9.TabIndex = 949;
  2291. this.label9.Text = "订货单位";
  2292. //
  2293. // utePound
  2294. //
  2295. this.utePound.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2296. | System.Windows.Forms.AnchorStyles.Left)));
  2297. this.utePound.Location = new System.Drawing.Point(57, 43);
  2298. this.utePound.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2299. this.utePound.Name = "utePound";
  2300. this.utePound.Size = new System.Drawing.Size(143, 21);
  2301. this.utePound.TabIndex = 950;
  2302. //
  2303. // label7
  2304. //
  2305. this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2306. | System.Windows.Forms.AnchorStyles.Left)));
  2307. this.label7.AutoSize = true;
  2308. this.label7.Location = new System.Drawing.Point(4, 47);
  2309. this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2310. this.label7.Name = "label7";
  2311. this.label7.Size = new System.Drawing.Size(41, 12);
  2312. this.label7.TabIndex = 949;
  2313. this.label7.Text = "磅单号";
  2314. //
  2315. // uteMemo
  2316. //
  2317. this.uteMemo.Location = new System.Drawing.Point(44, 76);
  2318. this.uteMemo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2319. this.uteMemo.Name = "uteMemo";
  2320. this.uteMemo.Size = new System.Drawing.Size(110, 21);
  2321. this.uteMemo.TabIndex = 950;
  2322. this.uteMemo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
  2323. //
  2324. // label12
  2325. //
  2326. this.label12.AutoSize = true;
  2327. this.label12.Location = new System.Drawing.Point(0, 81);
  2328. this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2329. this.label12.Name = "label12";
  2330. this.label12.Size = new System.Drawing.Size(29, 12);
  2331. this.label12.TabIndex = 949;
  2332. this.label12.Text = "备注";
  2333. //
  2334. // uceQueryCarType
  2335. //
  2336. valueListItem50.DataValue = "102";
  2337. valueListItem50.DisplayText = "钢坯采购";
  2338. valueListItem51.DataValue = "103";
  2339. valueListItem51.DisplayText = "钢管退货";
  2340. valueListItem52.DataValue = "104";
  2341. valueListItem52.DisplayText = "采购辅料";
  2342. valueListItem53.DataValue = "105";
  2343. valueListItem53.DisplayText = "修复返厂";
  2344. valueListItem54.DataValue = "106";
  2345. valueListItem54.DisplayText = "设备采购";
  2346. valueListItem55.DataValue = "201";
  2347. valueListItem55.DisplayText = "钢管发运";
  2348. valueListItem56.DataValue = "202";
  2349. valueListItem56.DisplayText = "废料销售";
  2350. valueListItem57.DataValue = "203";
  2351. valueListItem57.DisplayText = "修复出厂";
  2352. valueListItem58.DataValue = "204";
  2353. valueListItem58.DisplayText = "其他内转";
  2354. valueListItem59.DataValue = "205";
  2355. valueListItem59.DisplayText = "内转钢管";
  2356. valueListItem60.DataValue = "206";
  2357. valueListItem60.DisplayText = "内转钢坯";
  2358. valueListItem61.DataValue = "200";
  2359. valueListItem61.DisplayText = "钢管销售";
  2360. valueListItem62.DataValue = "208";
  2361. valueListItem62.DisplayText = "废品倒运";
  2362. valueListItem66.DataValue = "301";
  2363. valueListItem66.DisplayText = "外购钢管";
  2364. this.uceQueryCarType.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  2365. valueListItem50,
  2366. valueListItem51,
  2367. valueListItem52,
  2368. valueListItem53,
  2369. valueListItem54,
  2370. valueListItem55,
  2371. valueListItem56,
  2372. valueListItem57,
  2373. valueListItem58,
  2374. valueListItem59,
  2375. valueListItem60,
  2376. valueListItem61,
  2377. valueListItem62,
  2378. valueListItem66});
  2379. this.uceQueryCarType.Location = new System.Drawing.Point(702, 9);
  2380. this.uceQueryCarType.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2381. this.uceQueryCarType.Name = "uceQueryCarType";
  2382. this.uceQueryCarType.Size = new System.Drawing.Size(121, 21);
  2383. this.uceQueryCarType.TabIndex = 950;
  2384. this.uceQueryCarType.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
  2385. //
  2386. // uteCarNo
  2387. //
  2388. this.uteCarNo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2389. | System.Windows.Forms.AnchorStyles.Left)));
  2390. this.uteCarNo.Location = new System.Drawing.Point(541, 8);
  2391. this.uteCarNo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2392. this.uteCarNo.Name = "uteCarNo";
  2393. this.uteCarNo.Size = new System.Drawing.Size(97, 21);
  2394. this.uteCarNo.TabIndex = 950;
  2395. this.uteCarNo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
  2396. //
  2397. // label8
  2398. //
  2399. this.label8.AutoSize = true;
  2400. this.label8.Location = new System.Drawing.Point(656, 11);
  2401. this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2402. this.label8.Name = "label8";
  2403. this.label8.Size = new System.Drawing.Size(29, 12);
  2404. this.label8.TabIndex = 949;
  2405. this.label8.Text = "类型";
  2406. //
  2407. // label6
  2408. //
  2409. this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2410. | System.Windows.Forms.AnchorStyles.Left)));
  2411. this.label6.AutoSize = true;
  2412. this.label6.Location = new System.Drawing.Point(485, 13);
  2413. this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2414. this.label6.Name = "label6";
  2415. this.label6.Size = new System.Drawing.Size(41, 12);
  2416. this.label6.TabIndex = 949;
  2417. this.label6.Text = "车牌号";
  2418. //
  2419. // RegEndTime
  2420. //
  2421. this.RegEndTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2422. | System.Windows.Forms.AnchorStyles.Left)));
  2423. this.RegEndTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
  2424. this.RegEndTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  2425. this.RegEndTime.Location = new System.Drawing.Point(289, 7);
  2426. this.RegEndTime.Margin = new System.Windows.Forms.Padding(4);
  2427. this.RegEndTime.Name = "RegEndTime";
  2428. this.RegEndTime.Size = new System.Drawing.Size(159, 21);
  2429. this.RegEndTime.TabIndex = 954;
  2430. //
  2431. // chkTim
  2432. //
  2433. this.chkTim.AutoSize = true;
  2434. this.chkTim.Checked = true;
  2435. this.chkTim.CheckState = System.Windows.Forms.CheckState.Checked;
  2436. this.chkTim.Enabled = false;
  2437. this.chkTim.Location = new System.Drawing.Point(4, 10);
  2438. this.chkTim.Margin = new System.Windows.Forms.Padding(4);
  2439. this.chkTim.Name = "chkTim";
  2440. this.chkTim.Size = new System.Drawing.Size(72, 16);
  2441. this.chkTim.TabIndex = 948;
  2442. this.chkTim.Text = "称重时间";
  2443. this.chkTim.UseVisualStyleBackColor = false;
  2444. //
  2445. // label4
  2446. //
  2447. this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2448. | System.Windows.Forms.AnchorStyles.Left)));
  2449. this.label4.AutoSize = true;
  2450. this.label4.Location = new System.Drawing.Point(259, 10);
  2451. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2452. this.label4.Name = "label4";
  2453. this.label4.Size = new System.Drawing.Size(17, 12);
  2454. this.label4.TabIndex = 953;
  2455. this.label4.Text = "至";
  2456. //
  2457. // RegStartTime
  2458. //
  2459. this.RegStartTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2460. | System.Windows.Forms.AnchorStyles.Left)));
  2461. this.RegStartTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
  2462. this.RegStartTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  2463. this.RegStartTime.Location = new System.Drawing.Point(92, 7);
  2464. this.RegStartTime.Margin = new System.Windows.Forms.Padding(4);
  2465. this.RegStartTime.Name = "RegStartTime";
  2466. this.RegStartTime.Size = new System.Drawing.Size(166, 21);
  2467. this.RegStartTime.TabIndex = 948;
  2468. //
  2469. // ultraPanel7
  2470. //
  2471. //
  2472. // ultraPanel7.ClientArea
  2473. //
  2474. this.ultraPanel7.ClientArea.Controls.Add(this.ultraButton3);
  2475. this.ultraPanel7.ClientArea.Controls.Add(this.utbExport);
  2476. this.ultraPanel7.ClientArea.Controls.Add(this.unExcel);
  2477. this.ultraPanel7.ClientArea.Controls.Add(this.utnUpdate);
  2478. this.ultraPanel7.ClientArea.Controls.Add(this.utbPrint);
  2479. this.ultraPanel7.ClientArea.Controls.Add(this.utbPrintSingle);
  2480. this.ultraPanel7.ClientArea.Controls.Add(this.btnDelete);
  2481. this.ultraPanel7.ClientArea.Controls.Add(this.utbDelete2);
  2482. this.ultraPanel7.Dock = System.Windows.Forms.DockStyle.Bottom;
  2483. this.ultraPanel7.Location = new System.Drawing.Point(0, 625);
  2484. this.ultraPanel7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2485. this.ultraPanel7.Name = "ultraPanel7";
  2486. this.ultraPanel7.Size = new System.Drawing.Size(844, 72);
  2487. this.ultraPanel7.TabIndex = 1;
  2488. //
  2489. // ultraButton3
  2490. //
  2491. this.ultraButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2492. appearance25.Image = ((object)(resources.GetObject("appearance25.Image")));
  2493. this.ultraButton3.Appearance = appearance25;
  2494. this.ultraButton3.AutoSize = true;
  2495. this.ultraButton3.Font = new System.Drawing.Font("宋体", 10F);
  2496. this.ultraButton3.Location = new System.Drawing.Point(28, 48);
  2497. this.ultraButton3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2498. this.ultraButton3.Name = "ultraButton3";
  2499. this.ultraButton3.Size = new System.Drawing.Size(93, 27);
  2500. this.ultraButton3.TabIndex = 605;
  2501. this.ultraButton3.Text = "磅单打印2";
  2502. this.ultraButton3.Visible = false;
  2503. this.ultraButton3.Click += new System.EventHandler(this.ultraButton3_Click);
  2504. //
  2505. // utbExport
  2506. //
  2507. this.utbExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2508. appearance34.Image = ((object)(resources.GetObject("appearance34.Image")));
  2509. this.utbExport.Appearance = appearance34;
  2510. this.utbExport.AutoSize = true;
  2511. this.utbExport.Font = new System.Drawing.Font("宋体", 10F);
  2512. this.utbExport.Location = new System.Drawing.Point(426, 20);
  2513. this.utbExport.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2514. this.utbExport.Name = "utbExport";
  2515. this.utbExport.Size = new System.Drawing.Size(58, 27);
  2516. this.utbExport.TabIndex = 604;
  2517. this.utbExport.Text = "导出";
  2518. this.utbExport.Click += new System.EventHandler(this.utbExport_Click);
  2519. //
  2520. // unExcel
  2521. //
  2522. this.unExcel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2523. appearance33.Image = ((object)(resources.GetObject("appearance33.Image")));
  2524. this.unExcel.Appearance = appearance33;
  2525. this.unExcel.AutoSize = true;
  2526. this.unExcel.Font = new System.Drawing.Font("宋体", 10F);
  2527. this.unExcel.Location = new System.Drawing.Point(343, 19);
  2528. this.unExcel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2529. this.unExcel.Name = "unExcel";
  2530. this.unExcel.Size = new System.Drawing.Size(58, 27);
  2531. this.unExcel.TabIndex = 603;
  2532. this.unExcel.Text = "统计";
  2533. this.unExcel.Click += new System.EventHandler(this.unExcel_Click);
  2534. //
  2535. // utnUpdate
  2536. //
  2537. this.utnUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2538. appearance27.Image = ((object)(resources.GetObject("appearance27.Image")));
  2539. this.utnUpdate.Appearance = appearance27;
  2540. this.utnUpdate.AutoSize = true;
  2541. this.utnUpdate.Font = new System.Drawing.Font("宋体", 10F);
  2542. this.utnUpdate.Location = new System.Drawing.Point(510, 20);
  2543. this.utnUpdate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2544. this.utnUpdate.Name = "utnUpdate";
  2545. this.utnUpdate.Size = new System.Drawing.Size(58, 27);
  2546. this.utnUpdate.TabIndex = 602;
  2547. this.utnUpdate.Text = "修改";
  2548. this.utnUpdate.Click += new System.EventHandler(this.utnUpdate_Click);
  2549. //
  2550. // utbPrint
  2551. //
  2552. this.utbPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2553. appearance22.Image = ((object)(resources.GetObject("appearance22.Image")));
  2554. this.utbPrint.Appearance = appearance22;
  2555. this.utbPrint.AutoSize = true;
  2556. this.utbPrint.Font = new System.Drawing.Font("宋体", 10F);
  2557. this.utbPrint.Location = new System.Drawing.Point(29, 19);
  2558. this.utbPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2559. this.utbPrint.Name = "utbPrint";
  2560. this.utbPrint.Size = new System.Drawing.Size(86, 27);
  2561. this.utbPrint.TabIndex = 601;
  2562. this.utbPrint.Text = "磅单打印";
  2563. this.utbPrint.Click += new System.EventHandler(this.utbPrint_Click);
  2564. //
  2565. // utbPrintSingle
  2566. //
  2567. this.utbPrintSingle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2568. appearance29.Image = ((object)(resources.GetObject("appearance29.Image")));
  2569. this.utbPrintSingle.Appearance = appearance29;
  2570. this.utbPrintSingle.AutoSize = true;
  2571. this.utbPrintSingle.Font = new System.Drawing.Font("宋体", 10F);
  2572. this.utbPrintSingle.Location = new System.Drawing.Point(185, 20);
  2573. this.utbPrintSingle.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2574. this.utbPrintSingle.Name = "utbPrintSingle";
  2575. this.utbPrintSingle.Size = new System.Drawing.Size(86, 27);
  2576. this.utbPrintSingle.TabIndex = 600;
  2577. this.utbPrintSingle.Text = "单项打印";
  2578. this.utbPrintSingle.Click += new System.EventHandler(this.utbPrintSingle_Click);
  2579. //
  2580. // btnDelete
  2581. //
  2582. this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2583. appearance28.Image = ((object)(resources.GetObject("appearance28.Image")));
  2584. this.btnDelete.Appearance = appearance28;
  2585. this.btnDelete.AutoSize = true;
  2586. this.btnDelete.Enabled = false;
  2587. this.btnDelete.Font = new System.Drawing.Font("宋体", 10F);
  2588. this.btnDelete.Location = new System.Drawing.Point(746, 21);
  2589. this.btnDelete.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2590. this.btnDelete.Name = "btnDelete";
  2591. this.btnDelete.Size = new System.Drawing.Size(58, 27);
  2592. this.btnDelete.TabIndex = 599;
  2593. this.btnDelete.Text = "删除";
  2594. this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
  2595. //
  2596. // utbDelete2
  2597. //
  2598. this.utbDelete2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2599. appearance35.Image = ((object)(resources.GetObject("appearance35.Image")));
  2600. this.utbDelete2.Appearance = appearance35;
  2601. this.utbDelete2.AutoSize = true;
  2602. this.utbDelete2.Font = new System.Drawing.Font("宋体", 10F);
  2603. this.utbDelete2.Location = new System.Drawing.Point(593, 20);
  2604. this.utbDelete2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2605. this.utbDelete2.Name = "utbDelete2";
  2606. this.utbDelete2.Size = new System.Drawing.Size(58, 27);
  2607. this.utbDelete2.TabIndex = 598;
  2608. this.utbDelete2.Text = "重过";
  2609. this.utbDelete2.Click += new System.EventHandler(this.btnDelete_Click);
  2610. //
  2611. // ultraTabPageControl1
  2612. //
  2613. this.ultraTabPageControl1.Controls.Add(this.plImgShow);
  2614. this.ultraTabPageControl1.Controls.Add(this.splitContainer1);
  2615. this.ultraTabPageControl1.Controls.Add(this.ultraPanel20);
  2616. this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 23);
  2617. this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2618. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  2619. this.ultraTabPageControl1.Size = new System.Drawing.Size(844, 697);
  2620. //
  2621. // plImgShow
  2622. //
  2623. this.plImgShow.Controls.Add(this.pictureShow);
  2624. this.plImgShow.Location = new System.Drawing.Point(180, 149);
  2625. this.plImgShow.Name = "plImgShow";
  2626. this.plImgShow.Size = new System.Drawing.Size(73, 60);
  2627. this.plImgShow.TabIndex = 82;
  2628. this.plImgShow.Visible = false;
  2629. //
  2630. // pictureShow
  2631. //
  2632. this.pictureShow.BackColor = System.Drawing.Color.GreenYellow;
  2633. this.pictureShow.Dock = System.Windows.Forms.DockStyle.Fill;
  2634. this.pictureShow.Location = new System.Drawing.Point(0, 0);
  2635. this.pictureShow.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2636. this.pictureShow.Name = "pictureShow";
  2637. this.pictureShow.Size = new System.Drawing.Size(73, 60);
  2638. this.pictureShow.TabIndex = 2;
  2639. this.pictureShow.TabStop = false;
  2640. this.pictureShow.DoubleClick += new System.EventHandler(this.pictureShow_DoubleClick);
  2641. //
  2642. // splitContainer1
  2643. //
  2644. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  2645. this.splitContainer1.Location = new System.Drawing.Point(0, 83);
  2646. this.splitContainer1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2647. this.splitContainer1.Name = "splitContainer1";
  2648. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  2649. //
  2650. // splitContainer1.Panel1
  2651. //
  2652. this.splitContainer1.Panel1.Controls.Add(this.uctMemo);
  2653. this.splitContainer1.Panel1.Controls.Add(this.uceType2);
  2654. this.splitContainer1.Panel1.Controls.Add(this.uteChangeType);
  2655. this.splitContainer1.Panel1.Controls.Add(this.uteEdit);
  2656. this.splitContainer1.Panel1.Controls.Add(this.delete);
  2657. this.splitContainer1.Panel1.Controls.Add(this.uceType);
  2658. this.splitContainer1.Panel1.Controls.Add(this.CurrentGrid);
  2659. //
  2660. // splitContainer1.Panel2
  2661. //
  2662. this.splitContainer1.Panel2.Controls.Add(this.tbWt);
  2663. this.splitContainer1.Panel2.RightToLeft = System.Windows.Forms.RightToLeft.No;
  2664. this.splitContainer1.Size = new System.Drawing.Size(844, 614);
  2665. this.splitContainer1.SplitterDistance = 346;
  2666. this.splitContainer1.TabIndex = 581;
  2667. this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer1_SplitterMoved);
  2668. //
  2669. // uceType2
  2670. //
  2671. editorButton4.Text = "修改 ";
  2672. this.uceType2.ButtonsRight.Add(editorButton4);
  2673. this.uceType2.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  2674. valueListItem3.DataValue = "101";
  2675. valueListItem3.DisplayText = "空车过皮";
  2676. valueListItem4.DataValue = "102";
  2677. valueListItem4.DisplayText = "钢坯采购";
  2678. valueListItem5.DataValue = "103";
  2679. valueListItem5.DisplayText = "钢管退货";
  2680. valueListItem6.DataValue = "104";
  2681. valueListItem6.DisplayText = "采购辅料";
  2682. valueListItem7.DataValue = "105";
  2683. valueListItem7.DisplayText = "修复返厂";
  2684. valueListItem8.DataValue = "106";
  2685. valueListItem8.DisplayText = "设备采购";
  2686. valueListItem9.DataValue = "107";
  2687. valueListItem9.DisplayText = "其他内转";
  2688. valueListItem10.DataValue = "108";
  2689. valueListItem10.DisplayText = "内转钢管";
  2690. valueListItem11.DataValue = "109";
  2691. valueListItem11.DisplayText = "内转钢坯";
  2692. valueListItem12.DataValue = "201";
  2693. valueListItem12.DisplayText = "配车单称重";
  2694. valueListItem13.DataValue = "202";
  2695. valueListItem13.DisplayText = "废料销售";
  2696. valueListItem19.DataValue = "203";
  2697. valueListItem19.DisplayText = "修复出厂";
  2698. valueListItem20.DataValue = "204";
  2699. valueListItem20.DisplayText = "其他内转";
  2700. valueListItem21.DataValue = "205";
  2701. valueListItem21.DisplayText = "内转钢管";
  2702. valueListItem22.DataValue = "206";
  2703. valueListItem22.DisplayText = "内转钢坯";
  2704. valueListItem23.DataValue = "207";
  2705. valueListItem23.DisplayText = "空车回皮";
  2706. valueListItem24.DataValue = "200";
  2707. valueListItem24.DisplayText = "钢管销售";
  2708. valueListItem25.DataValue = "208";
  2709. valueListItem25.DisplayText = "废品倒运";
  2710. valueListItem48.DataValue = "110";
  2711. valueListItem48.DisplayText = "钢坯退货";
  2712. valueListItem64.DataValue = "301";
  2713. valueListItem64.DisplayText = "外购钢管";
  2714. valueListItem65.DataValue = "210";
  2715. valueListItem65.DisplayText = "钢坯退货";
  2716. this.uceType2.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  2717. valueListItem3,
  2718. valueListItem4,
  2719. valueListItem5,
  2720. valueListItem6,
  2721. valueListItem7,
  2722. valueListItem8,
  2723. valueListItem9,
  2724. valueListItem10,
  2725. valueListItem11,
  2726. valueListItem12,
  2727. valueListItem13,
  2728. valueListItem19,
  2729. valueListItem20,
  2730. valueListItem21,
  2731. valueListItem22,
  2732. valueListItem23,
  2733. valueListItem24,
  2734. valueListItem25,
  2735. valueListItem48,
  2736. valueListItem64,
  2737. valueListItem65});
  2738. this.uceType2.Location = new System.Drawing.Point(628, 198);
  2739. this.uceType2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2740. this.uceType2.Name = "uceType2";
  2741. this.uceType2.Size = new System.Drawing.Size(144, 21);
  2742. this.uceType2.TabIndex = 81;
  2743. this.uceType2.Visible = false;
  2744. this.uceType2.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.uteChangeType_EditorButtonClick);
  2745. //
  2746. // uteEdit
  2747. //
  2748. editorButton5.Key = "select";
  2749. editorButton5.Text = "修改";
  2750. this.uteEdit.ButtonsRight.Add(editorButton5);
  2751. this.uteEdit.Location = new System.Drawing.Point(602, 145);
  2752. this.uteEdit.Margin = new System.Windows.Forms.Padding(4);
  2753. this.uteEdit.Name = "uteEdit";
  2754. this.uteEdit.Size = new System.Drawing.Size(183, 21);
  2755. this.uteEdit.TabIndex = 79;
  2756. this.uteEdit.Visible = false;
  2757. this.uteEdit.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.uteEdit_EditorButtonClick);
  2758. //
  2759. // CurrentGrid
  2760. //
  2761. this.CurrentGrid.DataSource = this.cmmWeightRecordEntityBindingSource;
  2762. ultraGridColumn42.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  2763. ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2764. ultraGridColumn42.EditorComponent = this.delete;
  2765. ultraGridColumn42.Header.Caption = "过磅流水号";
  2766. ultraGridColumn42.Header.VisiblePosition = 0;
  2767. ultraGridColumn42.RowLayoutColumnInfo.OriginX = 0;
  2768. ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
  2769. ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(149, 0);
  2770. ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
  2771. ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
  2772. ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2773. ultraGridColumn43.Header.Caption = "过磅时间";
  2774. ultraGridColumn43.Header.VisiblePosition = 1;
  2775. ultraGridColumn43.RowLayoutColumnInfo.OriginX = 6;
  2776. ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
  2777. ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
  2778. ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
  2779. ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2780. ultraGridColumn44.Header.Caption = "检斤人";
  2781. ultraGridColumn44.Header.VisiblePosition = 2;
  2782. ultraGridColumn44.RowLayoutColumnInfo.OriginX = 12;
  2783. ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
  2784. ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(127, 0);
  2785. ultraGridColumn44.RowLayoutColumnInfo.SpanX = 2;
  2786. ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
  2787. ultraGridColumn45.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  2788. ultraGridColumn45.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2789. ultraGridColumn45.Header.Caption = "车牌号";
  2790. ultraGridColumn45.Header.VisiblePosition = 20;
  2791. ultraGridColumn45.RowLayoutColumnInfo.OriginX = 4;
  2792. ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
  2793. ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
  2794. ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
  2795. ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
  2796. ultraGridColumn46.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  2797. ultraGridColumn46.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2798. ultraGridColumn46.EditorComponent = this.uteChangeType;
  2799. ultraGridColumn46.Header.Caption = "检斤类型";
  2800. ultraGridColumn46.Header.VisiblePosition = 3;
  2801. ultraGridColumn46.RowLayoutColumnInfo.OriginX = 16;
  2802. ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
  2803. ultraGridColumn46.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(131, 0);
  2804. ultraGridColumn46.RowLayoutColumnInfo.SpanX = 2;
  2805. ultraGridColumn46.RowLayoutColumnInfo.SpanY = 2;
  2806. ultraGridColumn47.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2807. ultraGridColumn47.Header.Caption = "重量";
  2808. ultraGridColumn47.Header.VisiblePosition = 4;
  2809. ultraGridColumn47.RowLayoutColumnInfo.OriginX = 10;
  2810. ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
  2811. ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(58, 0);
  2812. ultraGridColumn47.RowLayoutColumnInfo.SpanX = 2;
  2813. ultraGridColumn47.RowLayoutColumnInfo.SpanY = 2;
  2814. ultraGridColumn48.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2815. ultraGridColumn48.Header.Caption = "支数";
  2816. ultraGridColumn48.Header.VisiblePosition = 5;
  2817. ultraGridColumn48.RowLayoutColumnInfo.OriginX = 8;
  2818. ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
  2819. ultraGridColumn48.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
  2820. ultraGridColumn48.RowLayoutColumnInfo.SpanX = 2;
  2821. ultraGridColumn48.RowLayoutColumnInfo.SpanY = 2;
  2822. ultraGridColumn49.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2823. ultraGridColumn49.Header.Caption = "有效标志";
  2824. ultraGridColumn49.Header.VisiblePosition = 16;
  2825. ultraGridColumn49.Hidden = true;
  2826. ultraGridColumn50.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2827. ultraGridColumn50.Header.Caption = "物资名称";
  2828. ultraGridColumn50.Header.VisiblePosition = 6;
  2829. ultraGridColumn50.Hidden = true;
  2830. ultraGridColumn51.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2831. ultraGridColumn51.Header.Caption = "过磅类型";
  2832. ultraGridColumn51.Header.VisiblePosition = 7;
  2833. ultraGridColumn51.Hidden = true;
  2834. ultraGridColumn51.RowLayoutColumnInfo.OriginX = 18;
  2835. ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
  2836. ultraGridColumn51.RowLayoutColumnInfo.SpanX = 2;
  2837. ultraGridColumn51.RowLayoutColumnInfo.SpanY = 2;
  2838. ultraGridColumn52.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2839. ultraGridColumn52.Header.Caption = "装车单";
  2840. ultraGridColumn52.Header.VisiblePosition = 8;
  2841. ultraGridColumn52.Hidden = true;
  2842. ultraGridColumn53.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2843. ultraGridColumn53.Header.Caption = "收货单位";
  2844. ultraGridColumn53.Header.VisiblePosition = 9;
  2845. ultraGridColumn53.RowLayoutColumnInfo.OriginX = 24;
  2846. ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
  2847. ultraGridColumn53.RowLayoutColumnInfo.SpanX = 2;
  2848. ultraGridColumn53.RowLayoutColumnInfo.SpanY = 2;
  2849. ultraGridColumn54.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2850. ultraGridColumn54.Header.Caption = "订货单位";
  2851. ultraGridColumn54.Header.VisiblePosition = 10;
  2852. ultraGridColumn54.RowLayoutColumnInfo.OriginX = 22;
  2853. ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
  2854. ultraGridColumn54.RowLayoutColumnInfo.SpanX = 2;
  2855. ultraGridColumn54.RowLayoutColumnInfo.SpanY = 2;
  2856. ultraGridColumn55.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2857. ultraGridColumn55.Header.Caption = "发货单位";
  2858. ultraGridColumn55.Header.VisiblePosition = 11;
  2859. ultraGridColumn55.RowLayoutColumnInfo.OriginX = 20;
  2860. ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
  2861. ultraGridColumn55.RowLayoutColumnInfo.SpanX = 2;
  2862. ultraGridColumn55.RowLayoutColumnInfo.SpanY = 2;
  2863. ultraGridColumn56.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2864. ultraGridColumn56.Header.Caption = "运输单位";
  2865. ultraGridColumn56.Header.VisiblePosition = 12;
  2866. ultraGridColumn56.RowLayoutColumnInfo.OriginX = 26;
  2867. ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
  2868. ultraGridColumn56.RowLayoutColumnInfo.SpanX = 2;
  2869. ultraGridColumn56.RowLayoutColumnInfo.SpanY = 2;
  2870. ultraGridColumn57.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2871. ultraGridColumn57.Header.Caption = "作废时间";
  2872. ultraGridColumn57.Header.VisiblePosition = 17;
  2873. ultraGridColumn57.Hidden = true;
  2874. ultraGridColumn58.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2875. ultraGridColumn58.Header.Caption = "作废人";
  2876. ultraGridColumn58.Header.VisiblePosition = 18;
  2877. ultraGridColumn58.Hidden = true;
  2878. ultraGridColumn59.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  2879. ultraGridColumn59.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2880. ultraGridColumn59.EditorComponent = this.uctMemo;
  2881. ultraGridColumn59.Header.Caption = "备注";
  2882. ultraGridColumn59.Header.VisiblePosition = 14;
  2883. ultraGridColumn59.RowLayoutColumnInfo.OriginX = 18;
  2884. ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
  2885. ultraGridColumn59.RowLayoutColumnInfo.SpanX = 2;
  2886. ultraGridColumn59.RowLayoutColumnInfo.SpanY = 2;
  2887. ultraGridColumn60.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2888. ultraGridColumn60.Header.Caption = "重量类型";
  2889. ultraGridColumn60.Header.VisiblePosition = 13;
  2890. ultraGridColumn60.Hidden = true;
  2891. ultraGridColumn60.RowLayoutColumnInfo.OriginX = 10;
  2892. ultraGridColumn60.RowLayoutColumnInfo.OriginY = 0;
  2893. ultraGridColumn60.RowLayoutColumnInfo.SpanX = 2;
  2894. ultraGridColumn60.RowLayoutColumnInfo.SpanY = 2;
  2895. ultraGridColumn61.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2896. ultraGridColumn61.Header.Caption = "磅房";
  2897. ultraGridColumn61.Header.VisiblePosition = 15;
  2898. ultraGridColumn61.RowLayoutColumnInfo.OriginX = 2;
  2899. ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
  2900. ultraGridColumn61.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(84, 0);
  2901. ultraGridColumn61.RowLayoutColumnInfo.SpanX = 2;
  2902. ultraGridColumn61.RowLayoutColumnInfo.SpanY = 2;
  2903. ultraGridColumn62.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2904. ultraGridColumn62.Header.Caption = "实发数";
  2905. ultraGridColumn62.Header.VisiblePosition = 19;
  2906. ultraGridColumn62.Hidden = true;
  2907. ultraGridColumn62.RowLayoutColumnInfo.OriginX = 14;
  2908. ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
  2909. ultraGridColumn62.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
  2910. ultraGridColumn62.RowLayoutColumnInfo.SpanX = 2;
  2911. ultraGridColumn62.RowLayoutColumnInfo.SpanY = 2;
  2912. ultraGridColumn63.Header.Caption = "皮重有效剩余时间(小时)";
  2913. ultraGridColumn63.Header.VisiblePosition = 21;
  2914. ultraGridColumn63.Hidden = true;
  2915. ultraGridColumn63.RowLayoutColumnInfo.OriginX = 28;
  2916. ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
  2917. ultraGridColumn63.RowLayoutColumnInfo.SpanX = 2;
  2918. ultraGridColumn63.RowLayoutColumnInfo.SpanY = 2;
  2919. ultraGridColumn64.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2920. ultraGridColumn64.Header.Caption = "带货过皮";
  2921. ultraGridColumn64.Header.VisiblePosition = 22;
  2922. ultraGridColumn64.RowLayoutColumnInfo.OriginX = 14;
  2923. ultraGridColumn64.RowLayoutColumnInfo.OriginY = 0;
  2924. ultraGridColumn64.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(94, 0);
  2925. ultraGridColumn64.RowLayoutColumnInfo.SpanX = 2;
  2926. ultraGridColumn64.RowLayoutColumnInfo.SpanY = 2;
  2927. ultraGridBand2.Columns.AddRange(new object[] {
  2928. ultraGridColumn42,
  2929. ultraGridColumn43,
  2930. ultraGridColumn44,
  2931. ultraGridColumn45,
  2932. ultraGridColumn46,
  2933. ultraGridColumn47,
  2934. ultraGridColumn48,
  2935. ultraGridColumn49,
  2936. ultraGridColumn50,
  2937. ultraGridColumn51,
  2938. ultraGridColumn52,
  2939. ultraGridColumn53,
  2940. ultraGridColumn54,
  2941. ultraGridColumn55,
  2942. ultraGridColumn56,
  2943. ultraGridColumn57,
  2944. ultraGridColumn58,
  2945. ultraGridColumn59,
  2946. ultraGridColumn60,
  2947. ultraGridColumn61,
  2948. ultraGridColumn62,
  2949. ultraGridColumn63,
  2950. ultraGridColumn64});
  2951. rowLayout2.ColumnInfos.AddRange(new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo[] {
  2952. rowLayoutColumnInfo42,
  2953. rowLayoutColumnInfo43,
  2954. rowLayoutColumnInfo44,
  2955. rowLayoutColumnInfo45,
  2956. rowLayoutColumnInfo46,
  2957. rowLayoutColumnInfo47,
  2958. rowLayoutColumnInfo48,
  2959. rowLayoutColumnInfo49,
  2960. rowLayoutColumnInfo50,
  2961. rowLayoutColumnInfo51,
  2962. rowLayoutColumnInfo52,
  2963. rowLayoutColumnInfo53,
  2964. rowLayoutColumnInfo54,
  2965. rowLayoutColumnInfo55,
  2966. rowLayoutColumnInfo56,
  2967. rowLayoutColumnInfo57,
  2968. rowLayoutColumnInfo58,
  2969. rowLayoutColumnInfo59,
  2970. rowLayoutColumnInfo60,
  2971. rowLayoutColumnInfo61,
  2972. rowLayoutColumnInfo62,
  2973. rowLayoutColumnInfo63,
  2974. rowLayoutColumnInfo64});
  2975. rowLayout2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
  2976. ultraGridBand2.RowLayouts.AddRange(new Infragistics.Win.UltraWinGrid.RowLayout[] {
  2977. rowLayout2});
  2978. ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  2979. this.CurrentGrid.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  2980. this.CurrentGrid.Dock = System.Windows.Forms.DockStyle.Fill;
  2981. this.CurrentGrid.Font = new System.Drawing.Font("宋体", 10F);
  2982. this.CurrentGrid.Location = new System.Drawing.Point(0, 0);
  2983. this.CurrentGrid.Margin = new System.Windows.Forms.Padding(4);
  2984. this.CurrentGrid.Name = "CurrentGrid";
  2985. this.CurrentGrid.Size = new System.Drawing.Size(844, 346);
  2986. this.CurrentGrid.TabIndex = 71;
  2987. this.CurrentGrid.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.CurrentGrid_InitializeLayout);
  2988. this.CurrentGrid.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.CurrentGrid_InitializeRow);
  2989. this.CurrentGrid.AfterRowActivate += new System.EventHandler(this.CurrentGrid_AfterRowActivate);
  2990. this.CurrentGrid.AfterRowRegionScroll += new Infragistics.Win.UltraWinGrid.RowScrollRegionEventHandler(this.CurrentGrid_AfterRowRegionScroll);
  2991. this.CurrentGrid.BeforeRowDeactivate += new System.ComponentModel.CancelEventHandler(this.CurrentGrid_BeforeRowDeactivate);
  2992. this.CurrentGrid.DoubleClickCell += new Infragistics.Win.UltraWinGrid.DoubleClickCellEventHandler(this.CurrentGrid_DoubleClickCell);
  2993. this.CurrentGrid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.CurrentGrid_KeyDown);
  2994. //
  2995. // tbWt
  2996. //
  2997. appearance21.ForeColor = System.Drawing.SystemColors.ControlText;
  2998. this.tbWt.Appearance = appearance21;
  2999. this.tbWt.Controls.Add(this.ultraTabSharedControlsPage2);
  3000. this.tbWt.Controls.Add(this.ultraTabPageControl3);
  3001. this.tbWt.Controls.Add(this.ultraTabPageControl4);
  3002. this.tbWt.Dock = System.Windows.Forms.DockStyle.Fill;
  3003. this.tbWt.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3004. this.tbWt.Location = new System.Drawing.Point(0, 0);
  3005. this.tbWt.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3006. this.tbWt.Name = "tbWt";
  3007. this.tbWt.SharedControlsPage = this.ultraTabSharedControlsPage2;
  3008. this.tbWt.Size = new System.Drawing.Size(844, 264);
  3009. this.tbWt.TabIndex = 1;
  3010. this.tbWt.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
  3011. ultraTab5.Key = "1";
  3012. ultraTab5.TabPage = this.ultraTabPageControl3;
  3013. ultraTab5.Text = "第一次称重";
  3014. ultraTab6.Key = "2";
  3015. ultraTab6.TabPage = this.ultraTabPageControl4;
  3016. ultraTab6.Text = "第二次称重";
  3017. this.tbWt.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  3018. ultraTab5,
  3019. ultraTab6});
  3020. this.tbWt.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.tbFirstWt_SelectedTabChanged);
  3021. //
  3022. // ultraTabSharedControlsPage2
  3023. //
  3024. this.ultraTabSharedControlsPage2.Location = new System.Drawing.Point(-10000, -10000);
  3025. this.ultraTabSharedControlsPage2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3026. this.ultraTabSharedControlsPage2.Name = "ultraTabSharedControlsPage2";
  3027. this.ultraTabSharedControlsPage2.Size = new System.Drawing.Size(840, 235);
  3028. //
  3029. // ultraPanel20
  3030. //
  3031. //
  3032. // ultraPanel20.ClientArea
  3033. //
  3034. this.ultraPanel20.ClientArea.Controls.Add(this.comboCount);
  3035. this.ultraPanel20.ClientArea.Controls.Add(this.label1);
  3036. this.ultraPanel20.ClientArea.Controls.Add(this.cmbVioce);
  3037. this.ultraPanel20.ClientArea.Controls.Add(this.btnPlay);
  3038. this.ultraPanel20.ClientArea.Controls.Add(this.button4);
  3039. this.ultraPanel20.ClientArea.Controls.Add(this.button3);
  3040. this.ultraPanel20.ClientArea.Controls.Add(this.button2);
  3041. this.ultraPanel20.ClientArea.Controls.Add(this.button1);
  3042. this.ultraPanel20.ClientArea.Controls.Add(this.cboPoundList);
  3043. this.ultraPanel20.ClientArea.Controls.Add(this.label13);
  3044. this.ultraPanel20.ClientArea.Controls.Add(this.txtCar2);
  3045. this.ultraPanel20.ClientArea.Controls.Add(this.cbxCar1);
  3046. this.ultraPanel20.ClientArea.Controls.Add(this.label3);
  3047. this.ultraPanel20.ClientArea.Controls.Add(this.utbExport2);
  3048. this.ultraPanel20.ClientArea.Controls.Add(this.lblWt);
  3049. this.ultraPanel20.Dock = System.Windows.Forms.DockStyle.Top;
  3050. this.ultraPanel20.Location = new System.Drawing.Point(0, 0);
  3051. this.ultraPanel20.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3052. this.ultraPanel20.Name = "ultraPanel20";
  3053. this.ultraPanel20.Size = new System.Drawing.Size(844, 83);
  3054. this.ultraPanel20.TabIndex = 74;
  3055. //
  3056. // comboCount
  3057. //
  3058. this.comboCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  3059. this.comboCount.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3060. this.comboCount.Font = new System.Drawing.Font("宋体", 10F);
  3061. this.comboCount.FormattingEnabled = true;
  3062. this.comboCount.Items.AddRange(new object[] {
  3063. "",
  3064. "1",
  3065. "2",
  3066. "3",
  3067. "4",
  3068. "5",
  3069. "6",
  3070. "7",
  3071. "8",
  3072. "9",
  3073. "10",
  3074. "11",
  3075. "12",
  3076. "13",
  3077. "14",
  3078. "15",
  3079. "16",
  3080. "17",
  3081. "18",
  3082. "19",
  3083. "20",
  3084. "21",
  3085. "22",
  3086. "23",
  3087. "24",
  3088. "25",
  3089. "26",
  3090. "27",
  3091. "28",
  3092. "29",
  3093. "30"});
  3094. this.comboCount.Location = new System.Drawing.Point(669, 12);
  3095. this.comboCount.Margin = new System.Windows.Forms.Padding(4);
  3096. this.comboCount.Name = "comboCount";
  3097. this.comboCount.Size = new System.Drawing.Size(67, 21);
  3098. this.comboCount.TabIndex = 614;
  3099. //
  3100. // label1
  3101. //
  3102. this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  3103. this.label1.AutoSize = true;
  3104. this.label1.Font = new System.Drawing.Font("宋体", 10F);
  3105. this.label1.Location = new System.Drawing.Point(586, 18);
  3106. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3107. this.label1.Name = "label1";
  3108. this.label1.Size = new System.Drawing.Size(70, 14);
  3109. this.label1.TabIndex = 613;
  3110. this.label1.Text = "倒库个数:";
  3111. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  3112. //
  3113. // cmbVioce
  3114. //
  3115. this.cmbVioce.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3116. this.cmbVioce.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3117. this.cmbVioce.FormattingEnabled = true;
  3118. this.cmbVioce.Items.AddRange(new object[] {
  3119. "检斤员正忙,请稍等",
  3120. "吨位超载,无法过磅",
  3121. "车上人员请下车",
  3122. "称重完成"});
  3123. this.cmbVioce.Location = new System.Drawing.Point(366, 51);
  3124. this.cmbVioce.Name = "cmbVioce";
  3125. this.cmbVioce.Size = new System.Drawing.Size(245, 24);
  3126. this.cmbVioce.TabIndex = 612;
  3127. //
  3128. // btnPlay
  3129. //
  3130. this.btnPlay.Location = new System.Drawing.Point(269, 48);
  3131. this.btnPlay.Name = "btnPlay";
  3132. this.btnPlay.Size = new System.Drawing.Size(90, 32);
  3133. this.btnPlay.TabIndex = 611;
  3134. this.btnPlay.Text = "播放";
  3135. this.btnPlay.UseVisualStyleBackColor = true;
  3136. this.btnPlay.Click += new System.EventHandler(this.btnPlay_Click);
  3137. //
  3138. // button4
  3139. //
  3140. this.button4.Location = new System.Drawing.Point(760, 45);
  3141. this.button4.Name = "button4";
  3142. this.button4.Size = new System.Drawing.Size(75, 23);
  3143. this.button4.TabIndex = 610;
  3144. this.button4.Text = "button4";
  3145. this.button4.UseVisualStyleBackColor = true;
  3146. this.button4.Visible = false;
  3147. this.button4.Click += new System.EventHandler(this.button4_Click);
  3148. //
  3149. // button3
  3150. //
  3151. this.button3.Location = new System.Drawing.Point(461, 47);
  3152. this.button3.Name = "button3";
  3153. this.button3.Size = new System.Drawing.Size(75, 23);
  3154. this.button3.TabIndex = 0;
  3155. this.button3.Text = "设定磅房A";
  3156. this.button3.UseVisualStyleBackColor = true;
  3157. this.button3.Visible = false;
  3158. this.button3.Click += new System.EventHandler(this.button3_Click);
  3159. //
  3160. // button2
  3161. //
  3162. this.button2.Location = new System.Drawing.Point(369, 47);
  3163. this.button2.Name = "button2";
  3164. this.button2.Size = new System.Drawing.Size(75, 23);
  3165. this.button2.TabIndex = 609;
  3166. this.button2.Text = "给重量2";
  3167. this.button2.UseVisualStyleBackColor = false;
  3168. this.button2.Visible = false;
  3169. this.button2.Click += new System.EventHandler(this.button2_Click);
  3170. //
  3171. // button1
  3172. //
  3173. this.button1.Location = new System.Drawing.Point(288, 44);
  3174. this.button1.Name = "button1";
  3175. this.button1.Size = new System.Drawing.Size(75, 23);
  3176. this.button1.TabIndex = 608;
  3177. this.button1.Text = "给重量1";
  3178. this.button1.UseVisualStyleBackColor = false;
  3179. this.button1.Visible = false;
  3180. this.button1.Click += new System.EventHandler(this.button1_Click_1);
  3181. //
  3182. // cboPoundList
  3183. //
  3184. this.cboPoundList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  3185. this.cboPoundList.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3186. this.cboPoundList.Font = new System.Drawing.Font("宋体", 10F);
  3187. this.cboPoundList.FormattingEnabled = true;
  3188. this.cboPoundList.Items.AddRange(new object[] {
  3189. "",
  3190. "A",
  3191. "B",
  3192. "C"});
  3193. this.cboPoundList.Location = new System.Drawing.Point(669, 47);
  3194. this.cboPoundList.Margin = new System.Windows.Forms.Padding(4);
  3195. this.cboPoundList.Name = "cboPoundList";
  3196. this.cboPoundList.Size = new System.Drawing.Size(67, 21);
  3197. this.cboPoundList.TabIndex = 607;
  3198. this.cboPoundList.SelectedValueChanged += new System.EventHandler(this.cboPoundList_SelectedValueChanged);
  3199. //
  3200. // label13
  3201. //
  3202. this.label13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  3203. this.label13.AutoSize = true;
  3204. this.label13.Font = new System.Drawing.Font("宋体", 10F);
  3205. this.label13.Location = new System.Drawing.Point(558, 50);
  3206. this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3207. this.label13.Name = "label13";
  3208. this.label13.Size = new System.Drawing.Size(98, 14);
  3209. this.label13.TabIndex = 606;
  3210. this.label13.Text = "过磅磅房编号:";
  3211. this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  3212. //
  3213. // cbxCar1
  3214. //
  3215. this.cbxCar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  3216. | System.Windows.Forms.AnchorStyles.Left)));
  3217. this.cbxCar1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3218. this.cbxCar1.Font = new System.Drawing.Font("宋体", 13.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3219. this.cbxCar1.FormattingEnabled = true;
  3220. this.cbxCar1.Items.AddRange(new object[] {
  3221. "厂内 ",
  3222. "苏",
  3223. "浙",
  3224. "皖",
  3225. "闽",
  3226. "赣",
  3227. "京",
  3228. "沪",
  3229. "津",
  3230. "渝",
  3231. "鲁",
  3232. "冀",
  3233. "晋",
  3234. "蒙",
  3235. "辽",
  3236. "吉",
  3237. "黑",
  3238. "豫",
  3239. "湘",
  3240. "鄂",
  3241. "粤",
  3242. "桂",
  3243. "琼",
  3244. "川",
  3245. "贵",
  3246. "云",
  3247. "藏",
  3248. "陕",
  3249. "甘",
  3250. "青",
  3251. "宁",
  3252. "新",
  3253. "港",
  3254. "澳",
  3255. "台",
  3256. "俄"});
  3257. this.cbxCar1.Location = new System.Drawing.Point(350, 12);
  3258. this.cbxCar1.Margin = new System.Windows.Forms.Padding(4);
  3259. this.cbxCar1.Name = "cbxCar1";
  3260. this.cbxCar1.Size = new System.Drawing.Size(71, 26);
  3261. this.cbxCar1.TabIndex = 593;
  3262. this.cbxCar1.SelectedValueChanged += new System.EventHandler(this.cbxCar1_SelectedValueChanged);
  3263. //
  3264. // label3
  3265. //
  3266. this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  3267. | System.Windows.Forms.AnchorStyles.Left)));
  3268. this.label3.AutoSize = true;
  3269. this.label3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3270. this.label3.Location = new System.Drawing.Point(280, 18);
  3271. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3272. this.label3.Name = "label3";
  3273. this.label3.Size = new System.Drawing.Size(63, 16);
  3274. this.label3.TabIndex = 592;
  3275. this.label3.Text = "车牌号:";
  3276. //
  3277. // utbExport2
  3278. //
  3279. this.utbExport2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  3280. appearance5.Image = ((object)(resources.GetObject("appearance5.Image")));
  3281. this.utbExport2.Appearance = appearance5;
  3282. this.utbExport2.AutoSize = true;
  3283. this.utbExport2.Location = new System.Drawing.Point(773, 8);
  3284. this.utbExport2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3285. this.utbExport2.Name = "utbExport2";
  3286. this.utbExport2.Size = new System.Drawing.Size(55, 26);
  3287. this.utbExport2.TabIndex = 605;
  3288. this.utbExport2.Text = "导出";
  3289. this.utbExport2.Click += new System.EventHandler(this.utbExport2_Click);
  3290. //
  3291. // lblWt
  3292. //
  3293. appearance11.BackColor = System.Drawing.Color.LightBlue;
  3294. appearance11.TextHAlignAsString = "Center";
  3295. appearance11.TextVAlignAsString = "Middle";
  3296. this.lblWt.Appearance = appearance11;
  3297. this.lblWt.Dock = System.Windows.Forms.DockStyle.Left;
  3298. this.lblWt.Font = new System.Drawing.Font("微软雅黑", 34.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3299. this.lblWt.Location = new System.Drawing.Point(0, 0);
  3300. this.lblWt.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3301. this.lblWt.Name = "lblWt";
  3302. this.lblWt.Size = new System.Drawing.Size(263, 83);
  3303. this.lblWt.TabIndex = 73;
  3304. this.lblWt.Text = "0.00t";
  3305. //
  3306. // tbMain
  3307. //
  3308. this.tbMain.Controls.Add(this.ultraTabSharedControlsPage1);
  3309. this.tbMain.Controls.Add(this.ultraTabPageControl1);
  3310. this.tbMain.Controls.Add(this.ultraTabPageControl2);
  3311. this.tbMain.Dock = System.Windows.Forms.DockStyle.Fill;
  3312. this.tbMain.Location = new System.Drawing.Point(0, 0);
  3313. this.tbMain.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3314. this.tbMain.Name = "tbMain";
  3315. this.tbMain.SharedControlsPage = this.ultraTabSharedControlsPage1;
  3316. this.tbMain.Size = new System.Drawing.Size(848, 723);
  3317. this.tbMain.TabIndex = 0;
  3318. this.tbMain.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
  3319. ultraTab4.Key = "2";
  3320. ultraTab4.TabPage = this.ultraTabPageControl2;
  3321. ultraTab4.Text = "称重记录";
  3322. ultraTab3.Key = "1";
  3323. ultraTab3.TabPage = this.ultraTabPageControl1;
  3324. ultraTab3.Text = "配车称重";
  3325. this.tbMain.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  3326. ultraTab4,
  3327. ultraTab3});
  3328. //
  3329. // ultraTabSharedControlsPage1
  3330. //
  3331. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
  3332. this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3333. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  3334. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(844, 697);
  3335. //
  3336. // ultraPanel1
  3337. //
  3338. //
  3339. // ultraPanel1.ClientArea
  3340. //
  3341. this.ultraPanel1.ClientArea.Controls.Add(this.panel4);
  3342. this.ultraPanel1.ClientArea.Controls.Add(this.ultraPanel21);
  3343. this.ultraPanel1.ClientArea.Controls.Add(this.ultraPanel2);
  3344. this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  3345. this.ultraPanel1.Location = new System.Drawing.Point(0, 0);
  3346. this.ultraPanel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3347. this.ultraPanel1.Name = "ultraPanel1";
  3348. this.ultraPanel1.Size = new System.Drawing.Size(214, 723);
  3349. this.ultraPanel1.TabIndex = 1;
  3350. //
  3351. // panel4
  3352. //
  3353. this.panel4.Controls.Add(this.panel5);
  3354. this.panel4.Controls.Add(this.lblWtNow);
  3355. this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
  3356. this.panel4.Location = new System.Drawing.Point(0, 326);
  3357. this.panel4.Name = "panel4";
  3358. this.panel4.Size = new System.Drawing.Size(214, 397);
  3359. this.panel4.TabIndex = 595;
  3360. //
  3361. // panel5
  3362. //
  3363. this.panel5.Controls.Add(this.lvTemplate);
  3364. this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
  3365. this.panel5.Location = new System.Drawing.Point(0, 149);
  3366. this.panel5.Name = "panel5";
  3367. this.panel5.Size = new System.Drawing.Size(214, 248);
  3368. this.panel5.TabIndex = 595;
  3369. //
  3370. // lvTemplate
  3371. //
  3372. this.lvTemplate.Dock = System.Windows.Forms.DockStyle.Fill;
  3373. this.lvTemplate.Font = new System.Drawing.Font("宋体", 10F);
  3374. this.lvTemplate.ItemSettings.AllowEdit = Infragistics.Win.DefaultableBoolean.False;
  3375. this.lvTemplate.ItemSettings.DefaultImage = ((System.Drawing.Image)(resources.GetObject("lvTemplate.ItemSettings.DefaultImage")));
  3376. this.lvTemplate.Location = new System.Drawing.Point(0, 0);
  3377. this.lvTemplate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3378. this.lvTemplate.Name = "lvTemplate";
  3379. this.lvTemplate.Size = new System.Drawing.Size(214, 248);
  3380. this.lvTemplate.TabIndex = 593;
  3381. this.lvTemplate.View = Infragistics.Win.UltraWinListView.UltraListViewStyle.List;
  3382. this.lvTemplate.ItemDoubleClick += new Infragistics.Win.UltraWinListView.ItemDoubleClickEventHandler(this.lvTemplate_ItemDoubleClick);
  3383. this.lvTemplate.MouseClick += new System.Windows.Forms.MouseEventHandler(this.lvTemplate_MouseClick);
  3384. //
  3385. // lblWtNow
  3386. //
  3387. appearance12.BackColor = System.Drawing.Color.LightBlue;
  3388. appearance12.TextHAlignAsString = "Center";
  3389. appearance12.TextVAlignAsString = "Middle";
  3390. this.lblWtNow.Appearance = appearance12;
  3391. this.lblWtNow.Dock = System.Windows.Forms.DockStyle.Top;
  3392. this.lblWtNow.Font = new System.Drawing.Font("微软雅黑", 34.8F, System.Drawing.FontStyle.Bold);
  3393. this.lblWtNow.Location = new System.Drawing.Point(0, 0);
  3394. this.lblWtNow.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3395. this.lblWtNow.Name = "lblWtNow";
  3396. this.lblWtNow.Size = new System.Drawing.Size(214, 149);
  3397. this.lblWtNow.TabIndex = 72;
  3398. this.lblWtNow.Text = "0.00t";
  3399. this.lblWtNow.Click += new System.EventHandler(this.lblWtNow_Click);
  3400. //
  3401. // ultraPanel21
  3402. //
  3403. //
  3404. // ultraPanel21.ClientArea
  3405. //
  3406. this.ultraPanel21.ClientArea.Controls.Add(this.btnA);
  3407. this.ultraPanel21.ClientArea.Controls.Add(this.btnC);
  3408. this.ultraPanel21.ClientArea.Controls.Add(this.btnB);
  3409. this.ultraPanel21.Dock = System.Windows.Forms.DockStyle.Top;
  3410. this.ultraPanel21.Location = new System.Drawing.Point(0, 158);
  3411. this.ultraPanel21.Name = "ultraPanel21";
  3412. this.ultraPanel21.Size = new System.Drawing.Size(214, 168);
  3413. this.ultraPanel21.TabIndex = 594;
  3414. //
  3415. // btnA
  3416. //
  3417. this.btnA.BackColor = System.Drawing.SystemColors.ActiveCaption;
  3418. this.btnA.Dock = System.Windows.Forms.DockStyle.Top;
  3419. this.btnA.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3420. this.btnA.ForeColor = System.Drawing.SystemColors.ControlText;
  3421. this.btnA.Location = new System.Drawing.Point(0, 0);
  3422. this.btnA.Name = "btnA";
  3423. this.btnA.Size = new System.Drawing.Size(214, 56);
  3424. this.btnA.TabIndex = 82;
  3425. this.btnA.Tag = "A";
  3426. this.btnA.Text = "A磅房";
  3427. this.btnA.UseVisualStyleBackColor = false;
  3428. this.btnA.Click += new System.EventHandler(this.btn_SelectedValueChanged);
  3429. //
  3430. // btnC
  3431. //
  3432. this.btnC.BackColor = System.Drawing.SystemColors.ActiveCaption;
  3433. this.btnC.Dock = System.Windows.Forms.DockStyle.Bottom;
  3434. this.btnC.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3435. this.btnC.Location = new System.Drawing.Point(0, 107);
  3436. this.btnC.Name = "btnC";
  3437. this.btnC.Size = new System.Drawing.Size(214, 61);
  3438. this.btnC.TabIndex = 82;
  3439. this.btnC.Tag = "C";
  3440. this.btnC.Text = "C磅房";
  3441. this.btnC.UseVisualStyleBackColor = false;
  3442. this.btnC.Click += new System.EventHandler(this.btn_SelectedValueChanged);
  3443. //
  3444. // btnB
  3445. //
  3446. this.btnB.BackColor = System.Drawing.SystemColors.ActiveCaption;
  3447. this.btnB.Dock = System.Windows.Forms.DockStyle.Fill;
  3448. this.btnB.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3449. this.btnB.Location = new System.Drawing.Point(0, 0);
  3450. this.btnB.Name = "btnB";
  3451. this.btnB.Size = new System.Drawing.Size(214, 168);
  3452. this.btnB.TabIndex = 82;
  3453. this.btnB.Tag = "B";
  3454. this.btnB.Text = "B磅房";
  3455. this.btnB.UseVisualStyleBackColor = false;
  3456. this.btnB.Click += new System.EventHandler(this.btn_SelectedValueChanged);
  3457. //
  3458. // ultraPanel2
  3459. //
  3460. //
  3461. // ultraPanel2.ClientArea
  3462. //
  3463. this.ultraPanel2.ClientArea.Controls.Add(this.btn);
  3464. this.ultraPanel2.ClientArea.Controls.Add(this.lblStatus);
  3465. this.ultraPanel2.ClientArea.Controls.Add(this.lblMsg);
  3466. this.ultraPanel2.ClientArea.Controls.Add(this.utbConnect);
  3467. this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Top;
  3468. this.ultraPanel2.Location = new System.Drawing.Point(0, 0);
  3469. this.ultraPanel2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3470. this.ultraPanel2.Name = "ultraPanel2";
  3471. this.ultraPanel2.Size = new System.Drawing.Size(214, 158);
  3472. this.ultraPanel2.TabIndex = 591;
  3473. //
  3474. // btn
  3475. //
  3476. this.btn.Location = new System.Drawing.Point(3, 4);
  3477. this.btn.Name = "btn";
  3478. this.btn.Size = new System.Drawing.Size(76, 29);
  3479. this.btn.TabIndex = 600;
  3480. this.btn.Text = "远程取消";
  3481. this.btn.UseVisualStyleBackColor = true;
  3482. this.btn.Click += new System.EventHandler(this.btn_Click);
  3483. //
  3484. // lblStatus
  3485. //
  3486. this.lblStatus.Dock = System.Windows.Forms.DockStyle.Bottom;
  3487. this.lblStatus.Location = new System.Drawing.Point(0, 79);
  3488. this.lblStatus.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3489. this.lblStatus.Name = "lblStatus";
  3490. this.lblStatus.Size = new System.Drawing.Size(214, 30);
  3491. this.lblStatus.TabIndex = 599;
  3492. this.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3493. //
  3494. // lblMsg
  3495. //
  3496. this.lblMsg.Dock = System.Windows.Forms.DockStyle.Bottom;
  3497. this.lblMsg.Location = new System.Drawing.Point(0, 109);
  3498. this.lblMsg.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3499. this.lblMsg.Name = "lblMsg";
  3500. this.lblMsg.Size = new System.Drawing.Size(214, 49);
  3501. this.lblMsg.TabIndex = 598;
  3502. this.lblMsg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3503. //
  3504. // utbConnect
  3505. //
  3506. this.utbConnect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  3507. appearance15.ForeColor = System.Drawing.Color.Lime;
  3508. this.utbConnect.Appearance = appearance15;
  3509. this.utbConnect.AutoSize = true;
  3510. this.utbConnect.Font = new System.Drawing.Font("宋体", 10F);
  3511. this.utbConnect.Location = new System.Drawing.Point(171, 4);
  3512. this.utbConnect.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3513. this.utbConnect.Name = "utbConnect";
  3514. this.utbConnect.Size = new System.Drawing.Size(29, 25);
  3515. this.utbConnect.TabIndex = 595;
  3516. this.utbConnect.Text = "●";
  3517. this.utbConnect.Click += new System.EventHandler(this.utbConnect_Click);
  3518. //
  3519. // ultraTabControl3
  3520. //
  3521. this.ultraTabControl3.Location = new System.Drawing.Point(0, 0);
  3522. this.ultraTabControl3.Name = "ultraTabControl3";
  3523. this.ultraTabControl3.SharedControlsPage = this.ultraTabSharedControlsPage3;
  3524. this.ultraTabControl3.Size = new System.Drawing.Size(200, 100);
  3525. this.ultraTabControl3.TabIndex = 0;
  3526. //
  3527. // ultraTabSharedControlsPage3
  3528. //
  3529. this.ultraTabSharedControlsPage3.Location = new System.Drawing.Point(1, 20);
  3530. this.ultraTabSharedControlsPage3.Name = "ultraTabSharedControlsPage3";
  3531. this.ultraTabSharedControlsPage3.Size = new System.Drawing.Size(196, 77);
  3532. //
  3533. // ultraGroupBox2
  3534. //
  3535. this.ultraGroupBox2.Controls.Add(this.ultraPanel6);
  3536. this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
  3537. this.ultraGroupBox2.Name = "ultraGroupBox2";
  3538. this.ultraGroupBox2.Size = new System.Drawing.Size(200, 110);
  3539. this.ultraGroupBox2.TabIndex = 0;
  3540. //
  3541. // ultraPanel6
  3542. //
  3543. //
  3544. // ultraPanel6.ClientArea
  3545. //
  3546. this.ultraPanel6.ClientArea.Controls.Add(this.ultraButton5);
  3547. this.ultraPanel6.ClientArea.Controls.Add(this.checkBox2);
  3548. this.ultraPanel6.ClientArea.Controls.Add(this.ultraButton6);
  3549. this.ultraPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
  3550. this.ultraPanel6.Location = new System.Drawing.Point(3, 0);
  3551. this.ultraPanel6.Name = "ultraPanel6";
  3552. this.ultraPanel6.Size = new System.Drawing.Size(194, 107);
  3553. this.ultraPanel6.TabIndex = 3;
  3554. //
  3555. // ultraButton5
  3556. //
  3557. appearance2.Image = ((object)(resources.GetObject("appearance2.Image")));
  3558. this.ultraButton5.Appearance = appearance2;
  3559. this.ultraButton5.AutoSize = true;
  3560. this.ultraButton5.Font = new System.Drawing.Font("宋体", 10F);
  3561. this.ultraButton5.Location = new System.Drawing.Point(349, 20);
  3562. this.ultraButton5.Name = "ultraButton5";
  3563. this.ultraButton5.Size = new System.Drawing.Size(113, 27);
  3564. this.ultraButton5.TabIndex = 598;
  3565. this.ultraButton5.Text = " 保存为模板";
  3566. //
  3567. // checkBox2
  3568. //
  3569. this.checkBox2.AutoSize = true;
  3570. this.checkBox2.Location = new System.Drawing.Point(157, 24);
  3571. this.checkBox2.Name = "checkBox2";
  3572. this.checkBox2.Size = new System.Drawing.Size(96, 16);
  3573. this.checkBox2.TabIndex = 597;
  3574. this.checkBox2.Text = "带货过皮车辆";
  3575. this.checkBox2.UseVisualStyleBackColor = true;
  3576. //
  3577. // ultraButton6
  3578. //
  3579. appearance3.Image = ((object)(resources.GetObject("appearance3.Image")));
  3580. this.ultraButton6.Appearance = appearance3;
  3581. this.ultraButton6.AutoSize = true;
  3582. this.ultraButton6.Font = new System.Drawing.Font("宋体", 10F);
  3583. this.ultraButton6.Location = new System.Drawing.Point(30, 20);
  3584. this.ultraButton6.Name = "ultraButton6";
  3585. this.ultraButton6.Size = new System.Drawing.Size(72, 27);
  3586. this.ultraButton6.TabIndex = 596;
  3587. this.ultraButton6.Text = " 保存";
  3588. //
  3589. // ultraTabSharedControlsPage5
  3590. //
  3591. this.ultraTabSharedControlsPage5.Location = new System.Drawing.Point(1, 20);
  3592. this.ultraTabSharedControlsPage5.Name = "ultraTabSharedControlsPage5";
  3593. this.ultraTabSharedControlsPage5.Size = new System.Drawing.Size(196, 77);
  3594. //
  3595. // ultraTabControl5
  3596. //
  3597. this.ultraTabControl5.Location = new System.Drawing.Point(0, 0);
  3598. this.ultraTabControl5.Name = "ultraTabControl5";
  3599. this.ultraTabControl5.SharedControlsPage = this.ultraTabSharedControlsPage5;
  3600. this.ultraTabControl5.Size = new System.Drawing.Size(200, 100);
  3601. this.ultraTabControl5.TabIndex = 0;
  3602. //
  3603. // ultraTabControl6
  3604. //
  3605. this.ultraTabControl6.Location = new System.Drawing.Point(0, 0);
  3606. this.ultraTabControl6.Name = "ultraTabControl6";
  3607. this.ultraTabControl6.SharedControlsPage = this.ultraTabSharedControlsPage6;
  3608. this.ultraTabControl6.Size = new System.Drawing.Size(200, 100);
  3609. this.ultraTabControl6.TabIndex = 0;
  3610. //
  3611. // ultraTabSharedControlsPage6
  3612. //
  3613. this.ultraTabSharedControlsPage6.Location = new System.Drawing.Point(1, 20);
  3614. this.ultraTabSharedControlsPage6.Name = "ultraTabSharedControlsPage6";
  3615. this.ultraTabSharedControlsPage6.Size = new System.Drawing.Size(196, 77);
  3616. //
  3617. // listViewMenuStrip
  3618. //
  3619. this.listViewMenuStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
  3620. this.listViewMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  3621. this.deleteTemplate});
  3622. this.listViewMenuStrip.Name = "contextMenuStrip1";
  3623. this.listViewMenuStrip.Size = new System.Drawing.Size(125, 26);
  3624. //
  3625. // deleteTemplate
  3626. //
  3627. this.deleteTemplate.Name = "deleteTemplate";
  3628. this.deleteTemplate.Size = new System.Drawing.Size(124, 22);
  3629. this.deleteTemplate.Text = "删除模板";
  3630. this.deleteTemplate.Click += new System.EventHandler(this.deleteTemplate_Click);
  3631. //
  3632. // splitContainer2
  3633. //
  3634. this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
  3635. this.splitContainer2.Location = new System.Drawing.Point(0, 0);
  3636. this.splitContainer2.Name = "splitContainer2";
  3637. //
  3638. // splitContainer2.Panel1
  3639. //
  3640. this.splitContainer2.Panel1.Controls.Add(this.ultraPanel1);
  3641. //
  3642. // splitContainer2.Panel2
  3643. //
  3644. this.splitContainer2.Panel2.Controls.Add(this.panel3);
  3645. this.splitContainer2.Panel2.Controls.Add(this.PicPnl);
  3646. this.splitContainer2.Panel2.Controls.Add(this.panel2);
  3647. this.splitContainer2.Size = new System.Drawing.Size(1343, 723);
  3648. this.splitContainer2.SplitterDistance = 214;
  3649. this.splitContainer2.TabIndex = 74;
  3650. this.splitContainer2.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer2_SplitterMoved);
  3651. //
  3652. // panel3
  3653. //
  3654. this.panel3.Controls.Add(this.tbMain);
  3655. this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
  3656. this.panel3.Location = new System.Drawing.Point(0, 0);
  3657. this.panel3.Name = "panel3";
  3658. this.panel3.Size = new System.Drawing.Size(848, 723);
  3659. this.panel3.TabIndex = 3;
  3660. //
  3661. // PicPnl
  3662. //
  3663. this.PicPnl.Dock = System.Windows.Forms.DockStyle.Right;
  3664. this.PicPnl.Location = new System.Drawing.Point(848, 0);
  3665. this.PicPnl.Name = "PicPnl";
  3666. this.PicPnl.Size = new System.Drawing.Size(277, 723);
  3667. this.PicPnl.TabIndex = 2;
  3668. //
  3669. // panel2
  3670. //
  3671. this.panel2.Location = new System.Drawing.Point(1115, 130);
  3672. this.panel2.Name = "panel2";
  3673. this.panel2.Size = new System.Drawing.Size(200, 100);
  3674. this.panel2.TabIndex = 1;
  3675. //
  3676. // timer2
  3677. //
  3678. this.timer2.Enabled = true;
  3679. this.timer2.Interval = 3000;
  3680. this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
  3681. //
  3682. // timer1
  3683. //
  3684. this.timer1.Enabled = true;
  3685. this.timer1.Interval = 60000;
  3686. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  3687. //
  3688. // cmmWeightRecordEntityBindingSource
  3689. //
  3690. this.cmmWeightRecordEntityBindingSource.DataSource = typeof(Core.StlMes.Client.LgResMgt.Mcms.entity.CmmWeightRecordEntity);
  3691. //
  3692. // matInfo3
  3693. //
  3694. this.matInfo3.AddNew = false;
  3695. this.matInfo3.ColumnsC = "ProOrderNo,Steelname,ActDimater,ActLenTemp,ActCount,ActWeight,JudgeStoveNoOld";
  3696. this.matInfo3.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3697. this.matInfo3.Dock = System.Windows.Forms.DockStyle.Fill;
  3698. this.matInfo3.EnableUpdateInfo = true;
  3699. this.matInfo3.EnableUpdateWt = false;
  3700. this.matInfo3.Font = new System.Drawing.Font("宋体", 10F);
  3701. this.matInfo3.Key = "102";
  3702. this.matInfo3.Location = new System.Drawing.Point(0, 0);
  3703. this.matInfo3.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  3704. this.matInfo3.MatName = "";
  3705. this.matInfo3.Name = "matInfo3";
  3706. this.matInfo3.Size = new System.Drawing.Size(830, 34);
  3707. this.matInfo3.TabIndex = 2;
  3708. //
  3709. // matInfo2
  3710. //
  3711. this.matInfo2.AddNew = true;
  3712. this.matInfo2.ColumnsC = "ProOrderNo,JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActLenTemp,ActC" +
  3713. "ount,ActWeight";
  3714. this.matInfo2.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3715. this.matInfo2.Dock = System.Windows.Forms.DockStyle.Left;
  3716. this.matInfo2.EnableUpdateInfo = true;
  3717. this.matInfo2.EnableUpdateWt = true;
  3718. this.matInfo2.Font = new System.Drawing.Font("宋体", 10F);
  3719. this.matInfo2.Key = "103";
  3720. this.matInfo2.Location = new System.Drawing.Point(0, 0);
  3721. this.matInfo2.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  3722. this.matInfo2.MatName = "";
  3723. this.matInfo2.Name = "matInfo2";
  3724. this.matInfo2.Size = new System.Drawing.Size(907, 34);
  3725. this.matInfo2.TabIndex = 2;
  3726. //
  3727. // matInfo1
  3728. //
  3729. this.matInfo1.AddNew = true;
  3730. this.matInfo1.ColumnsC = "SpecName,ActCount,SpecNo";
  3731. this.matInfo1.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3732. this.matInfo1.Dock = System.Windows.Forms.DockStyle.Fill;
  3733. this.matInfo1.EnableUpdateInfo = true;
  3734. this.matInfo1.EnableUpdateWt = true;
  3735. this.matInfo1.Font = new System.Drawing.Font("宋体", 10F);
  3736. this.matInfo1.Key = "104";
  3737. this.matInfo1.Location = new System.Drawing.Point(0, 0);
  3738. this.matInfo1.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  3739. this.matInfo1.MatName = "";
  3740. this.matInfo1.Name = "matInfo1";
  3741. this.matInfo1.Size = new System.Drawing.Size(830, 34);
  3742. this.matInfo1.TabIndex = 2;
  3743. //
  3744. // matInfo4
  3745. //
  3746. this.matInfo4.AddNew = true;
  3747. this.matInfo4.ColumnsC = "SpecName,ActCount,Memo";
  3748. this.matInfo4.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3749. this.matInfo4.Dock = System.Windows.Forms.DockStyle.Fill;
  3750. this.matInfo4.EnableUpdateInfo = true;
  3751. this.matInfo4.EnableUpdateWt = true;
  3752. this.matInfo4.Font = new System.Drawing.Font("宋体", 10F);
  3753. this.matInfo4.Key = "105";
  3754. this.matInfo4.Location = new System.Drawing.Point(0, 0);
  3755. this.matInfo4.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  3756. this.matInfo4.MatName = "";
  3757. this.matInfo4.Name = "matInfo4";
  3758. this.matInfo4.Size = new System.Drawing.Size(830, 34);
  3759. this.matInfo4.TabIndex = 1;
  3760. //
  3761. // matInfo5
  3762. //
  3763. this.matInfo5.AddNew = true;
  3764. this.matInfo5.ColumnsC = "SpecName,ActCount,Memo";
  3765. this.matInfo5.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3766. this.matInfo5.Dock = System.Windows.Forms.DockStyle.Fill;
  3767. this.matInfo5.EnableUpdateInfo = true;
  3768. this.matInfo5.EnableUpdateWt = true;
  3769. this.matInfo5.Font = new System.Drawing.Font("宋体", 10F);
  3770. this.matInfo5.Key = "106";
  3771. this.matInfo5.Location = new System.Drawing.Point(0, 0);
  3772. this.matInfo5.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  3773. this.matInfo5.MatName = "";
  3774. this.matInfo5.Name = "matInfo5";
  3775. this.matInfo5.Size = new System.Drawing.Size(830, 34);
  3776. this.matInfo5.TabIndex = 1;
  3777. //
  3778. // matInfo6
  3779. //
  3780. this.matInfo6.AddNew = true;
  3781. this.matInfo6.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActCount,Memo";
  3782. this.matInfo6.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3783. this.matInfo6.Dock = System.Windows.Forms.DockStyle.Fill;
  3784. this.matInfo6.EnableUpdateInfo = true;
  3785. this.matInfo6.EnableUpdateWt = true;
  3786. this.matInfo6.Font = new System.Drawing.Font("宋体", 10F);
  3787. this.matInfo6.Key = "107";
  3788. this.matInfo6.Location = new System.Drawing.Point(0, 0);
  3789. this.matInfo6.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  3790. this.matInfo6.MatName = "";
  3791. this.matInfo6.Name = "matInfo6";
  3792. this.matInfo6.Size = new System.Drawing.Size(830, 34);
  3793. this.matInfo6.TabIndex = 1;
  3794. //
  3795. // matInfo7
  3796. //
  3797. this.matInfo7.AddNew = true;
  3798. this.matInfo7.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActLenTemp,ActCount,ActWei" +
  3799. "ght";
  3800. this.matInfo7.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3801. this.matInfo7.Dock = System.Windows.Forms.DockStyle.Fill;
  3802. this.matInfo7.EnableUpdateInfo = true;
  3803. this.matInfo7.EnableUpdateWt = true;
  3804. this.matInfo7.Font = new System.Drawing.Font("宋体", 10F);
  3805. this.matInfo7.Key = "108";
  3806. this.matInfo7.Location = new System.Drawing.Point(0, 0);
  3807. this.matInfo7.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  3808. this.matInfo7.MatName = "";
  3809. this.matInfo7.Name = "matInfo7";
  3810. this.matInfo7.Size = new System.Drawing.Size(830, 34);
  3811. this.matInfo7.TabIndex = 1;
  3812. //
  3813. // matInfo8
  3814. //
  3815. this.matInfo8.AddNew = true;
  3816. this.matInfo8.ColumnsC = "JudgeStoveNo,Steelname,ActDimater,ActLenTemp,ActCount,ActWeight";
  3817. this.matInfo8.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3818. this.matInfo8.Dock = System.Windows.Forms.DockStyle.Fill;
  3819. this.matInfo8.EnableUpdateInfo = true;
  3820. this.matInfo8.EnableUpdateWt = true;
  3821. this.matInfo8.Font = new System.Drawing.Font("宋体", 10F);
  3822. this.matInfo8.Key = "109";
  3823. this.matInfo8.Location = new System.Drawing.Point(0, 0);
  3824. this.matInfo8.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  3825. this.matInfo8.MatName = "";
  3826. this.matInfo8.Name = "matInfo8";
  3827. this.matInfo8.Size = new System.Drawing.Size(830, 34);
  3828. this.matInfo8.TabIndex = 1;
  3829. //
  3830. // matInfo17
  3831. //
  3832. this.matInfo17.AddNew = true;
  3833. this.matInfo17.ColumnsC = "ProOrderNo,Steelname,ActDimater,ActLenTemp,ActCount,ActWeight,JudgeStoveNoOld";
  3834. this.matInfo17.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3835. this.matInfo17.Dock = System.Windows.Forms.DockStyle.Fill;
  3836. this.matInfo17.EnableUpdateInfo = true;
  3837. this.matInfo17.EnableUpdateWt = true;
  3838. this.matInfo17.Font = new System.Drawing.Font("宋体", 10F);
  3839. this.matInfo17.Key = "110";
  3840. this.matInfo17.Location = new System.Drawing.Point(0, 0);
  3841. this.matInfo17.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  3842. this.matInfo17.MatName = "";
  3843. this.matInfo17.Name = "matInfo17";
  3844. this.matInfo17.Size = new System.Drawing.Size(830, 34);
  3845. this.matInfo17.TabIndex = 3;
  3846. //
  3847. // matInfo16
  3848. //
  3849. this.matInfo16.AddNew = false;
  3850. this.matInfo16.ColumnsC = "ProOrderNo,JudgeStoveNo,Producname,Gradename,Steelname,ActDimater,ActHeight,ActLe" +
  3851. "nTemp,ActCount,ActWeight,StorageName";
  3852. this.matInfo16.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3853. this.matInfo16.Dock = System.Windows.Forms.DockStyle.Fill;
  3854. this.matInfo16.EnableUpdateInfo = true;
  3855. this.matInfo16.EnableUpdateWt = false;
  3856. this.matInfo16.Font = new System.Drawing.Font("宋体", 10F);
  3857. this.matInfo16.Key = "201";
  3858. this.matInfo16.Location = new System.Drawing.Point(0, 48);
  3859. this.matInfo16.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
  3860. this.matInfo16.MatName = "钢管";
  3861. this.matInfo16.Name = "matInfo16";
  3862. this.matInfo16.Size = new System.Drawing.Size(836, 158);
  3863. this.matInfo16.TabIndex = 7;
  3864. //
  3865. // matInfo9
  3866. //
  3867. this.matInfo9.AddNew = true;
  3868. this.matInfo9.ColumnsC = "ProOrderNo,JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActCount,Memo";
  3869. this.matInfo9.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3870. this.matInfo9.Dock = System.Windows.Forms.DockStyle.Fill;
  3871. this.matInfo9.EnableUpdateInfo = true;
  3872. this.matInfo9.EnableUpdateWt = true;
  3873. this.matInfo9.Font = new System.Drawing.Font("宋体", 10F);
  3874. this.matInfo9.Key = "202";
  3875. this.matInfo9.Location = new System.Drawing.Point(0, 0);
  3876. this.matInfo9.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  3877. this.matInfo9.MatName = "钢管销售";
  3878. this.matInfo9.Name = "matInfo9";
  3879. this.matInfo9.Size = new System.Drawing.Size(832, 129);
  3880. this.matInfo9.TabIndex = 2;
  3881. //
  3882. // matInfo10
  3883. //
  3884. this.matInfo10.AddNew = true;
  3885. this.matInfo10.ColumnsC = "SpecName,ActCount,Memo";
  3886. this.matInfo10.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3887. this.matInfo10.Dock = System.Windows.Forms.DockStyle.Fill;
  3888. this.matInfo10.EnableUpdateInfo = true;
  3889. this.matInfo10.EnableUpdateWt = true;
  3890. this.matInfo10.Font = new System.Drawing.Font("宋体", 10F);
  3891. this.matInfo10.Key = "203";
  3892. this.matInfo10.Location = new System.Drawing.Point(0, 0);
  3893. this.matInfo10.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  3894. this.matInfo10.MatName = "钢管销售";
  3895. this.matInfo10.Name = "matInfo10";
  3896. this.matInfo10.Size = new System.Drawing.Size(832, 129);
  3897. this.matInfo10.TabIndex = 2;
  3898. //
  3899. // matInfo11
  3900. //
  3901. this.matInfo11.AddNew = true;
  3902. this.matInfo11.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActCount,Memo";
  3903. this.matInfo11.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3904. this.matInfo11.Dock = System.Windows.Forms.DockStyle.Fill;
  3905. this.matInfo11.EnableUpdateInfo = true;
  3906. this.matInfo11.EnableUpdateWt = true;
  3907. this.matInfo11.Font = new System.Drawing.Font("宋体", 10F);
  3908. this.matInfo11.Key = "204";
  3909. this.matInfo11.Location = new System.Drawing.Point(0, 0);
  3910. this.matInfo11.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  3911. this.matInfo11.MatName = "钢管销售";
  3912. this.matInfo11.Name = "matInfo11";
  3913. this.matInfo11.Size = new System.Drawing.Size(832, 129);
  3914. this.matInfo11.TabIndex = 2;
  3915. //
  3916. // matInfo12
  3917. //
  3918. this.matInfo12.AddNew = true;
  3919. this.matInfo12.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActLenTemp,ActCount,ActWei" +
  3920. "ght";
  3921. this.matInfo12.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3922. this.matInfo12.Dock = System.Windows.Forms.DockStyle.Fill;
  3923. this.matInfo12.EnableUpdateInfo = true;
  3924. this.matInfo12.EnableUpdateWt = true;
  3925. this.matInfo12.Font = new System.Drawing.Font("宋体", 10F);
  3926. this.matInfo12.Key = "205";
  3927. this.matInfo12.Location = new System.Drawing.Point(0, 0);
  3928. this.matInfo12.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  3929. this.matInfo12.MatName = "内转钢管";
  3930. this.matInfo12.Name = "matInfo12";
  3931. this.matInfo12.Size = new System.Drawing.Size(832, 129);
  3932. this.matInfo12.TabIndex = 1;
  3933. //
  3934. // matInfo13
  3935. //
  3936. this.matInfo13.AddNew = true;
  3937. this.matInfo13.ColumnsC = "JudgeStoveNo,Steelname,ActDimater,ActLenTemp,ActCount,ActWeight";
  3938. this.matInfo13.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3939. this.matInfo13.Dock = System.Windows.Forms.DockStyle.Fill;
  3940. this.matInfo13.EnableUpdateInfo = true;
  3941. this.matInfo13.EnableUpdateWt = true;
  3942. this.matInfo13.Font = new System.Drawing.Font("宋体", 10F);
  3943. this.matInfo13.Key = "206";
  3944. this.matInfo13.Location = new System.Drawing.Point(0, 0);
  3945. this.matInfo13.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  3946. this.matInfo13.MatName = "内转钢坯";
  3947. this.matInfo13.Name = "matInfo13";
  3948. this.matInfo13.Size = new System.Drawing.Size(832, 129);
  3949. this.matInfo13.TabIndex = 1;
  3950. //
  3951. // matInfo14
  3952. //
  3953. this.matInfo14.AddNew = true;
  3954. this.matInfo14.ColumnsC = "ProOrderNo,JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActLenTemp,ActC" +
  3955. "ount,ActWeight";
  3956. this.matInfo14.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3957. this.matInfo14.Dock = System.Windows.Forms.DockStyle.Fill;
  3958. this.matInfo14.EnableUpdateInfo = true;
  3959. this.matInfo14.EnableUpdateWt = true;
  3960. this.matInfo14.Font = new System.Drawing.Font("宋体", 10F);
  3961. this.matInfo14.Key = "200";
  3962. this.matInfo14.Location = new System.Drawing.Point(0, 0);
  3963. this.matInfo14.Margin = new System.Windows.Forms.Padding(3, 8, 3, 8);
  3964. this.matInfo14.MatName = "钢管销售";
  3965. this.matInfo14.Name = "matInfo14";
  3966. this.matInfo14.Size = new System.Drawing.Size(832, 129);
  3967. this.matInfo14.TabIndex = 3;
  3968. //
  3969. // matInfo18
  3970. //
  3971. this.matInfo18.AddNew = true;
  3972. this.matInfo18.ColumnsC = "SpecName,ActCount,Memo";
  3973. this.matInfo18.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3974. this.matInfo18.Dock = System.Windows.Forms.DockStyle.Fill;
  3975. this.matInfo18.EnableUpdateInfo = true;
  3976. this.matInfo18.EnableUpdateWt = true;
  3977. this.matInfo18.Font = new System.Drawing.Font("宋体", 10F);
  3978. this.matInfo18.Key = "209";
  3979. this.matInfo18.Location = new System.Drawing.Point(0, 0);
  3980. this.matInfo18.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  3981. this.matInfo18.MatName = "钢管销售";
  3982. this.matInfo18.Name = "matInfo18";
  3983. this.matInfo18.Size = new System.Drawing.Size(832, 129);
  3984. this.matInfo18.TabIndex = 3;
  3985. //
  3986. // matInfo29
  3987. //
  3988. this.matInfo29.AddNew = true;
  3989. this.matInfo29.ColumnsC = "ProOrderNo,Steelname,ActDimater,ActLenTemp,ActCount,ActWeight,JudgeStoveNoOld";
  3990. this.matInfo29.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  3991. this.matInfo29.Dock = System.Windows.Forms.DockStyle.Fill;
  3992. this.matInfo29.EnableUpdateInfo = true;
  3993. this.matInfo29.EnableUpdateWt = true;
  3994. this.matInfo29.Font = new System.Drawing.Font("宋体", 10F);
  3995. this.matInfo29.Key = "110";
  3996. this.matInfo29.Location = new System.Drawing.Point(0, 0);
  3997. this.matInfo29.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  3998. this.matInfo29.MatName = "";
  3999. this.matInfo29.Name = "matInfo29";
  4000. this.matInfo29.Size = new System.Drawing.Size(832, 129);
  4001. this.matInfo29.TabIndex = 4;
  4002. //
  4003. // matInfo20
  4004. //
  4005. this.matInfo20.AddNew = false;
  4006. this.matInfo20.ColumnsC = "ProOrderNo,Steelname,ActDimater,ActLenTemp,ActCount,ActWeight,JudgeStoveNoOld";
  4007. this.matInfo20.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  4008. this.matInfo20.Dock = System.Windows.Forms.DockStyle.Fill;
  4009. this.matInfo20.EnableUpdateInfo = true;
  4010. this.matInfo20.EnableUpdateWt = false;
  4011. this.matInfo20.Font = new System.Drawing.Font("宋体", 10F);
  4012. this.matInfo20.Key = "102";
  4013. this.matInfo20.Location = new System.Drawing.Point(0, 0);
  4014. this.matInfo20.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  4015. this.matInfo20.MatName = "";
  4016. this.matInfo20.Name = "matInfo20";
  4017. this.matInfo20.Size = new System.Drawing.Size(832, 104);
  4018. this.matInfo20.TabIndex = 2;
  4019. //
  4020. // matInfo21
  4021. //
  4022. this.matInfo21.AddNew = true;
  4023. this.matInfo21.ColumnsC = "ProOrderNo,JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActLenTemp,ActC" +
  4024. "ount,ActWeight";
  4025. this.matInfo21.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  4026. this.matInfo21.Dock = System.Windows.Forms.DockStyle.Fill;
  4027. this.matInfo21.EnableUpdateInfo = true;
  4028. this.matInfo21.EnableUpdateWt = true;
  4029. this.matInfo21.Font = new System.Drawing.Font("宋体", 10F);
  4030. this.matInfo21.Key = "103";
  4031. this.matInfo21.Location = new System.Drawing.Point(0, 0);
  4032. this.matInfo21.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  4033. this.matInfo21.MatName = "";
  4034. this.matInfo21.Name = "matInfo21";
  4035. this.matInfo21.Size = new System.Drawing.Size(832, 104);
  4036. this.matInfo21.TabIndex = 2;
  4037. //
  4038. // matInfo22
  4039. //
  4040. this.matInfo22.AddNew = true;
  4041. this.matInfo22.ColumnsC = "SpecName,ActCount,SpecNo";
  4042. this.matInfo22.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  4043. this.matInfo22.Dock = System.Windows.Forms.DockStyle.Fill;
  4044. this.matInfo22.EnableUpdateInfo = true;
  4045. this.matInfo22.EnableUpdateWt = true;
  4046. this.matInfo22.Font = new System.Drawing.Font("宋体", 10F);
  4047. this.matInfo22.Key = "104";
  4048. this.matInfo22.Location = new System.Drawing.Point(0, 0);
  4049. this.matInfo22.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  4050. this.matInfo22.MatName = "";
  4051. this.matInfo22.Name = "matInfo22";
  4052. this.matInfo22.Size = new System.Drawing.Size(832, 104);
  4053. this.matInfo22.TabIndex = 2;
  4054. //
  4055. // matInfo23
  4056. //
  4057. this.matInfo23.AddNew = true;
  4058. this.matInfo23.ColumnsC = "SpecName,ActCount,Memo";
  4059. this.matInfo23.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  4060. this.matInfo23.Dock = System.Windows.Forms.DockStyle.Fill;
  4061. this.matInfo23.EnableUpdateInfo = true;
  4062. this.matInfo23.EnableUpdateWt = true;
  4063. this.matInfo23.Font = new System.Drawing.Font("宋体", 10F);
  4064. this.matInfo23.Key = "105";
  4065. this.matInfo23.Location = new System.Drawing.Point(0, 0);
  4066. this.matInfo23.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  4067. this.matInfo23.MatName = "";
  4068. this.matInfo23.Name = "matInfo23";
  4069. this.matInfo23.Size = new System.Drawing.Size(832, 104);
  4070. this.matInfo23.TabIndex = 1;
  4071. //
  4072. // matInfo24
  4073. //
  4074. this.matInfo24.AddNew = true;
  4075. this.matInfo24.ColumnsC = "SpecName,ActCount,Memo";
  4076. this.matInfo24.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  4077. this.matInfo24.Dock = System.Windows.Forms.DockStyle.Fill;
  4078. this.matInfo24.EnableUpdateInfo = true;
  4079. this.matInfo24.EnableUpdateWt = true;
  4080. this.matInfo24.Font = new System.Drawing.Font("宋体", 10F);
  4081. this.matInfo24.Key = "106";
  4082. this.matInfo24.Location = new System.Drawing.Point(0, 0);
  4083. this.matInfo24.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  4084. this.matInfo24.MatName = "";
  4085. this.matInfo24.Name = "matInfo24";
  4086. this.matInfo24.Size = new System.Drawing.Size(832, 104);
  4087. this.matInfo24.TabIndex = 1;
  4088. //
  4089. // matInfo25
  4090. //
  4091. this.matInfo25.AddNew = true;
  4092. this.matInfo25.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActCount,Memo";
  4093. this.matInfo25.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  4094. this.matInfo25.Dock = System.Windows.Forms.DockStyle.Fill;
  4095. this.matInfo25.EnableUpdateInfo = true;
  4096. this.matInfo25.EnableUpdateWt = true;
  4097. this.matInfo25.Font = new System.Drawing.Font("宋体", 10F);
  4098. this.matInfo25.Key = "107";
  4099. this.matInfo25.Location = new System.Drawing.Point(0, 0);
  4100. this.matInfo25.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  4101. this.matInfo25.MatName = "";
  4102. this.matInfo25.Name = "matInfo25";
  4103. this.matInfo25.Size = new System.Drawing.Size(832, 104);
  4104. this.matInfo25.TabIndex = 1;
  4105. //
  4106. // matInfo26
  4107. //
  4108. this.matInfo26.AddNew = true;
  4109. this.matInfo26.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActLenTemp,ActCount,ActWei" +
  4110. "ght";
  4111. this.matInfo26.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  4112. this.matInfo26.Dock = System.Windows.Forms.DockStyle.Fill;
  4113. this.matInfo26.EnableUpdateInfo = true;
  4114. this.matInfo26.EnableUpdateWt = true;
  4115. this.matInfo26.Font = new System.Drawing.Font("宋体", 10F);
  4116. this.matInfo26.Key = "108";
  4117. this.matInfo26.Location = new System.Drawing.Point(0, 0);
  4118. this.matInfo26.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  4119. this.matInfo26.MatName = "";
  4120. this.matInfo26.Name = "matInfo26";
  4121. this.matInfo26.Size = new System.Drawing.Size(832, 104);
  4122. this.matInfo26.TabIndex = 1;
  4123. //
  4124. // matInfo27
  4125. //
  4126. this.matInfo27.AddNew = true;
  4127. this.matInfo27.ColumnsC = "JudgeStoveNo,Steelname,ActDimater,ActLenTemp,ActCount,ActWeight";
  4128. this.matInfo27.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  4129. this.matInfo27.Dock = System.Windows.Forms.DockStyle.Fill;
  4130. this.matInfo27.EnableUpdateInfo = true;
  4131. this.matInfo27.EnableUpdateWt = true;
  4132. this.matInfo27.Font = new System.Drawing.Font("宋体", 10F);
  4133. this.matInfo27.Key = "109";
  4134. this.matInfo27.Location = new System.Drawing.Point(0, 0);
  4135. this.matInfo27.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  4136. this.matInfo27.MatName = "";
  4137. this.matInfo27.Name = "matInfo27";
  4138. this.matInfo27.Size = new System.Drawing.Size(832, 104);
  4139. this.matInfo27.TabIndex = 1;
  4140. //
  4141. // matInfo28
  4142. //
  4143. this.matInfo28.AddNew = true;
  4144. this.matInfo28.ColumnsC = "ProOrderNo,Steelname,ActDimater,ActLenTemp,ActCount,ActWeight,JudgeStoveNoOld";
  4145. this.matInfo28.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  4146. this.matInfo28.Dock = System.Windows.Forms.DockStyle.Fill;
  4147. this.matInfo28.EnableUpdateInfo = true;
  4148. this.matInfo28.EnableUpdateWt = true;
  4149. this.matInfo28.Font = new System.Drawing.Font("宋体", 10F);
  4150. this.matInfo28.Key = "110";
  4151. this.matInfo28.Location = new System.Drawing.Point(0, 0);
  4152. this.matInfo28.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  4153. this.matInfo28.MatName = "";
  4154. this.matInfo28.Name = "matInfo28";
  4155. this.matInfo28.Size = new System.Drawing.Size(832, 104);
  4156. this.matInfo28.TabIndex = 3;
  4157. //
  4158. // matInfo19
  4159. //
  4160. this.matInfo19.AddNew = true;
  4161. this.matInfo19.ColumnsC = "ProOrderNo,JudgeStoveNo,Producname,Gradename,Steelname,ActDimater,ActHeight,ActLe" +
  4162. "nTemp,ActCount,ActWeight";
  4163. this.matInfo19.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  4164. this.matInfo19.Dock = System.Windows.Forms.DockStyle.Fill;
  4165. this.matInfo19.EnableUpdateInfo = true;
  4166. this.matInfo19.EnableUpdateWt = true;
  4167. this.matInfo19.Font = new System.Drawing.Font("宋体", 10F);
  4168. this.matInfo19.Key = "103";
  4169. this.matInfo19.Location = new System.Drawing.Point(0, 0);
  4170. this.matInfo19.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  4171. this.matInfo19.MatName = "";
  4172. this.matInfo19.Name = "matInfo19";
  4173. this.matInfo19.Size = new System.Drawing.Size(832, 104);
  4174. this.matInfo19.TabIndex = 3;
  4175. //
  4176. // matInfo15
  4177. //
  4178. this.matInfo15.AddNew = false;
  4179. this.matInfo15.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActCount,Memo";
  4180. this.matInfo15.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  4181. this.matInfo15.Dock = System.Windows.Forms.DockStyle.Fill;
  4182. this.matInfo15.EnableUpdateInfo = true;
  4183. this.matInfo15.EnableUpdateWt = false;
  4184. this.matInfo15.Key = "208";
  4185. this.matInfo15.Location = new System.Drawing.Point(0, 48);
  4186. this.matInfo15.Margin = new System.Windows.Forms.Padding(0);
  4187. this.matInfo15.MatName = "";
  4188. this.matInfo15.Name = "matInfo15";
  4189. this.matInfo15.Size = new System.Drawing.Size(836, 158);
  4190. this.matInfo15.TabIndex = 6;
  4191. //
  4192. // txtCar2
  4193. //
  4194. this.txtCar2.Font = new System.Drawing.Font("宋体", 13.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4195. this.txtCar2.FormattingEnabled = true;
  4196. this.txtCar2.Location = new System.Drawing.Point(429, 13);
  4197. this.txtCar2.Name = "txtCar2";
  4198. this.txtCar2.Size = new System.Drawing.Size(150, 26);
  4199. this.txtCar2.TabIndex = 599;
  4200. this.txtCar2.TextChanged += new System.EventHandler(this.txtCar2_TextChanged);
  4201. this.txtCar2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtCar2_KeyPress);
  4202. //
  4203. // QueryBS
  4204. //
  4205. this.QueryBS.DataSource = typeof(Core.StlMes.Client.LgResMgt.Mcms.entity.CmmWeightResultEntity);
  4206. //
  4207. // frmLocalTruckScaleNew
  4208. //
  4209. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  4210. this.ClientSize = new System.Drawing.Size(1343, 723);
  4211. this.Controls.Add(this.splitContainer2);
  4212. this.Name = "frmLocalTruckScaleNew";
  4213. this.Text = "本地计量";
  4214. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmLocalTruckScale_FormClosed);
  4215. this.Shown += new System.EventHandler(this.frmLocalTruckScale_Shown);
  4216. this.ultraTabPageControl18.ResumeLayout(false);
  4217. this.ultraTabPageControl5.ResumeLayout(false);
  4218. this.ultraTabPageControl24.ResumeLayout(false);
  4219. this.ultraTabPageControl6.ResumeLayout(false);
  4220. this.ultraTabPageControl15.ResumeLayout(false);
  4221. this.ultraTabPageControl16.ResumeLayout(false);
  4222. this.ultraTabPageControl17.ResumeLayout(false);
  4223. this.ultraTabPageControl35.ResumeLayout(false);
  4224. this.ultraTabPageControl26.ResumeLayout(false);
  4225. this.ultraTabPageControl34.ResumeLayout(false);
  4226. this.ultraTabPageControl27.ResumeLayout(false);
  4227. this.ultraTabPageControl28.ResumeLayout(false);
  4228. this.ultraTabPageControl29.ResumeLayout(false);
  4229. this.ultraTabPageControl30.ResumeLayout(false);
  4230. this.ultraTabPageControl31.ResumeLayout(false);
  4231. this.ultraTabPageControl32.ResumeLayout(false);
  4232. this.ultraTabPageControl33.ResumeLayout(false);
  4233. this.ultraTabPageControl25.ResumeLayout(false);
  4234. this.ultraTabPageControl7.ResumeLayout(false);
  4235. this.ultraTabPageControl20.ResumeLayout(false);
  4236. this.ultraTabPageControl8.ResumeLayout(false);
  4237. this.ultraTabPageControl9.ResumeLayout(false);
  4238. this.ultraTabPageControl10.ResumeLayout(false);
  4239. this.ultraTabPageControl11.ResumeLayout(false);
  4240. this.ultraTabPageControl12.ResumeLayout(false);
  4241. this.ultraTabPageControl13.ResumeLayout(false);
  4242. this.ultraTabPageControl14.ResumeLayout(false);
  4243. this.ultraTabPageControl21.ResumeLayout(false);
  4244. this.ultraPanel12.ClientArea.ResumeLayout(false);
  4245. this.ultraPanel12.ClientArea.PerformLayout();
  4246. this.ultraPanel12.ResumeLayout(false);
  4247. this.ultraTabPageControl19.ResumeLayout(false);
  4248. this.ultraPanel11.ClientArea.ResumeLayout(false);
  4249. this.ultraPanel11.ClientArea.PerformLayout();
  4250. this.ultraPanel11.ResumeLayout(false);
  4251. this.ultraTabPageControl22.ResumeLayout(false);
  4252. ((System.ComponentModel.ISupportInitialize)(this.tbOther)).EndInit();
  4253. this.tbOther.ResumeLayout(false);
  4254. this.ultraPanel9.ClientArea.ResumeLayout(false);
  4255. this.ultraPanel9.ClientArea.PerformLayout();
  4256. this.ultraPanel9.ResumeLayout(false);
  4257. ((System.ComponentModel.ISupportInitialize)(this.tb_order)).EndInit();
  4258. ((System.ComponentModel.ISupportInitialize)(this.CX_HT)).EndInit();
  4259. this.ultraTabPageControl23.ResumeLayout(false);
  4260. this.ultraPanel10.ClientArea.ResumeLayout(false);
  4261. this.ultraPanel10.ResumeLayout(false);
  4262. this.ultraPanel13.ClientArea.ResumeLayout(false);
  4263. this.ultraPanel13.ResumeLayout(false);
  4264. ((System.ComponentModel.ISupportInitialize)(this.qitahuipi)).EndInit();
  4265. this.qitahuipi.ResumeLayout(false);
  4266. this.ultraPanel8.ClientArea.ResumeLayout(false);
  4267. this.ultraPanel8.ClientArea.PerformLayout();
  4268. this.ultraPanel8.ResumeLayout(false);
  4269. ((System.ComponentModel.ISupportInitialize)(this.uceType)).EndInit();
  4270. ((System.ComponentModel.ISupportInitialize)(this.uceVlid)).EndInit();
  4271. ((System.ComponentModel.ISupportInitialize)(this.delete)).EndInit();
  4272. ((System.ComponentModel.ISupportInitialize)(this.uteChangeType)).EndInit();
  4273. ((System.ComponentModel.ISupportInitialize)(this.uctMemo)).EndInit();
  4274. this.ultraTabPageControl3.ResumeLayout(false);
  4275. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  4276. this.ultraGroupBox1.ResumeLayout(false);
  4277. ((System.ComponentModel.ISupportInitialize)(this.tbFirstWt)).EndInit();
  4278. this.tbFirstWt.ResumeLayout(false);
  4279. this.ultraPanel5.ClientArea.ResumeLayout(false);
  4280. this.ultraPanel5.ClientArea.PerformLayout();
  4281. this.ultraPanel5.ResumeLayout(false);
  4282. ((System.ComponentModel.ISupportInitialize)(this.recordType)).EndInit();
  4283. this.ultraTabPageControl4.ResumeLayout(false);
  4284. ((System.ComponentModel.ISupportInitialize)(this.tbScondWt)).EndInit();
  4285. this.tbScondWt.ResumeLayout(false);
  4286. this.ultraTabPageControl2.ResumeLayout(false);
  4287. this.ultraTabPageControl2.PerformLayout();
  4288. this.ultraPanel23.ClientArea.ResumeLayout(false);
  4289. this.ultraPanel23.ClientArea.PerformLayout();
  4290. this.ultraPanel23.ResumeLayout(false);
  4291. ((System.ComponentModel.ISupportInitialize)(this.ugData)).EndInit();
  4292. this.panel1.ResumeLayout(false);
  4293. this.ultraPanel3.ClientArea.ResumeLayout(false);
  4294. this.ultraPanel3.ResumeLayout(false);
  4295. this.ultraPanel3.PerformLayout();
  4296. this.upQueryTop.ClientArea.ResumeLayout(false);
  4297. this.upQueryTop.ClientArea.PerformLayout();
  4298. this.upQueryTop.ResumeLayout(false);
  4299. ((System.ComponentModel.ISupportInitialize)(this.uteJudgeStoveNo)).EndInit();
  4300. ((System.ComponentModel.ISupportInitialize)(this.uteReceiveName)).EndInit();
  4301. ((System.ComponentModel.ISupportInitialize)(this.uteShippersName)).EndInit();
  4302. ((System.ComponentModel.ISupportInitialize)(this.uteOrder)).EndInit();
  4303. ((System.ComponentModel.ISupportInitialize)(this.utePound)).EndInit();
  4304. ((System.ComponentModel.ISupportInitialize)(this.uteMemo)).EndInit();
  4305. ((System.ComponentModel.ISupportInitialize)(this.uceQueryCarType)).EndInit();
  4306. ((System.ComponentModel.ISupportInitialize)(this.uteCarNo)).EndInit();
  4307. this.ultraPanel7.ClientArea.ResumeLayout(false);
  4308. this.ultraPanel7.ClientArea.PerformLayout();
  4309. this.ultraPanel7.ResumeLayout(false);
  4310. this.ultraTabPageControl1.ResumeLayout(false);
  4311. this.plImgShow.ResumeLayout(false);
  4312. ((System.ComponentModel.ISupportInitialize)(this.pictureShow)).EndInit();
  4313. this.splitContainer1.Panel1.ResumeLayout(false);
  4314. this.splitContainer1.Panel1.PerformLayout();
  4315. this.splitContainer1.Panel2.ResumeLayout(false);
  4316. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  4317. this.splitContainer1.ResumeLayout(false);
  4318. ((System.ComponentModel.ISupportInitialize)(this.uceType2)).EndInit();
  4319. ((System.ComponentModel.ISupportInitialize)(this.uteEdit)).EndInit();
  4320. ((System.ComponentModel.ISupportInitialize)(this.CurrentGrid)).EndInit();
  4321. ((System.ComponentModel.ISupportInitialize)(this.tbWt)).EndInit();
  4322. this.tbWt.ResumeLayout(false);
  4323. this.ultraPanel20.ClientArea.ResumeLayout(false);
  4324. this.ultraPanel20.ClientArea.PerformLayout();
  4325. this.ultraPanel20.ResumeLayout(false);
  4326. ((System.ComponentModel.ISupportInitialize)(this.tbMain)).EndInit();
  4327. this.tbMain.ResumeLayout(false);
  4328. this.ultraPanel1.ClientArea.ResumeLayout(false);
  4329. this.ultraPanel1.ResumeLayout(false);
  4330. this.panel4.ResumeLayout(false);
  4331. this.panel5.ResumeLayout(false);
  4332. ((System.ComponentModel.ISupportInitialize)(this.lvTemplate)).EndInit();
  4333. this.ultraPanel21.ClientArea.ResumeLayout(false);
  4334. this.ultraPanel21.ResumeLayout(false);
  4335. this.ultraPanel2.ClientArea.ResumeLayout(false);
  4336. this.ultraPanel2.ClientArea.PerformLayout();
  4337. this.ultraPanel2.ResumeLayout(false);
  4338. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl3)).EndInit();
  4339. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
  4340. this.ultraGroupBox2.ResumeLayout(false);
  4341. this.ultraPanel6.ClientArea.ResumeLayout(false);
  4342. this.ultraPanel6.ClientArea.PerformLayout();
  4343. this.ultraPanel6.ResumeLayout(false);
  4344. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl5)).EndInit();
  4345. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl6)).EndInit();
  4346. this.listViewMenuStrip.ResumeLayout(false);
  4347. this.splitContainer2.Panel1.ResumeLayout(false);
  4348. this.splitContainer2.Panel2.ResumeLayout(false);
  4349. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
  4350. this.splitContainer2.ResumeLayout(false);
  4351. this.panel3.ResumeLayout(false);
  4352. ((System.ComponentModel.ISupportInitialize)(this.cmmWeightRecordEntityBindingSource)).EndInit();
  4353. ((System.ComponentModel.ISupportInitialize)(this.QueryBS)).EndInit();
  4354. this.ResumeLayout(false);
  4355. }
  4356. #endregion
  4357. private Infragistics.Win.UltraWinTabControl.UltraTabControl tbMain;
  4358. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  4359. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  4360. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
  4361. private Infragistics.Win.Misc.UltraPanel ultraPanel1;
  4362. private Infragistics.Win.Misc.UltraPanel ultraPanel2;
  4363. private Infragistics.Win.UltraWinListView.UltraListView lvTemplate;
  4364. private System.Windows.Forms.SplitContainer splitContainer1;
  4365. private Infragistics.Win.UltraWinTabControl.UltraTabControl tbWt;
  4366. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage2;
  4367. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
  4368. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl4;
  4369. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl3;
  4370. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage3;
  4371. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  4372. private Infragistics.Win.Misc.UltraPanel ultraPanel5;
  4373. private Infragistics.Win.Misc.UltraButton utbSave1;
  4374. private System.Windows.Forms.CheckBox chkGross;
  4375. private Infragistics.Win.Misc.UltraButton utbSaveAsT;
  4376. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
  4377. private Infragistics.Win.Misc.UltraPanel ultraPanel6;
  4378. private Infragistics.Win.Misc.UltraButton ultraButton5;
  4379. private System.Windows.Forms.CheckBox checkBox2;
  4380. private Infragistics.Win.Misc.UltraButton ultraButton6;
  4381. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage5;
  4382. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl5;
  4383. private Infragistics.Win.UltraWinTabControl.UltraTabControl tbScondWt;
  4384. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage7;
  4385. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl21;
  4386. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl22;
  4387. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl23;
  4388. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl6;
  4389. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage6;
  4390. private Infragistics.Win.UltraWinGrid.UltraGrid CurrentGrid;
  4391. private Infragistics.Win.Misc.UltraButton utbConnect;
  4392. private Infragistics.Win.Misc.UltraLabel lblWt;
  4393. private Infragistics.Win.Misc.UltraPanel ultraPanel7;
  4394. private Infragistics.Win.UltraWinTabControl.UltraTabControl tbFirstWt;
  4395. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage4;
  4396. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl7;
  4397. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl8;
  4398. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl9;
  4399. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl10;
  4400. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl11;
  4401. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl12;
  4402. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl13;
  4403. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl14;
  4404. private MatInfo matInfo5;
  4405. private MatInfo matInfo6;
  4406. private MatInfo matInfo7;
  4407. private MatInfo matInfo8;
  4408. private MatInfo matInfo3;
  4409. private MatInfo matInfo2;
  4410. private MatInfo matInfo1;
  4411. private MatInfo matInfo4;
  4412. public Infragistics.Win.UltraWinEditors.UltraComboEditor uceType;
  4413. private System.Windows.Forms.ContextMenuStrip listViewMenuStrip;
  4414. private System.Windows.Forms.ToolStripMenuItem deleteTemplate;
  4415. private Infragistics.Win.UltraWinTabControl.UltraTabControl tbOther;
  4416. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage8;
  4417. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl5;
  4418. private MatInfo matInfo9;
  4419. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl6;
  4420. private MatInfo matInfo10;
  4421. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl15;
  4422. private MatInfo matInfo11;
  4423. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl16;
  4424. private MatInfo matInfo12;
  4425. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl17;
  4426. private MatInfo matInfo13;
  4427. private Infragistics.Win.Misc.UltraPanel ultraPanel9;
  4428. private Infragistics.Win.Misc.UltraButton btnSaveAsT2;
  4429. private Infragistics.Win.Misc.UltraButton btnSave2;
  4430. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl18;
  4431. private MatInfo matInfo14;
  4432. private Infragistics.Win.Misc.UltraPanel ultraPanel10;
  4433. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl19;
  4434. private MatInfo matInfo16;
  4435. private Infragistics.Win.Misc.UltraPanel ultraPanel12;
  4436. private Infragistics.Win.Misc.UltraButton ultraButton1;
  4437. private MatInfo matInfo15;
  4438. private Infragistics.Win.Misc.UltraPanel ultraPanel11;
  4439. private Infragistics.Win.Misc.UltraButton utbSave4;
  4440. private Infragistics.Win.Misc.UltraPanel ultraPanel3;
  4441. private Infragistics.Win.Misc.UltraPanel ultraPanel23;
  4442. public Infragistics.Win.UltraWinEditors.UltraComboEditor uceVlid;
  4443. private Infragistics.Win.UltraWinGrid.UltraGrid ugData;
  4444. private Infragistics.Win.Misc.UltraButton btnDelete;
  4445. private Infragistics.Win.Misc.UltraButton utbDelete2;
  4446. private Infragistics.Win.Misc.UltraButton utbPrint;
  4447. private Infragistics.Win.Misc.UltraButton utbPrintSingle;
  4448. private System.Windows.Forms.BindingSource QueryBS;
  4449. private System.Windows.Forms.BindingSource cmmWeightRecordEntityBindingSource;
  4450. public Infragistics.Win.UltraWinEditors.UltraTextEditor delete;
  4451. private Infragistics.Win.Misc.UltraButton utnUpdate;
  4452. private Infragistics.Win.Misc.UltraPanel ultraPanel20;
  4453. private Infragistics.Win.Misc.UltraButton unExcel;
  4454. private SuggestText txtCar2;
  4455. private System.Windows.Forms.SplitContainer splitContainer2;
  4456. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl20;
  4457. private MatInfo matInfo17;
  4458. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl24;
  4459. private MatInfo matInfo18;
  4460. private Infragistics.Win.Misc.UltraButton utbExport;
  4461. private Infragistics.Win.Misc.UltraButton utbExport2;
  4462. public Infragistics.Win.UltraWinEditors.UltraTextEditor uteEdit;
  4463. private System.Windows.Forms.Panel panel1;
  4464. private System.Windows.Forms.Label lblCount;
  4465. private Infragistics.Win.Misc.UltraButton utbSelect;
  4466. public Infragistics.Win.UltraWinEditors.UltraTextEditor uteChangeType;
  4467. public Infragistics.Win.UltraWinEditors.UltraComboEditor uceType2;
  4468. private Infragistics.Win.Misc.UltraButton utbSave;
  4469. private Infragistics.Win.Misc.UltraButton utbSelect2;
  4470. private System.Windows.Forms.Label lblMsg;
  4471. private System.Windows.Forms.Label lblStatus;
  4472. private System.Windows.Forms.ComboBox cbxCar1;
  4473. private System.Windows.Forms.Label label3;
  4474. private Mes.Client.Comm.Control.UltraPanel2 ultraPanel21;
  4475. private System.Windows.Forms.Button btnA;
  4476. private System.Windows.Forms.Button btnC;
  4477. private System.Windows.Forms.Button btnB;
  4478. private Infragistics.Win.Misc.UltraLabel lblWtNow;
  4479. private System.Windows.Forms.ComboBox cboPoundList;
  4480. private System.Windows.Forms.Label label13;
  4481. private System.Windows.Forms.Panel PicPnl;
  4482. private System.Windows.Forms.Panel panel2;
  4483. private System.Windows.Forms.Panel panel3;
  4484. private Infragistics.Win.Misc.UltraPanel upQueryTop;
  4485. private Infragistics.Win.UltraWinEditors.UltraTextEditor uteJudgeStoveNo;
  4486. private System.Windows.Forms.Label label14;
  4487. private Infragistics.Win.UltraWinEditors.UltraTextEditor uteReceiveName;
  4488. private System.Windows.Forms.Label label11;
  4489. private Infragistics.Win.UltraWinEditors.UltraTextEditor uteShippersName;
  4490. private System.Windows.Forms.Label label10;
  4491. private Infragistics.Win.UltraWinEditors.UltraTextEditor uteOrder;
  4492. private System.Windows.Forms.Label label9;
  4493. private Infragistics.Win.UltraWinEditors.UltraTextEditor utePound;
  4494. private System.Windows.Forms.Label label7;
  4495. private Infragistics.Win.UltraWinEditors.UltraTextEditor uteMemo;
  4496. private System.Windows.Forms.Label label12;
  4497. public Infragistics.Win.UltraWinEditors.UltraComboEditor uceQueryCarType;
  4498. private Infragistics.Win.UltraWinEditors.UltraTextEditor uteCarNo;
  4499. private System.Windows.Forms.Label label8;
  4500. private System.Windows.Forms.Label label6;
  4501. private System.Windows.Forms.DateTimePicker RegEndTime;
  4502. private System.Windows.Forms.CheckBox chkTim;
  4503. private System.Windows.Forms.Label label4;
  4504. private System.Windows.Forms.DateTimePicker RegStartTime;
  4505. private Infragistics.Win.Misc.UltraButton utbReset;
  4506. private Infragistics.Win.Misc.UltraButton utnQuery;
  4507. private System.Windows.Forms.Timer timer2;
  4508. private System.Windows.Forms.Button btn;
  4509. private System.Windows.Forms.Panel plImgShow;
  4510. private System.Windows.Forms.PictureBox pictureShow;
  4511. private System.Windows.Forms.Panel panel4;
  4512. private System.Windows.Forms.Panel panel5;
  4513. public Infragistics.Win.UltraWinEditors.UltraTextEditor uctMemo;
  4514. private System.Windows.Forms.CheckBox chkSteelCar;
  4515. private System.Windows.Forms.Button button1;
  4516. private System.Windows.Forms.Button button2;
  4517. private Infragistics.Win.UltraWinEditors.UltraComboEditor recordType;
  4518. private System.Windows.Forms.CheckBox checkBox1;
  4519. private Infragistics.Win.Misc.UltraPanel ultraPanel13;
  4520. private Infragistics.Win.UltraWinTabControl.UltraTabControl qitahuipi;
  4521. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage9;
  4522. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl26;
  4523. private MatInfo matInfo20;
  4524. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl27;
  4525. private MatInfo matInfo21;
  4526. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl28;
  4527. private MatInfo matInfo22;
  4528. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl29;
  4529. private MatInfo matInfo23;
  4530. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl30;
  4531. private MatInfo matInfo24;
  4532. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl31;
  4533. private MatInfo matInfo25;
  4534. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl32;
  4535. private MatInfo matInfo26;
  4536. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl33;
  4537. private MatInfo matInfo27;
  4538. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl34;
  4539. private MatInfo matInfo28;
  4540. private Infragistics.Win.Misc.UltraPanel ultraPanel8;
  4541. private Infragistics.Win.Misc.UltraButton utbSave3;
  4542. private System.Windows.Forms.CheckBox checkBox3;
  4543. private Infragistics.Win.Misc.UltraButton ultraButton2;
  4544. private System.Windows.Forms.Button button3;
  4545. private System.Windows.Forms.Timer timer1;
  4546. private System.Windows.Forms.Button button4;
  4547. private Infragistics.Win.Misc.UltraButton utbSaveAsT2;
  4548. private System.Windows.Forms.ComboBox cmbVioce;
  4549. private System.Windows.Forms.Button btnPlay;
  4550. private Infragistics.Win.Misc.UltraButton ultraButton3;
  4551. private System.Windows.Forms.ComboBox comboCount;
  4552. private System.Windows.Forms.Label label1;
  4553. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl25;
  4554. private MatInfo matInfo19;
  4555. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl35;
  4556. private MatInfo matInfo29;
  4557. private Infragistics.Win.UltraWinEditors.UltraComboEditor CX_HT;
  4558. private System.Windows.Forms.Label CX_HTH;
  4559. private Infragistics.Win.UltraWinEditors.UltraTextEditor tb_order;
  4560. private System.Windows.Forms.Label lb_order;
  4561. }
  4562. }