frmLocalTruckScaleNew.Designer.cs 277 KB

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