frmLocalTruckScale.Designer.cs 228 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612
  1. using Core.StlMes.Client.LgResMgt.Mcms.entity;
  2. namespace Core.StlMes.Client.LgResMgt.Mcms
  3. {
  4. partial class frmLocalTruckScale
  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(frmLocalTruckScale));
  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.Appearance appearance6 = new Infragistics.Win.Appearance();
  42. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  43. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  44. Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
  45. Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
  46. Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
  47. Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
  48. Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
  49. Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
  50. Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
  51. Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
  52. Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
  53. Infragistics.Win.ValueListItem valueListItem30 = new Infragistics.Win.ValueListItem();
  54. Infragistics.Win.ValueListItem valueListItem31 = new Infragistics.Win.ValueListItem();
  55. Infragistics.Win.ValueListItem valueListItem32 = new Infragistics.Win.ValueListItem();
  56. Infragistics.Win.ValueListItem valueListItem33 = new Infragistics.Win.ValueListItem();
  57. Infragistics.Win.ValueListItem valueListItem34 = new Infragistics.Win.ValueListItem();
  58. Infragistics.Win.ValueListItem valueListItem35 = new Infragistics.Win.ValueListItem();
  59. Infragistics.Win.ValueListItem valueListItem36 = new Infragistics.Win.ValueListItem();
  60. Infragistics.Win.ValueListItem valueListItem37 = new Infragistics.Win.ValueListItem();
  61. Infragistics.Win.ValueListItem valueListItem38 = new Infragistics.Win.ValueListItem();
  62. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  63. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  64. Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  65. Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  66. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab14 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  67. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  68. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab15 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  69. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab16 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  70. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab17 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  71. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab18 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  72. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab19 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  73. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab20 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  74. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab21 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  75. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  76. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  77. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  78. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  79. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab25 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  80. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab22 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  81. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab26 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  82. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab27 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  83. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("CmmWeightResultEntity", -1);
  84. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ResultNo");
  85. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordNo1");
  86. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordNo2");
  87. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Recoder1");
  88. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Recoder2");
  89. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordType1");
  90. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordType2");
  91. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TareWt");
  92. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GrossWt");
  93. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("NetWt");
  94. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordDate1");
  95. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordDate2");
  96. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MatName");
  97. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MatType");
  98. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LoadvehicleNo");
  99. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReceiveName");
  100. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderName");
  101. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ShippersName");
  102. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TransportName");
  103. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Memo");
  104. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteDate");
  105. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteUser");
  106. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecoderLocation1");
  107. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecoderLocation2");
  108. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Validflag");
  109. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RealWt");
  110. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CarNo");
  111. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MatNum");
  112. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ActDimater");
  113. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SpecName");
  114. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Steelname");
  115. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Gradename");
  116. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Producname");
  117. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ProOrderNo");
  118. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JudgeStoveNo");
  119. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("StorageFlag");
  120. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("StorageDate");
  121. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("StorageUser");
  122. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderFull");
  123. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordWeight2");
  124. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordWeight1");
  125. Infragistics.Win.UltraWinGrid.RowLayout rowLayout1 = new Infragistics.Win.UltraWinGrid.RowLayout("1");
  126. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo1 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ResultNo", -1, Infragistics.Win.DefaultableBoolean.Default);
  127. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo2 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordNo1", -1, Infragistics.Win.DefaultableBoolean.Default);
  128. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo3 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordNo2", -1, Infragistics.Win.DefaultableBoolean.Default);
  129. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo4 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Recoder1", -1, Infragistics.Win.DefaultableBoolean.Default);
  130. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo5 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Recoder2", -1, Infragistics.Win.DefaultableBoolean.Default);
  131. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo6 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordType1", -1, Infragistics.Win.DefaultableBoolean.Default);
  132. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo7 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordType2", -1, Infragistics.Win.DefaultableBoolean.Default);
  133. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo8 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "TareWt", -1, Infragistics.Win.DefaultableBoolean.Default);
  134. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo9 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "GrossWt", -1, Infragistics.Win.DefaultableBoolean.Default);
  135. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo10 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "NetWt", -1, Infragistics.Win.DefaultableBoolean.Default);
  136. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo11 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordDate1", -1, Infragistics.Win.DefaultableBoolean.Default);
  137. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo12 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordDate2", -1, Infragistics.Win.DefaultableBoolean.Default);
  138. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo13 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "MatName", -1, Infragistics.Win.DefaultableBoolean.Default);
  139. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo14 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "MatType", -1, Infragistics.Win.DefaultableBoolean.Default);
  140. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo15 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "LoadvehicleNo", -1, Infragistics.Win.DefaultableBoolean.Default);
  141. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo16 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ReceiveName", -1, Infragistics.Win.DefaultableBoolean.Default);
  142. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo17 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "OrderName", -1, Infragistics.Win.DefaultableBoolean.Default);
  143. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo18 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ShippersName", -1, Infragistics.Win.DefaultableBoolean.Default);
  144. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo19 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "TransportName", -1, Infragistics.Win.DefaultableBoolean.Default);
  145. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo20 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Memo", -1, Infragistics.Win.DefaultableBoolean.Default);
  146. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo21 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "DeleteDate", -1, Infragistics.Win.DefaultableBoolean.Default);
  147. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo22 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "DeleteUser", -1, Infragistics.Win.DefaultableBoolean.Default);
  148. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo23 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecoderLocation1", -1, Infragistics.Win.DefaultableBoolean.Default);
  149. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo24 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecoderLocation2", -1, Infragistics.Win.DefaultableBoolean.Default);
  150. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo25 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Validflag", -1, Infragistics.Win.DefaultableBoolean.Default);
  151. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo26 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RealWt", -1, Infragistics.Win.DefaultableBoolean.Default);
  152. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo27 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "CarNo", -1, Infragistics.Win.DefaultableBoolean.Default);
  153. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo28 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "MatNum", -1, Infragistics.Win.DefaultableBoolean.Default);
  154. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo29 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ActDimater", -1, Infragistics.Win.DefaultableBoolean.Default);
  155. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo30 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "SpecName", -1, Infragistics.Win.DefaultableBoolean.Default);
  156. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo31 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Steelname", -1, Infragistics.Win.DefaultableBoolean.Default);
  157. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo32 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Gradename", -1, Infragistics.Win.DefaultableBoolean.Default);
  158. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo33 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Producname", -1, Infragistics.Win.DefaultableBoolean.Default);
  159. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo34 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ProOrderNo", -1, Infragistics.Win.DefaultableBoolean.Default);
  160. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo35 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "JudgeStoveNo", -1, Infragistics.Win.DefaultableBoolean.Default);
  161. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo36 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "StorageFlag", -1, Infragistics.Win.DefaultableBoolean.Default);
  162. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo37 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "StorageDate", -1, Infragistics.Win.DefaultableBoolean.Default);
  163. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo38 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "StorageUser", -1, Infragistics.Win.DefaultableBoolean.Default);
  164. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo39 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "OrderFull", -1, Infragistics.Win.DefaultableBoolean.Default);
  165. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo40 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordWeight2", -1, Infragistics.Win.DefaultableBoolean.Default);
  166. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo41 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordWeight1", -1, Infragistics.Win.DefaultableBoolean.Default);
  167. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  168. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  169. Infragistics.Win.ValueListItem valueListItem50 = new Infragistics.Win.ValueListItem();
  170. Infragistics.Win.ValueListItem valueListItem51 = new Infragistics.Win.ValueListItem();
  171. Infragistics.Win.ValueListItem valueListItem52 = new Infragistics.Win.ValueListItem();
  172. Infragistics.Win.ValueListItem valueListItem53 = new Infragistics.Win.ValueListItem();
  173. Infragistics.Win.ValueListItem valueListItem54 = new Infragistics.Win.ValueListItem();
  174. Infragistics.Win.ValueListItem valueListItem55 = new Infragistics.Win.ValueListItem();
  175. Infragistics.Win.ValueListItem valueListItem56 = new Infragistics.Win.ValueListItem();
  176. Infragistics.Win.ValueListItem valueListItem57 = new Infragistics.Win.ValueListItem();
  177. Infragistics.Win.ValueListItem valueListItem58 = new Infragistics.Win.ValueListItem();
  178. Infragistics.Win.ValueListItem valueListItem59 = new Infragistics.Win.ValueListItem();
  179. Infragistics.Win.ValueListItem valueListItem60 = new Infragistics.Win.ValueListItem();
  180. Infragistics.Win.ValueListItem valueListItem61 = new Infragistics.Win.ValueListItem();
  181. Infragistics.Win.ValueListItem valueListItem62 = new Infragistics.Win.ValueListItem();
  182. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  183. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  184. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  185. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  186. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  187. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  188. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  189. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  190. Infragistics.Win.UltraWinEditors.EditorButton editorButton3 = new Infragistics.Win.UltraWinEditors.EditorButton();
  191. Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
  192. Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
  193. Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
  194. Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
  195. Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
  196. Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
  197. Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
  198. Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
  199. Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
  200. Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
  201. Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
  202. Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
  203. Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
  204. Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
  205. Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
  206. Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
  207. Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
  208. Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
  209. Infragistics.Win.UltraWinEditors.EditorButton editorButton4 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  210. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("CmmWeightRecordEntity", -1);
  211. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordNo");
  212. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordDate");
  213. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Recoder");
  214. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CarNo");
  215. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordType");
  216. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordWeight");
  217. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecordNumber");
  218. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Validflag");
  219. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MatName");
  220. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MatType");
  221. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LoadvehicleNo");
  222. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReceiveName");
  223. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderName");
  224. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ShippersName");
  225. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TransportName");
  226. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteDate");
  227. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteUser");
  228. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Memo");
  229. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WtType");
  230. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RecoderLocation");
  231. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RealWt");
  232. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EffRemaind");
  233. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("firstGross");
  234. Infragistics.Win.UltraWinGrid.RowLayout rowLayout2 = new Infragistics.Win.UltraWinGrid.RowLayout("1");
  235. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo42 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordNo", -1, Infragistics.Win.DefaultableBoolean.Default);
  236. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo43 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordDate", -1, Infragistics.Win.DefaultableBoolean.Default);
  237. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo44 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Recoder", -1, Infragistics.Win.DefaultableBoolean.Default);
  238. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo45 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "CarNo", -1, Infragistics.Win.DefaultableBoolean.Default);
  239. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo46 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordType", -1, Infragistics.Win.DefaultableBoolean.Default);
  240. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo47 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordWeight", -1, Infragistics.Win.DefaultableBoolean.Default);
  241. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo48 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecordNumber", -1, Infragistics.Win.DefaultableBoolean.Default);
  242. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo49 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Validflag", -1, Infragistics.Win.DefaultableBoolean.Default);
  243. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo50 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "MatName", -1, Infragistics.Win.DefaultableBoolean.Default);
  244. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo51 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "MatType", -1, Infragistics.Win.DefaultableBoolean.Default);
  245. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo52 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "LoadvehicleNo", -1, Infragistics.Win.DefaultableBoolean.Default);
  246. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo53 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ReceiveName", -1, Infragistics.Win.DefaultableBoolean.Default);
  247. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo54 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "OrderName", -1, Infragistics.Win.DefaultableBoolean.Default);
  248. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo55 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "ShippersName", -1, Infragistics.Win.DefaultableBoolean.Default);
  249. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo56 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "TransportName", -1, Infragistics.Win.DefaultableBoolean.Default);
  250. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo57 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "DeleteDate", -1, Infragistics.Win.DefaultableBoolean.Default);
  251. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo58 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "DeleteUser", -1, Infragistics.Win.DefaultableBoolean.Default);
  252. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo59 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "Memo", -1, Infragistics.Win.DefaultableBoolean.Default);
  253. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo60 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "WtType", -1, Infragistics.Win.DefaultableBoolean.Default);
  254. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo61 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RecoderLocation", -1, Infragistics.Win.DefaultableBoolean.Default);
  255. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo62 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "RealWt", -1, Infragistics.Win.DefaultableBoolean.Default);
  256. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo63 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "EffRemaind", -1, Infragistics.Win.DefaultableBoolean.Default);
  257. Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo rowLayoutColumnInfo64 = new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo(Infragistics.Win.UltraWinGrid.RowLayoutColumnInfoContext.Column, "firstGross", -1, Infragistics.Win.DefaultableBoolean.Default);
  258. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  259. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab5 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  260. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab6 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  261. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  262. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  263. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab4 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  264. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  265. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  266. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  267. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  268. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  269. this.ultraTabPageControl18 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  270. this.matInfo14 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  271. this.ultraTabPageControl5 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  272. this.matInfo9 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  273. this.ultraTabPageControl24 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  274. this.matInfo18 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  275. this.ultraTabPageControl6 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  276. this.matInfo10 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  277. this.ultraTabPageControl15 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  278. this.matInfo11 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  279. this.ultraTabPageControl16 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  280. this.matInfo12 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  281. this.ultraTabPageControl17 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  282. this.matInfo13 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  283. this.ultraTabPageControl7 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  284. this.matInfo3 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  285. this.ultraTabPageControl20 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  286. this.matInfo17 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  287. this.ultraTabPageControl8 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  288. this.matInfo2 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  289. this.ultraTabPageControl9 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  290. this.matInfo1 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  291. this.ultraTabPageControl10 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  292. this.matInfo4 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  293. this.ultraTabPageControl11 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  294. this.matInfo5 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  295. this.ultraTabPageControl12 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  296. this.matInfo6 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  297. this.ultraTabPageControl13 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  298. this.matInfo7 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  299. this.ultraTabPageControl14 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  300. this.matInfo8 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  301. this.ultraTabPageControl21 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  302. this.matInfo16 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  303. this.ultraPanel12 = new Infragistics.Win.Misc.UltraPanel();
  304. this.utbSave = new Infragistics.Win.Misc.UltraButton();
  305. this.ultraButton1 = new Infragistics.Win.Misc.UltraButton();
  306. this.ultraTabPageControl19 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  307. this.matInfo15 = new Core.StlMes.Client.LgResMgt.Mcms.MatInfo();
  308. this.ultraPanel11 = new Infragistics.Win.Misc.UltraPanel();
  309. this.utbSave4 = new Infragistics.Win.Misc.UltraButton();
  310. this.ultraTabPageControl22 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  311. this.tbOther = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  312. this.ultraTabSharedControlsPage8 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  313. this.ultraPanel9 = new Infragistics.Win.Misc.UltraPanel();
  314. this.btnSaveAsT2 = new Infragistics.Win.Misc.UltraButton();
  315. this.btnSave2 = new Infragistics.Win.Misc.UltraButton();
  316. this.ultraTabPageControl23 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  317. this.ultraPanel10 = new Infragistics.Win.Misc.UltraPanel();
  318. this.utbSave3 = new Infragistics.Win.Misc.UltraButton();
  319. this.uceType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  320. this.uceVlid = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  321. this.delete = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  322. this.uteCarNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  323. this.uteChangeType = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  324. this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  325. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  326. this.tbFirstWt = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  327. this.ultraTabSharedControlsPage4 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  328. this.ultraPanel5 = new Infragistics.Win.Misc.UltraPanel();
  329. this.utbSelect2 = new Infragistics.Win.Misc.UltraButton();
  330. this.utbSelect = new Infragistics.Win.Misc.UltraButton();
  331. this.utbSaveAsT = new Infragistics.Win.Misc.UltraButton();
  332. this.chkGross = new System.Windows.Forms.CheckBox();
  333. this.utbSave1 = new Infragistics.Win.Misc.UltraButton();
  334. this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  335. this.tbScondWt = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  336. this.ultraTabSharedControlsPage7 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  337. this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  338. this.ultraPanel23 = new Infragistics.Win.Misc.UltraPanel();
  339. this.ugData = new Infragistics.Win.UltraWinGrid.UltraGrid();
  340. this.QueryBS = new System.Windows.Forms.BindingSource(this.components);
  341. this.panel1 = new System.Windows.Forms.Panel();
  342. this.lblCount = new System.Windows.Forms.Label();
  343. this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
  344. this.upQueryTop = new Infragistics.Win.Misc.UltraPanel();
  345. this.uteJudgeStoveNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  346. this.label14 = new System.Windows.Forms.Label();
  347. this.panel2 = new System.Windows.Forms.Panel();
  348. this.utnQuery = new Infragistics.Win.Misc.UltraButton();
  349. this.utbReset = new Infragistics.Win.Misc.UltraButton();
  350. this.uteReceiveName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  351. this.label11 = new System.Windows.Forms.Label();
  352. this.uteShippersName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  353. this.label10 = new System.Windows.Forms.Label();
  354. this.uteOrder = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  355. this.label9 = new System.Windows.Forms.Label();
  356. this.utePound = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  357. this.label7 = new System.Windows.Forms.Label();
  358. this.uteMemo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  359. this.label12 = new System.Windows.Forms.Label();
  360. this.uceQueryCarType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  361. this.label8 = new System.Windows.Forms.Label();
  362. this.label6 = new System.Windows.Forms.Label();
  363. this.RegEndTime = new System.Windows.Forms.DateTimePicker();
  364. this.chkTim = new System.Windows.Forms.CheckBox();
  365. this.label4 = new System.Windows.Forms.Label();
  366. this.RegStartTime = new System.Windows.Forms.DateTimePicker();
  367. this.ultraPanel7 = new Infragistics.Win.Misc.UltraPanel();
  368. this.ultraButton2 = new Infragistics.Win.Misc.UltraButton();
  369. this.utbExport = new Infragistics.Win.Misc.UltraButton();
  370. this.unExcel = new Infragistics.Win.Misc.UltraButton();
  371. this.utnUpdate = new Infragistics.Win.Misc.UltraButton();
  372. this.utbPrint = new Infragistics.Win.Misc.UltraButton();
  373. this.utbPrintSingle = new Infragistics.Win.Misc.UltraButton();
  374. this.btnDelete = new Infragistics.Win.Misc.UltraButton();
  375. this.utbDelete2 = new Infragistics.Win.Misc.UltraButton();
  376. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  377. this.txtCar2 = new Core.StlMes.Client.LgResMgt.Mcms.SuggestText();
  378. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  379. this.uceType2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  380. this.uteEdit = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  381. this.CurrentGrid = new Infragistics.Win.UltraWinGrid.UltraGrid();
  382. this.cmmWeightRecordEntityBindingSource = new System.Windows.Forms.BindingSource(this.components);
  383. this.tbWt = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  384. this.ultraTabSharedControlsPage2 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  385. this.ultraPanel20 = new Infragistics.Win.Misc.UltraPanel();
  386. this.ultraPanel4 = new Infragistics.Win.Misc.UltraPanel();
  387. this.utbExport2 = new Infragistics.Win.Misc.UltraButton();
  388. this.cboPoundList = new System.Windows.Forms.ComboBox();
  389. this.label13 = new System.Windows.Forms.Label();
  390. this.cbxCar1 = new System.Windows.Forms.ComboBox();
  391. this.label3 = new System.Windows.Forms.Label();
  392. this.lblWt = new Infragistics.Win.Misc.UltraLabel();
  393. this.tbMain = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  394. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  395. this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
  396. this.lvTemplate = new Infragistics.Win.UltraWinListView.UltraListView();
  397. this.lblWtNow = new Infragistics.Win.Misc.UltraLabel();
  398. this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
  399. this.lblStatus = new System.Windows.Forms.Label();
  400. this.lblMsg = new System.Windows.Forms.Label();
  401. this.btnSetting = new Infragistics.Win.Misc.UltraButton();
  402. this.cboNo = new System.Windows.Forms.ComboBox();
  403. this.utbConnect = new Infragistics.Win.Misc.UltraButton();
  404. this.label2 = new System.Windows.Forms.Label();
  405. this.ultraTabControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  406. this.ultraTabSharedControlsPage3 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  407. this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
  408. this.ultraPanel6 = new Infragistics.Win.Misc.UltraPanel();
  409. this.ultraButton5 = new Infragistics.Win.Misc.UltraButton();
  410. this.checkBox2 = new System.Windows.Forms.CheckBox();
  411. this.ultraButton6 = new Infragistics.Win.Misc.UltraButton();
  412. this.ultraTabSharedControlsPage5 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  413. this.ultraTabControl5 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  414. this.ultraTabControl6 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  415. this.ultraTabSharedControlsPage6 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  416. this.listViewMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
  417. this.deleteTemplate = new System.Windows.Forms.ToolStripMenuItem();
  418. this.splitContainer2 = new System.Windows.Forms.SplitContainer();
  419. this.ultraTabPageControl18.SuspendLayout();
  420. this.ultraTabPageControl5.SuspendLayout();
  421. this.ultraTabPageControl24.SuspendLayout();
  422. this.ultraTabPageControl6.SuspendLayout();
  423. this.ultraTabPageControl15.SuspendLayout();
  424. this.ultraTabPageControl16.SuspendLayout();
  425. this.ultraTabPageControl17.SuspendLayout();
  426. this.ultraTabPageControl7.SuspendLayout();
  427. this.ultraTabPageControl20.SuspendLayout();
  428. this.ultraTabPageControl8.SuspendLayout();
  429. this.ultraTabPageControl9.SuspendLayout();
  430. this.ultraTabPageControl10.SuspendLayout();
  431. this.ultraTabPageControl11.SuspendLayout();
  432. this.ultraTabPageControl12.SuspendLayout();
  433. this.ultraTabPageControl13.SuspendLayout();
  434. this.ultraTabPageControl14.SuspendLayout();
  435. this.ultraTabPageControl21.SuspendLayout();
  436. this.ultraPanel12.ClientArea.SuspendLayout();
  437. this.ultraPanel12.SuspendLayout();
  438. this.ultraTabPageControl19.SuspendLayout();
  439. this.ultraPanel11.ClientArea.SuspendLayout();
  440. this.ultraPanel11.SuspendLayout();
  441. this.ultraTabPageControl22.SuspendLayout();
  442. ((System.ComponentModel.ISupportInitialize)(this.tbOther)).BeginInit();
  443. this.tbOther.SuspendLayout();
  444. this.ultraPanel9.ClientArea.SuspendLayout();
  445. this.ultraPanel9.SuspendLayout();
  446. this.ultraTabPageControl23.SuspendLayout();
  447. this.ultraPanel10.ClientArea.SuspendLayout();
  448. this.ultraPanel10.SuspendLayout();
  449. ((System.ComponentModel.ISupportInitialize)(this.uceType)).BeginInit();
  450. ((System.ComponentModel.ISupportInitialize)(this.uceVlid)).BeginInit();
  451. ((System.ComponentModel.ISupportInitialize)(this.delete)).BeginInit();
  452. ((System.ComponentModel.ISupportInitialize)(this.uteCarNo)).BeginInit();
  453. ((System.ComponentModel.ISupportInitialize)(this.uteChangeType)).BeginInit();
  454. this.ultraTabPageControl3.SuspendLayout();
  455. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  456. this.ultraGroupBox1.SuspendLayout();
  457. ((System.ComponentModel.ISupportInitialize)(this.tbFirstWt)).BeginInit();
  458. this.tbFirstWt.SuspendLayout();
  459. this.ultraPanel5.ClientArea.SuspendLayout();
  460. this.ultraPanel5.SuspendLayout();
  461. this.ultraTabPageControl4.SuspendLayout();
  462. ((System.ComponentModel.ISupportInitialize)(this.tbScondWt)).BeginInit();
  463. this.tbScondWt.SuspendLayout();
  464. this.ultraTabPageControl2.SuspendLayout();
  465. this.ultraPanel23.ClientArea.SuspendLayout();
  466. this.ultraPanel23.SuspendLayout();
  467. ((System.ComponentModel.ISupportInitialize)(this.ugData)).BeginInit();
  468. ((System.ComponentModel.ISupportInitialize)(this.QueryBS)).BeginInit();
  469. this.panel1.SuspendLayout();
  470. this.ultraPanel3.ClientArea.SuspendLayout();
  471. this.ultraPanel3.SuspendLayout();
  472. this.upQueryTop.ClientArea.SuspendLayout();
  473. this.upQueryTop.SuspendLayout();
  474. ((System.ComponentModel.ISupportInitialize)(this.uteJudgeStoveNo)).BeginInit();
  475. this.panel2.SuspendLayout();
  476. ((System.ComponentModel.ISupportInitialize)(this.uteReceiveName)).BeginInit();
  477. ((System.ComponentModel.ISupportInitialize)(this.uteShippersName)).BeginInit();
  478. ((System.ComponentModel.ISupportInitialize)(this.uteOrder)).BeginInit();
  479. ((System.ComponentModel.ISupportInitialize)(this.utePound)).BeginInit();
  480. ((System.ComponentModel.ISupportInitialize)(this.uteMemo)).BeginInit();
  481. ((System.ComponentModel.ISupportInitialize)(this.uceQueryCarType)).BeginInit();
  482. this.ultraPanel7.ClientArea.SuspendLayout();
  483. this.ultraPanel7.SuspendLayout();
  484. this.ultraTabPageControl1.SuspendLayout();
  485. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  486. this.splitContainer1.Panel1.SuspendLayout();
  487. this.splitContainer1.Panel2.SuspendLayout();
  488. this.splitContainer1.SuspendLayout();
  489. ((System.ComponentModel.ISupportInitialize)(this.uceType2)).BeginInit();
  490. ((System.ComponentModel.ISupportInitialize)(this.uteEdit)).BeginInit();
  491. ((System.ComponentModel.ISupportInitialize)(this.CurrentGrid)).BeginInit();
  492. ((System.ComponentModel.ISupportInitialize)(this.cmmWeightRecordEntityBindingSource)).BeginInit();
  493. ((System.ComponentModel.ISupportInitialize)(this.tbWt)).BeginInit();
  494. this.tbWt.SuspendLayout();
  495. this.ultraPanel20.ClientArea.SuspendLayout();
  496. this.ultraPanel20.SuspendLayout();
  497. this.ultraPanel4.ClientArea.SuspendLayout();
  498. this.ultraPanel4.SuspendLayout();
  499. ((System.ComponentModel.ISupportInitialize)(this.tbMain)).BeginInit();
  500. this.tbMain.SuspendLayout();
  501. this.ultraPanel1.ClientArea.SuspendLayout();
  502. this.ultraPanel1.SuspendLayout();
  503. ((System.ComponentModel.ISupportInitialize)(this.lvTemplate)).BeginInit();
  504. this.ultraPanel2.ClientArea.SuspendLayout();
  505. this.ultraPanel2.SuspendLayout();
  506. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl3)).BeginInit();
  507. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
  508. this.ultraGroupBox2.SuspendLayout();
  509. this.ultraPanel6.ClientArea.SuspendLayout();
  510. this.ultraPanel6.SuspendLayout();
  511. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl5)).BeginInit();
  512. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl6)).BeginInit();
  513. this.listViewMenuStrip.SuspendLayout();
  514. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
  515. this.splitContainer2.Panel1.SuspendLayout();
  516. this.splitContainer2.Panel2.SuspendLayout();
  517. this.splitContainer2.SuspendLayout();
  518. this.SuspendLayout();
  519. //
  520. // ultraTabPageControl18
  521. //
  522. this.ultraTabPageControl18.Controls.Add(this.matInfo14);
  523. this.ultraTabPageControl18.Location = new System.Drawing.Point(1, 26);
  524. this.ultraTabPageControl18.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  525. this.ultraTabPageControl18.Name = "ultraTabPageControl18";
  526. this.ultraTabPageControl18.Size = new System.Drawing.Size(1125, 163);
  527. //
  528. // matInfo14
  529. //
  530. this.matInfo14.AddNew = true;
  531. this.matInfo14.ColumnsC = "ProOrderNo,JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActLenTemp,ActC" +
  532. "ount,ActWeight";
  533. this.matInfo14.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  534. this.matInfo14.Dock = System.Windows.Forms.DockStyle.Fill;
  535. this.matInfo14.EnableUpdateInfo = true;
  536. this.matInfo14.EnableUpdateWt = true;
  537. this.matInfo14.Font = new System.Drawing.Font("宋体", 10F);
  538. this.matInfo14.Key = "200";
  539. this.matInfo14.Location = new System.Drawing.Point(0, 0);
  540. this.matInfo14.Margin = new System.Windows.Forms.Padding(3, 8, 3, 8);
  541. this.matInfo14.MatName = "钢管销售";
  542. this.matInfo14.Name = "matInfo14";
  543. this.matInfo14.Size = new System.Drawing.Size(1125, 163);
  544. this.matInfo14.TabIndex = 3;
  545. //
  546. // ultraTabPageControl5
  547. //
  548. this.ultraTabPageControl5.Controls.Add(this.matInfo9);
  549. this.ultraTabPageControl5.Location = new System.Drawing.Point(-10000, -10000);
  550. this.ultraTabPageControl5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  551. this.ultraTabPageControl5.Name = "ultraTabPageControl5";
  552. this.ultraTabPageControl5.Size = new System.Drawing.Size(1125, 163);
  553. //
  554. // matInfo9
  555. //
  556. this.matInfo9.AddNew = true;
  557. this.matInfo9.ColumnsC = "ProOrderNo,JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActCount,Memo";
  558. this.matInfo9.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  559. this.matInfo9.Dock = System.Windows.Forms.DockStyle.Fill;
  560. this.matInfo9.EnableUpdateInfo = true;
  561. this.matInfo9.EnableUpdateWt = true;
  562. this.matInfo9.Font = new System.Drawing.Font("宋体", 10F);
  563. this.matInfo9.Key = "202";
  564. this.matInfo9.Location = new System.Drawing.Point(0, 0);
  565. this.matInfo9.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  566. this.matInfo9.MatName = "钢管销售";
  567. this.matInfo9.Name = "matInfo9";
  568. this.matInfo9.Size = new System.Drawing.Size(1125, 163);
  569. this.matInfo9.TabIndex = 2;
  570. //
  571. // ultraTabPageControl24
  572. //
  573. this.ultraTabPageControl24.Controls.Add(this.matInfo18);
  574. this.ultraTabPageControl24.Location = new System.Drawing.Point(-10000, -10000);
  575. this.ultraTabPageControl24.Name = "ultraTabPageControl24";
  576. this.ultraTabPageControl24.Size = new System.Drawing.Size(1125, 163);
  577. //
  578. // matInfo18
  579. //
  580. this.matInfo18.AddNew = true;
  581. this.matInfo18.ColumnsC = "SpecName,ActCount,Memo";
  582. this.matInfo18.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  583. this.matInfo18.Dock = System.Windows.Forms.DockStyle.Fill;
  584. this.matInfo18.EnableUpdateInfo = true;
  585. this.matInfo18.EnableUpdateWt = true;
  586. this.matInfo18.Font = new System.Drawing.Font("宋体", 10F);
  587. this.matInfo18.Key = "209";
  588. this.matInfo18.Location = new System.Drawing.Point(0, 0);
  589. this.matInfo18.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  590. this.matInfo18.MatName = "钢管销售";
  591. this.matInfo18.Name = "matInfo18";
  592. this.matInfo18.Size = new System.Drawing.Size(1125, 163);
  593. this.matInfo18.TabIndex = 3;
  594. //
  595. // ultraTabPageControl6
  596. //
  597. this.ultraTabPageControl6.Controls.Add(this.matInfo10);
  598. this.ultraTabPageControl6.Location = new System.Drawing.Point(-10000, -10000);
  599. this.ultraTabPageControl6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  600. this.ultraTabPageControl6.Name = "ultraTabPageControl6";
  601. this.ultraTabPageControl6.Size = new System.Drawing.Size(1125, 163);
  602. //
  603. // matInfo10
  604. //
  605. this.matInfo10.AddNew = true;
  606. this.matInfo10.ColumnsC = "SpecName,ActCount,Memo";
  607. this.matInfo10.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  608. this.matInfo10.Dock = System.Windows.Forms.DockStyle.Fill;
  609. this.matInfo10.EnableUpdateInfo = true;
  610. this.matInfo10.EnableUpdateWt = true;
  611. this.matInfo10.Font = new System.Drawing.Font("宋体", 10F);
  612. this.matInfo10.Key = "203";
  613. this.matInfo10.Location = new System.Drawing.Point(0, 0);
  614. this.matInfo10.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  615. this.matInfo10.MatName = "钢管销售";
  616. this.matInfo10.Name = "matInfo10";
  617. this.matInfo10.Size = new System.Drawing.Size(1125, 163);
  618. this.matInfo10.TabIndex = 2;
  619. //
  620. // ultraTabPageControl15
  621. //
  622. this.ultraTabPageControl15.Controls.Add(this.matInfo11);
  623. this.ultraTabPageControl15.Location = new System.Drawing.Point(-10000, -10000);
  624. this.ultraTabPageControl15.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  625. this.ultraTabPageControl15.Name = "ultraTabPageControl15";
  626. this.ultraTabPageControl15.Size = new System.Drawing.Size(1125, 163);
  627. //
  628. // matInfo11
  629. //
  630. this.matInfo11.AddNew = true;
  631. this.matInfo11.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActCount,Memo";
  632. this.matInfo11.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  633. this.matInfo11.Dock = System.Windows.Forms.DockStyle.Fill;
  634. this.matInfo11.EnableUpdateInfo = true;
  635. this.matInfo11.EnableUpdateWt = true;
  636. this.matInfo11.Font = new System.Drawing.Font("宋体", 10F);
  637. this.matInfo11.Key = "204";
  638. this.matInfo11.Location = new System.Drawing.Point(0, 0);
  639. this.matInfo11.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  640. this.matInfo11.MatName = "钢管销售";
  641. this.matInfo11.Name = "matInfo11";
  642. this.matInfo11.Size = new System.Drawing.Size(1125, 163);
  643. this.matInfo11.TabIndex = 2;
  644. //
  645. // ultraTabPageControl16
  646. //
  647. this.ultraTabPageControl16.Controls.Add(this.matInfo12);
  648. this.ultraTabPageControl16.Location = new System.Drawing.Point(-10000, -10000);
  649. this.ultraTabPageControl16.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  650. this.ultraTabPageControl16.Name = "ultraTabPageControl16";
  651. this.ultraTabPageControl16.Size = new System.Drawing.Size(1125, 163);
  652. //
  653. // matInfo12
  654. //
  655. this.matInfo12.AddNew = true;
  656. this.matInfo12.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActLenTemp,ActCount,ActWei" +
  657. "ght";
  658. this.matInfo12.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  659. this.matInfo12.Dock = System.Windows.Forms.DockStyle.Fill;
  660. this.matInfo12.EnableUpdateInfo = true;
  661. this.matInfo12.EnableUpdateWt = true;
  662. this.matInfo12.Font = new System.Drawing.Font("宋体", 10F);
  663. this.matInfo12.Key = "205";
  664. this.matInfo12.Location = new System.Drawing.Point(0, 0);
  665. this.matInfo12.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  666. this.matInfo12.MatName = "内转钢管";
  667. this.matInfo12.Name = "matInfo12";
  668. this.matInfo12.Size = new System.Drawing.Size(1125, 163);
  669. this.matInfo12.TabIndex = 1;
  670. //
  671. // ultraTabPageControl17
  672. //
  673. this.ultraTabPageControl17.Controls.Add(this.matInfo13);
  674. this.ultraTabPageControl17.Location = new System.Drawing.Point(-10000, -10000);
  675. this.ultraTabPageControl17.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  676. this.ultraTabPageControl17.Name = "ultraTabPageControl17";
  677. this.ultraTabPageControl17.Size = new System.Drawing.Size(1125, 163);
  678. //
  679. // matInfo13
  680. //
  681. this.matInfo13.AddNew = true;
  682. this.matInfo13.ColumnsC = "JudgeStoveNo,Steelname,ActDimater,ActLenTemp,ActCount,ActWeight";
  683. this.matInfo13.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  684. this.matInfo13.Dock = System.Windows.Forms.DockStyle.Fill;
  685. this.matInfo13.EnableUpdateInfo = true;
  686. this.matInfo13.EnableUpdateWt = true;
  687. this.matInfo13.Font = new System.Drawing.Font("宋体", 10F);
  688. this.matInfo13.Key = "206";
  689. this.matInfo13.Location = new System.Drawing.Point(0, 0);
  690. this.matInfo13.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  691. this.matInfo13.MatName = "内转钢坯";
  692. this.matInfo13.Name = "matInfo13";
  693. this.matInfo13.Size = new System.Drawing.Size(1125, 163);
  694. this.matInfo13.TabIndex = 1;
  695. //
  696. // ultraTabPageControl7
  697. //
  698. this.ultraTabPageControl7.Controls.Add(this.matInfo3);
  699. this.ultraTabPageControl7.Location = new System.Drawing.Point(1, 26);
  700. this.ultraTabPageControl7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  701. this.ultraTabPageControl7.Name = "ultraTabPageControl7";
  702. this.ultraTabPageControl7.Size = new System.Drawing.Size(1123, 170);
  703. //
  704. // matInfo3
  705. //
  706. this.matInfo3.AddNew = false;
  707. this.matInfo3.ColumnsC = "ProOrderNo,Steelname,ActDimater,ActLenTemp,ActCount,ActWeight,JudgeStoveNoOld";
  708. this.matInfo3.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  709. this.matInfo3.Dock = System.Windows.Forms.DockStyle.Fill;
  710. this.matInfo3.EnableUpdateInfo = true;
  711. this.matInfo3.EnableUpdateWt = false;
  712. this.matInfo3.Font = new System.Drawing.Font("宋体", 10F);
  713. this.matInfo3.Key = "102";
  714. this.matInfo3.Location = new System.Drawing.Point(0, 0);
  715. this.matInfo3.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  716. this.matInfo3.MatName = "";
  717. this.matInfo3.Name = "matInfo3";
  718. this.matInfo3.Size = new System.Drawing.Size(1123, 170);
  719. this.matInfo3.TabIndex = 2;
  720. //
  721. // ultraTabPageControl20
  722. //
  723. this.ultraTabPageControl20.Controls.Add(this.matInfo17);
  724. this.ultraTabPageControl20.Location = new System.Drawing.Point(-10000, -10000);
  725. this.ultraTabPageControl20.Name = "ultraTabPageControl20";
  726. this.ultraTabPageControl20.Size = new System.Drawing.Size(1123, 170);
  727. //
  728. // matInfo17
  729. //
  730. this.matInfo17.AddNew = true;
  731. this.matInfo17.ColumnsC = "ProOrderNo,Steelname,ActDimater,ActLenTemp,ActCount,ActWeight,JudgeStoveNoOld";
  732. this.matInfo17.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  733. this.matInfo17.Dock = System.Windows.Forms.DockStyle.Fill;
  734. this.matInfo17.EnableUpdateInfo = true;
  735. this.matInfo17.EnableUpdateWt = true;
  736. this.matInfo17.Font = new System.Drawing.Font("宋体", 10F);
  737. this.matInfo17.Key = "110";
  738. this.matInfo17.Location = new System.Drawing.Point(0, 0);
  739. this.matInfo17.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  740. this.matInfo17.MatName = "";
  741. this.matInfo17.Name = "matInfo17";
  742. this.matInfo17.Size = new System.Drawing.Size(1123, 170);
  743. this.matInfo17.TabIndex = 3;
  744. //
  745. // ultraTabPageControl8
  746. //
  747. this.ultraTabPageControl8.Controls.Add(this.matInfo2);
  748. this.ultraTabPageControl8.Location = new System.Drawing.Point(-10000, -10000);
  749. this.ultraTabPageControl8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  750. this.ultraTabPageControl8.Name = "ultraTabPageControl8";
  751. this.ultraTabPageControl8.Size = new System.Drawing.Size(1123, 170);
  752. //
  753. // matInfo2
  754. //
  755. this.matInfo2.AddNew = true;
  756. this.matInfo2.ColumnsC = "ProOrderNo,JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActLenTemp,ActC" +
  757. "ount,ActWeight";
  758. this.matInfo2.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  759. this.matInfo2.Dock = System.Windows.Forms.DockStyle.Fill;
  760. this.matInfo2.EnableUpdateInfo = true;
  761. this.matInfo2.EnableUpdateWt = true;
  762. this.matInfo2.Font = new System.Drawing.Font("宋体", 10F);
  763. this.matInfo2.Key = "103";
  764. this.matInfo2.Location = new System.Drawing.Point(0, 0);
  765. this.matInfo2.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  766. this.matInfo2.MatName = "";
  767. this.matInfo2.Name = "matInfo2";
  768. this.matInfo2.Size = new System.Drawing.Size(1123, 170);
  769. this.matInfo2.TabIndex = 2;
  770. //
  771. // ultraTabPageControl9
  772. //
  773. this.ultraTabPageControl9.Controls.Add(this.matInfo1);
  774. this.ultraTabPageControl9.Location = new System.Drawing.Point(-10000, -10000);
  775. this.ultraTabPageControl9.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  776. this.ultraTabPageControl9.Name = "ultraTabPageControl9";
  777. this.ultraTabPageControl9.Size = new System.Drawing.Size(1123, 170);
  778. //
  779. // matInfo1
  780. //
  781. this.matInfo1.AddNew = true;
  782. this.matInfo1.ColumnsC = "SpecName,ActCount,SpecNo";
  783. this.matInfo1.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  784. this.matInfo1.Dock = System.Windows.Forms.DockStyle.Fill;
  785. this.matInfo1.EnableUpdateInfo = true;
  786. this.matInfo1.EnableUpdateWt = true;
  787. this.matInfo1.Font = new System.Drawing.Font("宋体", 10F);
  788. this.matInfo1.Key = "104";
  789. this.matInfo1.Location = new System.Drawing.Point(0, 0);
  790. this.matInfo1.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  791. this.matInfo1.MatName = "";
  792. this.matInfo1.Name = "matInfo1";
  793. this.matInfo1.Size = new System.Drawing.Size(1123, 170);
  794. this.matInfo1.TabIndex = 2;
  795. //
  796. // ultraTabPageControl10
  797. //
  798. this.ultraTabPageControl10.Controls.Add(this.matInfo4);
  799. this.ultraTabPageControl10.Location = new System.Drawing.Point(-10000, -10000);
  800. this.ultraTabPageControl10.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  801. this.ultraTabPageControl10.Name = "ultraTabPageControl10";
  802. this.ultraTabPageControl10.Size = new System.Drawing.Size(1123, 170);
  803. //
  804. // matInfo4
  805. //
  806. this.matInfo4.AddNew = true;
  807. this.matInfo4.ColumnsC = "SpecName,ActCount,Memo";
  808. this.matInfo4.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  809. this.matInfo4.Dock = System.Windows.Forms.DockStyle.Fill;
  810. this.matInfo4.EnableUpdateInfo = true;
  811. this.matInfo4.EnableUpdateWt = true;
  812. this.matInfo4.Font = new System.Drawing.Font("宋体", 10F);
  813. this.matInfo4.Key = "105";
  814. this.matInfo4.Location = new System.Drawing.Point(0, 0);
  815. this.matInfo4.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
  816. this.matInfo4.MatName = "";
  817. this.matInfo4.Name = "matInfo4";
  818. this.matInfo4.Size = new System.Drawing.Size(1123, 170);
  819. this.matInfo4.TabIndex = 1;
  820. //
  821. // ultraTabPageControl11
  822. //
  823. this.ultraTabPageControl11.Controls.Add(this.matInfo5);
  824. this.ultraTabPageControl11.Location = new System.Drawing.Point(-10000, -10000);
  825. this.ultraTabPageControl11.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  826. this.ultraTabPageControl11.Name = "ultraTabPageControl11";
  827. this.ultraTabPageControl11.Size = new System.Drawing.Size(1123, 170);
  828. //
  829. // matInfo5
  830. //
  831. this.matInfo5.AddNew = true;
  832. this.matInfo5.ColumnsC = "SpecName,ActCount,Memo";
  833. this.matInfo5.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  834. this.matInfo5.Dock = System.Windows.Forms.DockStyle.Fill;
  835. this.matInfo5.EnableUpdateInfo = true;
  836. this.matInfo5.EnableUpdateWt = true;
  837. this.matInfo5.Font = new System.Drawing.Font("宋体", 10F);
  838. this.matInfo5.Key = "106";
  839. this.matInfo5.Location = new System.Drawing.Point(0, 0);
  840. this.matInfo5.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  841. this.matInfo5.MatName = "";
  842. this.matInfo5.Name = "matInfo5";
  843. this.matInfo5.Size = new System.Drawing.Size(1123, 170);
  844. this.matInfo5.TabIndex = 1;
  845. //
  846. // ultraTabPageControl12
  847. //
  848. this.ultraTabPageControl12.Controls.Add(this.matInfo6);
  849. this.ultraTabPageControl12.Location = new System.Drawing.Point(-10000, -10000);
  850. this.ultraTabPageControl12.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  851. this.ultraTabPageControl12.Name = "ultraTabPageControl12";
  852. this.ultraTabPageControl12.Size = new System.Drawing.Size(1123, 170);
  853. //
  854. // matInfo6
  855. //
  856. this.matInfo6.AddNew = true;
  857. this.matInfo6.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActCount,Memo";
  858. this.matInfo6.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  859. this.matInfo6.Dock = System.Windows.Forms.DockStyle.Fill;
  860. this.matInfo6.EnableUpdateInfo = true;
  861. this.matInfo6.EnableUpdateWt = true;
  862. this.matInfo6.Font = new System.Drawing.Font("宋体", 10F);
  863. this.matInfo6.Key = "107";
  864. this.matInfo6.Location = new System.Drawing.Point(0, 0);
  865. this.matInfo6.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  866. this.matInfo6.MatName = "";
  867. this.matInfo6.Name = "matInfo6";
  868. this.matInfo6.Size = new System.Drawing.Size(1123, 170);
  869. this.matInfo6.TabIndex = 1;
  870. //
  871. // ultraTabPageControl13
  872. //
  873. this.ultraTabPageControl13.Controls.Add(this.matInfo7);
  874. this.ultraTabPageControl13.Location = new System.Drawing.Point(-10000, -10000);
  875. this.ultraTabPageControl13.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  876. this.ultraTabPageControl13.Name = "ultraTabPageControl13";
  877. this.ultraTabPageControl13.Size = new System.Drawing.Size(1123, 170);
  878. //
  879. // matInfo7
  880. //
  881. this.matInfo7.AddNew = true;
  882. this.matInfo7.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActLenTemp,ActCount,ActWei" +
  883. "ght";
  884. this.matInfo7.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  885. this.matInfo7.Dock = System.Windows.Forms.DockStyle.Fill;
  886. this.matInfo7.EnableUpdateInfo = true;
  887. this.matInfo7.EnableUpdateWt = true;
  888. this.matInfo7.Font = new System.Drawing.Font("宋体", 10F);
  889. this.matInfo7.Key = "108";
  890. this.matInfo7.Location = new System.Drawing.Point(0, 0);
  891. this.matInfo7.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  892. this.matInfo7.MatName = "";
  893. this.matInfo7.Name = "matInfo7";
  894. this.matInfo7.Size = new System.Drawing.Size(1123, 170);
  895. this.matInfo7.TabIndex = 1;
  896. //
  897. // ultraTabPageControl14
  898. //
  899. this.ultraTabPageControl14.Controls.Add(this.matInfo8);
  900. this.ultraTabPageControl14.Location = new System.Drawing.Point(-10000, -10000);
  901. this.ultraTabPageControl14.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  902. this.ultraTabPageControl14.Name = "ultraTabPageControl14";
  903. this.ultraTabPageControl14.Size = new System.Drawing.Size(1123, 170);
  904. //
  905. // matInfo8
  906. //
  907. this.matInfo8.AddNew = true;
  908. this.matInfo8.ColumnsC = "JudgeStoveNo,Steelname,ActDimater,ActLenTemp,ActCount,ActWeight";
  909. this.matInfo8.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  910. this.matInfo8.Dock = System.Windows.Forms.DockStyle.Fill;
  911. this.matInfo8.EnableUpdateInfo = true;
  912. this.matInfo8.EnableUpdateWt = true;
  913. this.matInfo8.Font = new System.Drawing.Font("宋体", 10F);
  914. this.matInfo8.Key = "109";
  915. this.matInfo8.Location = new System.Drawing.Point(0, 0);
  916. this.matInfo8.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
  917. this.matInfo8.MatName = "";
  918. this.matInfo8.Name = "matInfo8";
  919. this.matInfo8.Size = new System.Drawing.Size(1123, 170);
  920. this.matInfo8.TabIndex = 1;
  921. //
  922. // ultraTabPageControl21
  923. //
  924. this.ultraTabPageControl21.Controls.Add(this.matInfo16);
  925. this.ultraTabPageControl21.Controls.Add(this.ultraPanel12);
  926. this.ultraTabPageControl21.Location = new System.Drawing.Point(1, 26);
  927. this.ultraTabPageControl21.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  928. this.ultraTabPageControl21.Name = "ultraTabPageControl21";
  929. this.ultraTabPageControl21.Size = new System.Drawing.Size(1129, 240);
  930. //
  931. // matInfo16
  932. //
  933. this.matInfo16.AddNew = false;
  934. this.matInfo16.ColumnsC = "ProOrderNo,JudgeStoveNo,Producname,Gradename,Steelname,ActDimater,ActHeight,ActLe" +
  935. "nTemp,ActCount,ActWeight,StorageName";
  936. this.matInfo16.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  937. this.matInfo16.Dock = System.Windows.Forms.DockStyle.Fill;
  938. this.matInfo16.EnableUpdateInfo = true;
  939. this.matInfo16.EnableUpdateWt = false;
  940. this.matInfo16.Font = new System.Drawing.Font("宋体", 10F);
  941. this.matInfo16.Key = "201";
  942. this.matInfo16.Location = new System.Drawing.Point(0, 48);
  943. this.matInfo16.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
  944. this.matInfo16.MatName = "钢管";
  945. this.matInfo16.Name = "matInfo16";
  946. this.matInfo16.Size = new System.Drawing.Size(1129, 192);
  947. this.matInfo16.TabIndex = 7;
  948. //
  949. // ultraPanel12
  950. //
  951. //
  952. // ultraPanel12.ClientArea
  953. //
  954. this.ultraPanel12.ClientArea.Controls.Add(this.utbSave);
  955. this.ultraPanel12.ClientArea.Controls.Add(this.ultraButton1);
  956. this.ultraPanel12.Dock = System.Windows.Forms.DockStyle.Top;
  957. this.ultraPanel12.Location = new System.Drawing.Point(0, 0);
  958. this.ultraPanel12.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  959. this.ultraPanel12.Name = "ultraPanel12";
  960. this.ultraPanel12.Size = new System.Drawing.Size(1129, 48);
  961. this.ultraPanel12.TabIndex = 6;
  962. //
  963. // utbSave
  964. //
  965. appearance19.Image = ((object)(resources.GetObject("appearance19.Image")));
  966. this.utbSave.Appearance = appearance19;
  967. this.utbSave.AutoSize = true;
  968. this.utbSave.Font = new System.Drawing.Font("宋体", 10F);
  969. this.utbSave.Location = new System.Drawing.Point(582, 8);
  970. this.utbSave.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  971. this.utbSave.Name = "utbSave";
  972. this.utbSave.Size = new System.Drawing.Size(65, 27);
  973. this.utbSave.TabIndex = 597;
  974. this.utbSave.Text = " 保存";
  975. this.utbSave.Visible = false;
  976. //
  977. // ultraButton1
  978. //
  979. appearance7.Image = ((object)(resources.GetObject("appearance7.Image")));
  980. this.ultraButton1.Appearance = appearance7;
  981. this.ultraButton1.AutoSize = true;
  982. this.ultraButton1.Font = new System.Drawing.Font("宋体", 10F);
  983. this.ultraButton1.Location = new System.Drawing.Point(29, 8);
  984. this.ultraButton1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  985. this.ultraButton1.Name = "ultraButton1";
  986. this.ultraButton1.Size = new System.Drawing.Size(65, 27);
  987. this.ultraButton1.TabIndex = 596;
  988. this.ultraButton1.Text = " 保存";
  989. this.ultraButton1.Click += new System.EventHandler(this.btnSave2_Click);
  990. //
  991. // ultraTabPageControl19
  992. //
  993. this.ultraTabPageControl19.Controls.Add(this.matInfo15);
  994. this.ultraTabPageControl19.Controls.Add(this.ultraPanel11);
  995. this.ultraTabPageControl19.Location = new System.Drawing.Point(-10000, -10000);
  996. this.ultraTabPageControl19.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  997. this.ultraTabPageControl19.Name = "ultraTabPageControl19";
  998. this.ultraTabPageControl19.Size = new System.Drawing.Size(1129, 240);
  999. //
  1000. // matInfo15
  1001. //
  1002. this.matInfo15.AddNew = false;
  1003. this.matInfo15.ColumnsC = "JudgeStoveNo,Producname,Steelname,ActDimater,ActHeight,ActCount,Memo";
  1004. this.matInfo15.ColumnsM = "RecordNumber,MatName,ReceiveName,OrderName,ShippersName,TransportName,Memo";
  1005. this.matInfo15.Dock = System.Windows.Forms.DockStyle.Fill;
  1006. this.matInfo15.EnableUpdateInfo = true;
  1007. this.matInfo15.EnableUpdateWt = false;
  1008. this.matInfo15.Key = "208";
  1009. this.matInfo15.Location = new System.Drawing.Point(0, 48);
  1010. this.matInfo15.Margin = new System.Windows.Forms.Padding(0);
  1011. this.matInfo15.MatName = "";
  1012. this.matInfo15.Name = "matInfo15";
  1013. this.matInfo15.Size = new System.Drawing.Size(1129, 192);
  1014. this.matInfo15.TabIndex = 6;
  1015. //
  1016. // ultraPanel11
  1017. //
  1018. //
  1019. // ultraPanel11.ClientArea
  1020. //
  1021. this.ultraPanel11.ClientArea.Controls.Add(this.utbSave4);
  1022. this.ultraPanel11.Dock = System.Windows.Forms.DockStyle.Top;
  1023. this.ultraPanel11.Location = new System.Drawing.Point(0, 0);
  1024. this.ultraPanel11.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1025. this.ultraPanel11.Name = "ultraPanel11";
  1026. this.ultraPanel11.Size = new System.Drawing.Size(1129, 48);
  1027. this.ultraPanel11.TabIndex = 5;
  1028. //
  1029. // utbSave4
  1030. //
  1031. appearance13.Image = ((object)(resources.GetObject("appearance13.Image")));
  1032. this.utbSave4.Appearance = appearance13;
  1033. this.utbSave4.AutoSize = true;
  1034. this.utbSave4.Font = new System.Drawing.Font("宋体", 10F);
  1035. this.utbSave4.Location = new System.Drawing.Point(29, 8);
  1036. this.utbSave4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1037. this.utbSave4.Name = "utbSave4";
  1038. this.utbSave4.Size = new System.Drawing.Size(65, 27);
  1039. this.utbSave4.TabIndex = 596;
  1040. this.utbSave4.Text = " 保存";
  1041. this.utbSave4.Click += new System.EventHandler(this.btnSave2_Click);
  1042. //
  1043. // ultraTabPageControl22
  1044. //
  1045. this.ultraTabPageControl22.Controls.Add(this.tbOther);
  1046. this.ultraTabPageControl22.Controls.Add(this.ultraPanel9);
  1047. this.ultraTabPageControl22.Location = new System.Drawing.Point(-10000, -10000);
  1048. this.ultraTabPageControl22.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1049. this.ultraTabPageControl22.Name = "ultraTabPageControl22";
  1050. this.ultraTabPageControl22.Size = new System.Drawing.Size(1129, 240);
  1051. //
  1052. // tbOther
  1053. //
  1054. this.tbOther.Controls.Add(this.ultraTabSharedControlsPage8);
  1055. this.tbOther.Controls.Add(this.ultraTabPageControl5);
  1056. this.tbOther.Controls.Add(this.ultraTabPageControl6);
  1057. this.tbOther.Controls.Add(this.ultraTabPageControl15);
  1058. this.tbOther.Controls.Add(this.ultraTabPageControl16);
  1059. this.tbOther.Controls.Add(this.ultraTabPageControl17);
  1060. this.tbOther.Controls.Add(this.ultraTabPageControl18);
  1061. this.tbOther.Controls.Add(this.ultraTabPageControl24);
  1062. this.tbOther.Dock = System.Windows.Forms.DockStyle.Fill;
  1063. this.tbOther.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1064. this.tbOther.Location = new System.Drawing.Point(0, 48);
  1065. this.tbOther.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1066. this.tbOther.Name = "tbOther";
  1067. this.tbOther.SharedControlsPage = this.ultraTabSharedControlsPage8;
  1068. this.tbOther.Size = new System.Drawing.Size(1129, 192);
  1069. this.tbOther.TabIndex = 5;
  1070. this.tbOther.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
  1071. ultraTab13.Key = "200";
  1072. ultraTab13.TabPage = this.ultraTabPageControl18;
  1073. ultraTab13.Text = "钢管销售";
  1074. ultraTab28.Key = "202";
  1075. ultraTab28.TabPage = this.ultraTabPageControl5;
  1076. ultraTab28.Text = "废料销售";
  1077. ultraTab2.Key = "209";
  1078. ultraTab2.TabPage = this.ultraTabPageControl24;
  1079. ultraTab2.Text = "废料销售2";
  1080. ultraTab29.Key = "203";
  1081. ultraTab29.TabPage = this.ultraTabPageControl6;
  1082. ultraTab29.Text = "修复出厂";
  1083. ultraTab30.Key = "204";
  1084. ultraTab30.TabPage = this.ultraTabPageControl15;
  1085. ultraTab30.Text = "其他内转";
  1086. ultraTab31.Key = "205";
  1087. ultraTab31.TabPage = this.ultraTabPageControl16;
  1088. ultraTab31.Text = "内转钢管";
  1089. ultraTab32.Key = "206";
  1090. ultraTab32.TabPage = this.ultraTabPageControl17;
  1091. ultraTab32.Text = "内转钢坯";
  1092. this.tbOther.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  1093. ultraTab13,
  1094. ultraTab28,
  1095. ultraTab2,
  1096. ultraTab29,
  1097. ultraTab30,
  1098. ultraTab31,
  1099. ultraTab32});
  1100. this.tbOther.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.tbFirstWt_SelectedTabChanged);
  1101. //
  1102. // ultraTabSharedControlsPage8
  1103. //
  1104. this.ultraTabSharedControlsPage8.Location = new System.Drawing.Point(-10000, -10000);
  1105. this.ultraTabSharedControlsPage8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1106. this.ultraTabSharedControlsPage8.Name = "ultraTabSharedControlsPage8";
  1107. this.ultraTabSharedControlsPage8.Size = new System.Drawing.Size(1125, 163);
  1108. //
  1109. // ultraPanel9
  1110. //
  1111. //
  1112. // ultraPanel9.ClientArea
  1113. //
  1114. this.ultraPanel9.ClientArea.Controls.Add(this.btnSaveAsT2);
  1115. this.ultraPanel9.ClientArea.Controls.Add(this.btnSave2);
  1116. this.ultraPanel9.Dock = System.Windows.Forms.DockStyle.Top;
  1117. this.ultraPanel9.Location = new System.Drawing.Point(0, 0);
  1118. this.ultraPanel9.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1119. this.ultraPanel9.Name = "ultraPanel9";
  1120. this.ultraPanel9.Size = new System.Drawing.Size(1129, 48);
  1121. this.ultraPanel9.TabIndex = 4;
  1122. //
  1123. // btnSaveAsT2
  1124. //
  1125. appearance6.Image = ((object)(resources.GetObject("appearance6.Image")));
  1126. this.btnSaveAsT2.Appearance = appearance6;
  1127. this.btnSaveAsT2.AutoSize = true;
  1128. this.btnSaveAsT2.Font = new System.Drawing.Font("宋体", 10F);
  1129. this.btnSaveAsT2.Location = new System.Drawing.Point(144, 8);
  1130. this.btnSaveAsT2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1131. this.btnSaveAsT2.Name = "btnSaveAsT2";
  1132. this.btnSaveAsT2.Size = new System.Drawing.Size(106, 27);
  1133. this.btnSaveAsT2.TabIndex = 598;
  1134. this.btnSaveAsT2.Text = " 保存为模板";
  1135. this.btnSaveAsT2.Click += new System.EventHandler(this.utbSaveAsT_Click);
  1136. //
  1137. // btnSave2
  1138. //
  1139. appearance8.Image = ((object)(resources.GetObject("appearance8.Image")));
  1140. this.btnSave2.Appearance = appearance8;
  1141. this.btnSave2.AutoSize = true;
  1142. this.btnSave2.Font = new System.Drawing.Font("宋体", 10F);
  1143. this.btnSave2.Location = new System.Drawing.Point(29, 8);
  1144. this.btnSave2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1145. this.btnSave2.Name = "btnSave2";
  1146. this.btnSave2.Size = new System.Drawing.Size(65, 27);
  1147. this.btnSave2.TabIndex = 596;
  1148. this.btnSave2.Text = " 保存";
  1149. this.btnSave2.Click += new System.EventHandler(this.btnSave2_Click);
  1150. //
  1151. // ultraTabPageControl23
  1152. //
  1153. this.ultraTabPageControl23.Controls.Add(this.ultraPanel10);
  1154. this.ultraTabPageControl23.Location = new System.Drawing.Point(-10000, -10000);
  1155. this.ultraTabPageControl23.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1156. this.ultraTabPageControl23.Name = "ultraTabPageControl23";
  1157. this.ultraTabPageControl23.Size = new System.Drawing.Size(1129, 240);
  1158. //
  1159. // ultraPanel10
  1160. //
  1161. //
  1162. // ultraPanel10.ClientArea
  1163. //
  1164. this.ultraPanel10.ClientArea.Controls.Add(this.utbSave3);
  1165. this.ultraPanel10.Dock = System.Windows.Forms.DockStyle.Fill;
  1166. this.ultraPanel10.Location = new System.Drawing.Point(0, 0);
  1167. this.ultraPanel10.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1168. this.ultraPanel10.Name = "ultraPanel10";
  1169. this.ultraPanel10.Size = new System.Drawing.Size(1129, 240);
  1170. this.ultraPanel10.TabIndex = 5;
  1171. //
  1172. // utbSave3
  1173. //
  1174. appearance9.Image = ((object)(resources.GetObject("appearance9.Image")));
  1175. this.utbSave3.Appearance = appearance9;
  1176. this.utbSave3.AutoSize = true;
  1177. this.utbSave3.Font = new System.Drawing.Font("宋体", 10F);
  1178. this.utbSave3.Location = new System.Drawing.Point(39, 18);
  1179. this.utbSave3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1180. this.utbSave3.Name = "utbSave3";
  1181. this.utbSave3.Size = new System.Drawing.Size(65, 27);
  1182. this.utbSave3.TabIndex = 596;
  1183. this.utbSave3.Text = " 保存";
  1184. this.utbSave3.Click += new System.EventHandler(this.btnSave2_Click);
  1185. //
  1186. // uceType
  1187. //
  1188. this.uceType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1189. valueListItem14.DataValue = "101";
  1190. valueListItem14.DisplayText = "空车过皮";
  1191. valueListItem15.DataValue = "102";
  1192. valueListItem15.DisplayText = "钢坯采购";
  1193. valueListItem16.DataValue = "103";
  1194. valueListItem16.DisplayText = "钢管退货";
  1195. valueListItem17.DataValue = "104";
  1196. valueListItem17.DisplayText = "采购辅料";
  1197. valueListItem18.DataValue = "105";
  1198. valueListItem18.DisplayText = "修复返厂";
  1199. valueListItem26.DataValue = "106";
  1200. valueListItem26.DisplayText = "设备采购";
  1201. valueListItem27.DataValue = "107";
  1202. valueListItem27.DisplayText = "其他内转";
  1203. valueListItem28.DataValue = "108";
  1204. valueListItem28.DisplayText = "内转钢管";
  1205. valueListItem29.DataValue = "109";
  1206. valueListItem29.DisplayText = "内转钢坯";
  1207. valueListItem30.DataValue = "201";
  1208. valueListItem30.DisplayText = "配车单称重";
  1209. valueListItem31.DataValue = "202";
  1210. valueListItem31.DisplayText = "废料销售";
  1211. valueListItem32.DataValue = "203";
  1212. valueListItem32.DisplayText = "修复出厂";
  1213. valueListItem33.DataValue = "204";
  1214. valueListItem33.DisplayText = "其他内转";
  1215. valueListItem34.DataValue = "205";
  1216. valueListItem34.DisplayText = "内转钢管";
  1217. valueListItem35.DataValue = "206";
  1218. valueListItem35.DisplayText = "内转钢坯";
  1219. valueListItem36.DataValue = "207";
  1220. valueListItem36.DisplayText = "空车回皮";
  1221. valueListItem37.DataValue = "200";
  1222. valueListItem37.DisplayText = "钢管销售";
  1223. valueListItem38.DataValue = "208";
  1224. valueListItem38.DisplayText = "废品倒运";
  1225. this.uceType.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1226. valueListItem14,
  1227. valueListItem15,
  1228. valueListItem16,
  1229. valueListItem17,
  1230. valueListItem18,
  1231. valueListItem26,
  1232. valueListItem27,
  1233. valueListItem28,
  1234. valueListItem29,
  1235. valueListItem30,
  1236. valueListItem31,
  1237. valueListItem32,
  1238. valueListItem33,
  1239. valueListItem34,
  1240. valueListItem35,
  1241. valueListItem36,
  1242. valueListItem37,
  1243. valueListItem38});
  1244. this.uceType.Location = new System.Drawing.Point(533, 186);
  1245. this.uceType.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1246. this.uceType.Name = "uceType";
  1247. this.uceType.Size = new System.Drawing.Size(144, 21);
  1248. this.uceType.TabIndex = 72;
  1249. this.uceType.Visible = false;
  1250. //
  1251. // uceVlid
  1252. //
  1253. this.uceVlid.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1254. valueListItem1.DataValue = "0";
  1255. valueListItem1.DisplayText = "无效";
  1256. valueListItem2.DataValue = "1";
  1257. valueListItem2.DisplayText = "有效";
  1258. this.uceVlid.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1259. valueListItem1,
  1260. valueListItem2});
  1261. this.uceVlid.Location = new System.Drawing.Point(608, 282);
  1262. this.uceVlid.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1263. this.uceVlid.Name = "uceVlid";
  1264. this.uceVlid.Size = new System.Drawing.Size(144, 21);
  1265. this.uceVlid.TabIndex = 73;
  1266. this.uceVlid.Visible = false;
  1267. //
  1268. // delete
  1269. //
  1270. editorButton1.Key = "select";
  1271. editorButton1.Text = "删除";
  1272. this.delete.ButtonsRight.Add(editorButton1);
  1273. this.delete.Location = new System.Drawing.Point(265, 186);
  1274. this.delete.Margin = new System.Windows.Forms.Padding(4);
  1275. this.delete.Name = "delete";
  1276. this.delete.Size = new System.Drawing.Size(183, 21);
  1277. this.delete.TabIndex = 73;
  1278. this.delete.Visible = false;
  1279. this.delete.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.delete_EditorButtonClick);
  1280. //
  1281. // uteCarNo
  1282. //
  1283. this.uteCarNo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1284. | System.Windows.Forms.AnchorStyles.Left)));
  1285. this.uteCarNo.Location = new System.Drawing.Point(516, 8);
  1286. this.uteCarNo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1287. this.uteCarNo.Name = "uteCarNo";
  1288. this.uteCarNo.Size = new System.Drawing.Size(97, 21);
  1289. this.uteCarNo.TabIndex = 950;
  1290. this.uteCarNo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
  1291. //
  1292. // uteChangeType
  1293. //
  1294. editorButton2.Key = "select";
  1295. editorButton2.Text = "修改";
  1296. this.uteChangeType.ButtonsRight.Add(editorButton2);
  1297. this.uteChangeType.Location = new System.Drawing.Point(369, 120);
  1298. this.uteChangeType.Margin = new System.Windows.Forms.Padding(4);
  1299. this.uteChangeType.Name = "uteChangeType";
  1300. this.uteChangeType.Size = new System.Drawing.Size(183, 21);
  1301. this.uteChangeType.TabIndex = 80;
  1302. this.uteChangeType.Visible = false;
  1303. this.uteChangeType.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.uteChangeType_EditorButtonClick);
  1304. //
  1305. // ultraTabPageControl3
  1306. //
  1307. this.ultraTabPageControl3.Controls.Add(this.ultraGroupBox1);
  1308. this.ultraTabPageControl3.Location = new System.Drawing.Point(1, 26);
  1309. this.ultraTabPageControl3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1310. this.ultraTabPageControl3.Name = "ultraTabPageControl3";
  1311. this.ultraTabPageControl3.Size = new System.Drawing.Size(1133, 269);
  1312. //
  1313. // ultraGroupBox1
  1314. //
  1315. this.ultraGroupBox1.Controls.Add(this.tbFirstWt);
  1316. this.ultraGroupBox1.Controls.Add(this.ultraPanel5);
  1317. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  1318. this.ultraGroupBox1.Font = new System.Drawing.Font("宋体", 10F);
  1319. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  1320. this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1321. this.ultraGroupBox1.Name = "ultraGroupBox1";
  1322. this.ultraGroupBox1.Size = new System.Drawing.Size(1133, 269);
  1323. this.ultraGroupBox1.TabIndex = 3;
  1324. this.ultraGroupBox1.Text = "第一次称重";
  1325. //
  1326. // tbFirstWt
  1327. //
  1328. this.tbFirstWt.Controls.Add(this.ultraTabSharedControlsPage4);
  1329. this.tbFirstWt.Controls.Add(this.ultraTabPageControl7);
  1330. this.tbFirstWt.Controls.Add(this.ultraTabPageControl8);
  1331. this.tbFirstWt.Controls.Add(this.ultraTabPageControl9);
  1332. this.tbFirstWt.Controls.Add(this.ultraTabPageControl10);
  1333. this.tbFirstWt.Controls.Add(this.ultraTabPageControl11);
  1334. this.tbFirstWt.Controls.Add(this.ultraTabPageControl12);
  1335. this.tbFirstWt.Controls.Add(this.ultraTabPageControl13);
  1336. this.tbFirstWt.Controls.Add(this.ultraTabPageControl14);
  1337. this.tbFirstWt.Controls.Add(this.ultraTabPageControl20);
  1338. this.tbFirstWt.Dock = System.Windows.Forms.DockStyle.Fill;
  1339. this.tbFirstWt.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold);
  1340. this.tbFirstWt.Location = new System.Drawing.Point(3, 67);
  1341. this.tbFirstWt.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1342. this.tbFirstWt.Name = "tbFirstWt";
  1343. this.tbFirstWt.SharedControlsPage = this.ultraTabSharedControlsPage4;
  1344. this.tbFirstWt.Size = new System.Drawing.Size(1127, 199);
  1345. this.tbFirstWt.TabIndex = 2;
  1346. this.tbFirstWt.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
  1347. ultraTab14.Key = "102";
  1348. ultraTab14.TabPage = this.ultraTabPageControl7;
  1349. ultraTab14.Text = "钢坯采购";
  1350. ultraTab1.Key = "110";
  1351. ultraTab1.TabPage = this.ultraTabPageControl20;
  1352. ultraTab1.Text = "钢坯退货";
  1353. ultraTab15.Key = "103";
  1354. ultraTab15.TabPage = this.ultraTabPageControl8;
  1355. ultraTab15.Text = "钢管退货";
  1356. ultraTab16.Key = "104";
  1357. ultraTab16.TabPage = this.ultraTabPageControl9;
  1358. ultraTab16.Text = "采购辅料";
  1359. ultraTab17.Key = "105";
  1360. ultraTab17.TabPage = this.ultraTabPageControl10;
  1361. ultraTab17.Text = "修复返厂";
  1362. ultraTab18.Key = "106";
  1363. ultraTab18.TabPage = this.ultraTabPageControl11;
  1364. ultraTab18.Text = "设备采购";
  1365. ultraTab19.Key = "107";
  1366. ultraTab19.TabPage = this.ultraTabPageControl12;
  1367. ultraTab19.Text = "其他内转";
  1368. ultraTab20.Key = "108";
  1369. ultraTab20.TabPage = this.ultraTabPageControl13;
  1370. ultraTab20.Text = "内转钢管";
  1371. ultraTab21.Key = "109";
  1372. ultraTab21.TabPage = this.ultraTabPageControl14;
  1373. ultraTab21.Text = "内转钢坯";
  1374. this.tbFirstWt.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  1375. ultraTab14,
  1376. ultraTab1,
  1377. ultraTab15,
  1378. ultraTab16,
  1379. ultraTab17,
  1380. ultraTab18,
  1381. ultraTab19,
  1382. ultraTab20,
  1383. ultraTab21});
  1384. this.tbFirstWt.Visible = false;
  1385. this.tbFirstWt.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.tbFirstWt_SelectedTabChanged);
  1386. //
  1387. // ultraTabSharedControlsPage4
  1388. //
  1389. this.ultraTabSharedControlsPage4.Location = new System.Drawing.Point(-10000, -10000);
  1390. this.ultraTabSharedControlsPage4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1391. this.ultraTabSharedControlsPage4.Name = "ultraTabSharedControlsPage4";
  1392. this.ultraTabSharedControlsPage4.Size = new System.Drawing.Size(1123, 170);
  1393. //
  1394. // ultraPanel5
  1395. //
  1396. //
  1397. // ultraPanel5.ClientArea
  1398. //
  1399. this.ultraPanel5.ClientArea.Controls.Add(this.utbSelect2);
  1400. this.ultraPanel5.ClientArea.Controls.Add(this.utbSelect);
  1401. this.ultraPanel5.ClientArea.Controls.Add(this.utbSaveAsT);
  1402. this.ultraPanel5.ClientArea.Controls.Add(this.chkGross);
  1403. this.ultraPanel5.ClientArea.Controls.Add(this.utbSave1);
  1404. this.ultraPanel5.Dock = System.Windows.Forms.DockStyle.Top;
  1405. this.ultraPanel5.Location = new System.Drawing.Point(3, 19);
  1406. this.ultraPanel5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1407. this.ultraPanel5.Name = "ultraPanel5";
  1408. this.ultraPanel5.Size = new System.Drawing.Size(1127, 48);
  1409. this.ultraPanel5.TabIndex = 3;
  1410. //
  1411. // utbSelect2
  1412. //
  1413. appearance22.Image = ((object)(resources.GetObject("appearance22.Image")));
  1414. this.utbSelect2.Appearance = appearance22;
  1415. this.utbSelect2.AutoSize = true;
  1416. this.utbSelect2.Font = new System.Drawing.Font("宋体", 10F);
  1417. this.utbSelect2.Location = new System.Drawing.Point(643, 8);
  1418. this.utbSelect2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1419. this.utbSelect2.Name = "utbSelect2";
  1420. this.utbSelect2.Size = new System.Drawing.Size(113, 27);
  1421. this.utbSelect2.TabIndex = 600;
  1422. this.utbSelect2.Text = "读取出库记录";
  1423. this.utbSelect2.Visible = false;
  1424. this.utbSelect2.Click += new System.EventHandler(this.utbSelect2_Click);
  1425. //
  1426. // utbSelect
  1427. //
  1428. appearance10.Image = ((object)(resources.GetObject("appearance10.Image")));
  1429. this.utbSelect.Appearance = appearance10;
  1430. this.utbSelect.AutoSize = true;
  1431. this.utbSelect.Font = new System.Drawing.Font("宋体", 10F);
  1432. this.utbSelect.Location = new System.Drawing.Point(505, 8);
  1433. this.utbSelect.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1434. this.utbSelect.Name = "utbSelect";
  1435. this.utbSelect.Size = new System.Drawing.Size(58, 27);
  1436. this.utbSelect.TabIndex = 599;
  1437. this.utbSelect.Text = "选择";
  1438. this.utbSelect.Visible = false;
  1439. this.utbSelect.Click += new System.EventHandler(this.utbSelect_Click);
  1440. //
  1441. // utbSaveAsT
  1442. //
  1443. appearance1.Image = ((object)(resources.GetObject("appearance1.Image")));
  1444. this.utbSaveAsT.Appearance = appearance1;
  1445. this.utbSaveAsT.AutoSize = true;
  1446. this.utbSaveAsT.Font = new System.Drawing.Font("宋体", 10F);
  1447. this.utbSaveAsT.Location = new System.Drawing.Point(333, 8);
  1448. this.utbSaveAsT.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1449. this.utbSaveAsT.Name = "utbSaveAsT";
  1450. this.utbSaveAsT.Size = new System.Drawing.Size(106, 27);
  1451. this.utbSaveAsT.TabIndex = 598;
  1452. this.utbSaveAsT.Text = " 保存为模板";
  1453. this.utbSaveAsT.Visible = false;
  1454. this.utbSaveAsT.Click += new System.EventHandler(this.utbSaveAsT_Click);
  1455. //
  1456. // chkGross
  1457. //
  1458. this.chkGross.AutoSize = true;
  1459. this.chkGross.Font = new System.Drawing.Font("宋体", 10F);
  1460. this.chkGross.Location = new System.Drawing.Point(139, 11);
  1461. this.chkGross.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1462. this.chkGross.Name = "chkGross";
  1463. this.chkGross.Size = new System.Drawing.Size(110, 18);
  1464. this.chkGross.TabIndex = 597;
  1465. this.chkGross.Text = "带货过皮车辆";
  1466. this.chkGross.UseVisualStyleBackColor = true;
  1467. this.chkGross.CheckedChanged += new System.EventHandler(this.chkGross_CheckedChanged);
  1468. //
  1469. // utbSave1
  1470. //
  1471. appearance23.Image = ((object)(resources.GetObject("appearance23.Image")));
  1472. this.utbSave1.Appearance = appearance23;
  1473. this.utbSave1.AutoSize = true;
  1474. this.utbSave1.Font = new System.Drawing.Font("宋体", 10F);
  1475. this.utbSave1.Location = new System.Drawing.Point(29, 8);
  1476. this.utbSave1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1477. this.utbSave1.Name = "utbSave1";
  1478. this.utbSave1.Size = new System.Drawing.Size(65, 27);
  1479. this.utbSave1.TabIndex = 596;
  1480. this.utbSave1.Text = " 保存";
  1481. this.utbSave1.Click += new System.EventHandler(this.utbSave1_Click);
  1482. //
  1483. // ultraTabPageControl4
  1484. //
  1485. this.ultraTabPageControl4.Controls.Add(this.tbScondWt);
  1486. this.ultraTabPageControl4.Location = new System.Drawing.Point(-10000, -10000);
  1487. this.ultraTabPageControl4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1488. this.ultraTabPageControl4.Name = "ultraTabPageControl4";
  1489. this.ultraTabPageControl4.Size = new System.Drawing.Size(1133, 269);
  1490. //
  1491. // tbScondWt
  1492. //
  1493. this.tbScondWt.Controls.Add(this.ultraTabSharedControlsPage7);
  1494. this.tbScondWt.Controls.Add(this.ultraTabPageControl21);
  1495. this.tbScondWt.Controls.Add(this.ultraTabPageControl22);
  1496. this.tbScondWt.Controls.Add(this.ultraTabPageControl23);
  1497. this.tbScondWt.Controls.Add(this.ultraTabPageControl19);
  1498. this.tbScondWt.Dock = System.Windows.Forms.DockStyle.Fill;
  1499. this.tbScondWt.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1500. this.tbScondWt.Location = new System.Drawing.Point(0, 0);
  1501. this.tbScondWt.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1502. this.tbScondWt.Name = "tbScondWt";
  1503. this.tbScondWt.SharedControlsPage = this.ultraTabSharedControlsPage7;
  1504. this.tbScondWt.Size = new System.Drawing.Size(1133, 269);
  1505. this.tbScondWt.TabIndex = 3;
  1506. this.tbScondWt.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
  1507. ultraTab25.Key = "0";
  1508. ultraTab25.TabPage = this.ultraTabPageControl21;
  1509. ultraTab25.Text = "配车单称重";
  1510. ultraTab22.Key = "3";
  1511. ultraTab22.TabPage = this.ultraTabPageControl19;
  1512. ultraTab22.Text = "废品倒运";
  1513. ultraTab22.Visible = false;
  1514. ultraTab26.Key = "1";
  1515. ultraTab26.TabPage = this.ultraTabPageControl22;
  1516. ultraTab26.Text = "其他称重";
  1517. ultraTab27.Key = "2";
  1518. ultraTab27.TabPage = this.ultraTabPageControl23;
  1519. ultraTab27.Text = "空车回皮";
  1520. this.tbScondWt.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  1521. ultraTab25,
  1522. ultraTab22,
  1523. ultraTab26,
  1524. ultraTab27});
  1525. this.tbScondWt.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.tbScondWt_SelectedTabChanged);
  1526. //
  1527. // ultraTabSharedControlsPage7
  1528. //
  1529. this.ultraTabSharedControlsPage7.Location = new System.Drawing.Point(-10000, -10000);
  1530. this.ultraTabSharedControlsPage7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1531. this.ultraTabSharedControlsPage7.Name = "ultraTabSharedControlsPage7";
  1532. this.ultraTabSharedControlsPage7.Size = new System.Drawing.Size(1129, 240);
  1533. //
  1534. // ultraTabPageControl2
  1535. //
  1536. this.ultraTabPageControl2.Controls.Add(this.ultraPanel23);
  1537. this.ultraTabPageControl2.Controls.Add(this.panel1);
  1538. this.ultraTabPageControl2.Controls.Add(this.ultraPanel3);
  1539. this.ultraTabPageControl2.Controls.Add(this.ultraPanel7);
  1540. this.ultraTabPageControl2.Location = new System.Drawing.Point(1, 23);
  1541. this.ultraTabPageControl2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1542. this.ultraTabPageControl2.Name = "ultraTabPageControl2";
  1543. this.ultraTabPageControl2.Size = new System.Drawing.Size(1137, 697);
  1544. //
  1545. // ultraPanel23
  1546. //
  1547. //
  1548. // ultraPanel23.ClientArea
  1549. //
  1550. this.ultraPanel23.ClientArea.Controls.Add(this.uceVlid);
  1551. this.ultraPanel23.ClientArea.Controls.Add(this.ugData);
  1552. this.ultraPanel23.Dock = System.Windows.Forms.DockStyle.Fill;
  1553. this.ultraPanel23.Location = new System.Drawing.Point(0, 102);
  1554. this.ultraPanel23.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1555. this.ultraPanel23.Name = "ultraPanel23";
  1556. this.ultraPanel23.Size = new System.Drawing.Size(1137, 523);
  1557. this.ultraPanel23.TabIndex = 3;
  1558. //
  1559. // ugData
  1560. //
  1561. this.ugData.DataSource = this.QueryBS;
  1562. ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1563. ultraGridColumn1.Header.Caption = "磅单号";
  1564. ultraGridColumn1.Header.VisiblePosition = 0;
  1565. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
  1566. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  1567. ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1568. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
  1569. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
  1570. ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1571. ultraGridColumn2.Header.Caption = "一次流水号";
  1572. ultraGridColumn2.Header.VisiblePosition = 1;
  1573. ultraGridColumn2.Hidden = true;
  1574. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 10;
  1575. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  1576. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
  1577. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
  1578. ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1579. ultraGridColumn3.Header.Caption = "二次流水号";
  1580. ultraGridColumn3.Header.VisiblePosition = 2;
  1581. ultraGridColumn3.Hidden = true;
  1582. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 12;
  1583. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  1584. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
  1585. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
  1586. ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1587. ultraGridColumn4.Header.Caption = "检斤人";
  1588. ultraGridColumn4.Header.VisiblePosition = 3;
  1589. ultraGridColumn4.Hidden = true;
  1590. ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
  1591. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
  1592. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
  1593. ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1594. ultraGridColumn5.Header.Caption = "检斤人";
  1595. ultraGridColumn5.Header.VisiblePosition = 5;
  1596. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 20;
  1597. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  1598. ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
  1599. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
  1600. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
  1601. ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1602. ultraGridColumn6.EditorComponent = this.uceType;
  1603. ultraGridColumn6.Header.Caption = "类型";
  1604. ultraGridColumn6.Header.VisiblePosition = 7;
  1605. ultraGridColumn6.Hidden = true;
  1606. ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
  1607. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
  1608. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
  1609. ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1610. ultraGridColumn7.EditorComponent = this.uceType;
  1611. ultraGridColumn7.Header.Caption = "类型";
  1612. ultraGridColumn7.Header.VisiblePosition = 9;
  1613. ultraGridColumn7.Hidden = true;
  1614. ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(100, 0);
  1615. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
  1616. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
  1617. ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1618. ultraGridColumn8.Header.Caption = "皮重";
  1619. ultraGridColumn8.Header.VisiblePosition = 4;
  1620. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 12;
  1621. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  1622. ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(66, 0);
  1623. ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1624. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
  1625. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
  1626. ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1627. ultraGridColumn9.Header.Caption = "毛重";
  1628. ultraGridColumn9.Header.VisiblePosition = 6;
  1629. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 14;
  1630. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  1631. ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 0);
  1632. ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1633. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
  1634. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
  1635. ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1636. ultraGridColumn10.Header.Caption = "净重";
  1637. ultraGridColumn10.Header.VisiblePosition = 8;
  1638. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 16;
  1639. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  1640. ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1641. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
  1642. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
  1643. ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1644. ultraGridColumn11.Header.Caption = "称皮时间";
  1645. ultraGridColumn11.Header.VisiblePosition = 10;
  1646. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 18;
  1647. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  1648. ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(160, 0);
  1649. ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1650. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
  1651. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
  1652. ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1653. ultraGridColumn12.Header.Caption = "回皮时间";
  1654. ultraGridColumn12.Header.VisiblePosition = 12;
  1655. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 8;
  1656. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  1657. ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(160, 0);
  1658. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
  1659. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
  1660. ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1661. ultraGridColumn13.Header.Caption = "物资名称";
  1662. ultraGridColumn13.Header.VisiblePosition = 11;
  1663. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 4;
  1664. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  1665. ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(129, 0);
  1666. ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1667. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
  1668. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
  1669. ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1670. ultraGridColumn14.Header.Caption = "过磅类型";
  1671. ultraGridColumn14.Header.VisiblePosition = 13;
  1672. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 24;
  1673. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  1674. ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(107, 0);
  1675. ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1676. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
  1677. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
  1678. ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1679. ultraGridColumn15.Header.Caption = "装车单";
  1680. ultraGridColumn15.Header.VisiblePosition = 14;
  1681. ultraGridColumn15.Hidden = true;
  1682. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 8;
  1683. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  1684. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
  1685. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
  1686. ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1687. ultraGridColumn16.Header.Caption = "收货单位";
  1688. ultraGridColumn16.Header.VisiblePosition = 15;
  1689. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 22;
  1690. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  1691. ultraGridColumn16.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1692. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
  1693. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
  1694. ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1695. ultraGridColumn17.Header.Caption = "订货单位";
  1696. ultraGridColumn17.Header.VisiblePosition = 16;
  1697. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 28;
  1698. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  1699. ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1700. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
  1701. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
  1702. ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1703. ultraGridColumn18.Header.Caption = "发货单位";
  1704. ultraGridColumn18.Header.VisiblePosition = 17;
  1705. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 26;
  1706. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  1707. ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1708. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
  1709. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
  1710. ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1711. ultraGridColumn19.Header.Caption = "运输单位";
  1712. ultraGridColumn19.Header.VisiblePosition = 18;
  1713. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 32;
  1714. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  1715. ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1716. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
  1717. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
  1718. ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1719. ultraGridColumn20.Header.Caption = "备注";
  1720. ultraGridColumn20.Header.VisiblePosition = 19;
  1721. ultraGridColumn20.RowLayoutColumnInfo.OriginX = 30;
  1722. ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
  1723. ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(189, 0);
  1724. ultraGridColumn20.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1725. ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
  1726. ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
  1727. ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1728. ultraGridColumn21.Header.Caption = "作废时间";
  1729. ultraGridColumn21.Header.VisiblePosition = 21;
  1730. ultraGridColumn21.Hidden = true;
  1731. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 48;
  1732. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  1733. ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1734. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
  1735. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
  1736. ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1737. ultraGridColumn22.Header.Caption = "作废人";
  1738. ultraGridColumn22.Header.VisiblePosition = 22;
  1739. ultraGridColumn22.Hidden = true;
  1740. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 46;
  1741. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  1742. ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1743. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
  1744. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
  1745. ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1746. ultraGridColumn23.Header.Caption = "磅房";
  1747. ultraGridColumn23.Header.VisiblePosition = 23;
  1748. ultraGridColumn23.Hidden = true;
  1749. ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
  1750. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
  1751. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
  1752. ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1753. ultraGridColumn24.Header.Caption = "磅房";
  1754. ultraGridColumn24.Header.VisiblePosition = 24;
  1755. ultraGridColumn24.RowLayoutColumnInfo.OriginX = 2;
  1756. ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
  1757. ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(59, 0);
  1758. ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(57, 28);
  1759. ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
  1760. ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
  1761. ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1762. ultraGridColumn25.EditorComponent = this.uceVlid;
  1763. ultraGridColumn25.Header.Caption = "有效标志";
  1764. ultraGridColumn25.Header.VisiblePosition = 20;
  1765. ultraGridColumn25.Hidden = true;
  1766. ultraGridColumn25.RowLayoutColumnInfo.OriginX = 50;
  1767. ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
  1768. ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1769. ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
  1770. ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
  1771. ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1772. ultraGridColumn26.Header.Caption = "实发数";
  1773. ultraGridColumn26.Header.VisiblePosition = 25;
  1774. ultraGridColumn26.Hidden = true;
  1775. ultraGridColumn26.RowLayoutColumnInfo.OriginX = 14;
  1776. ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
  1777. ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
  1778. ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
  1779. ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
  1780. ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1781. ultraGridColumn27.Header.Caption = "车牌号";
  1782. ultraGridColumn27.Header.VisiblePosition = 26;
  1783. ultraGridColumn27.RowLayoutColumnInfo.OriginX = 6;
  1784. ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
  1785. ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(102, 0);
  1786. ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1787. ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
  1788. ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
  1789. ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1790. ultraGridColumn28.Header.Caption = "支数";
  1791. ultraGridColumn28.Header.VisiblePosition = 27;
  1792. ultraGridColumn28.RowLayoutColumnInfo.OriginX = 10;
  1793. ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
  1794. ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(62, 0);
  1795. ultraGridColumn28.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  1796. ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
  1797. ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
  1798. ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1799. ultraGridColumn29.Header.Caption = "外径";
  1800. ultraGridColumn29.Header.VisiblePosition = 28;
  1801. ultraGridColumn29.RowLayoutColumnInfo.OriginX = 38;
  1802. ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
  1803. ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
  1804. ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
  1805. ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1806. ultraGridColumn30.Header.Caption = "规格";
  1807. ultraGridColumn30.Header.VisiblePosition = 29;
  1808. ultraGridColumn30.RowLayoutColumnInfo.OriginX = 36;
  1809. ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
  1810. ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
  1811. ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
  1812. ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1813. ultraGridColumn31.Header.Caption = "钢级(牌号)";
  1814. ultraGridColumn31.Header.VisiblePosition = 30;
  1815. ultraGridColumn31.RowLayoutColumnInfo.OriginX = 44;
  1816. ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
  1817. ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
  1818. ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
  1819. ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1820. ultraGridColumn32.Header.Caption = "钢种";
  1821. ultraGridColumn32.Header.VisiblePosition = 31;
  1822. ultraGridColumn32.RowLayoutColumnInfo.OriginX = 42;
  1823. ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
  1824. ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
  1825. ultraGridColumn32.RowLayoutColumnInfo.SpanY = 2;
  1826. ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1827. ultraGridColumn33.Header.Caption = "品名";
  1828. ultraGridColumn33.Header.VisiblePosition = 32;
  1829. ultraGridColumn33.RowLayoutColumnInfo.OriginX = 40;
  1830. ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
  1831. ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
  1832. ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
  1833. ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1834. ultraGridColumn34.Header.Caption = "合同";
  1835. ultraGridColumn34.Header.VisiblePosition = 33;
  1836. ultraGridColumn34.RowLayoutColumnInfo.OriginX = 34;
  1837. ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
  1838. ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
  1839. ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
  1840. ultraGridColumn35.Header.Caption = "炉号";
  1841. ultraGridColumn35.Header.VisiblePosition = 34;
  1842. ultraGridColumn35.RowLayoutColumnInfo.OriginX = 46;
  1843. ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
  1844. ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
  1845. ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
  1846. ultraGridColumn36.Header.VisiblePosition = 35;
  1847. ultraGridColumn36.Hidden = true;
  1848. ultraGridColumn37.Header.VisiblePosition = 36;
  1849. ultraGridColumn37.Hidden = true;
  1850. ultraGridColumn38.Header.VisiblePosition = 37;
  1851. ultraGridColumn38.Hidden = true;
  1852. ultraGridColumn39.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1853. ultraGridColumn39.Header.VisiblePosition = 38;
  1854. ultraGridColumn39.Hidden = true;
  1855. ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1856. ultraGridColumn40.Header.VisiblePosition = 39;
  1857. ultraGridColumn40.Hidden = true;
  1858. ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1859. ultraGridColumn41.Header.VisiblePosition = 40;
  1860. ultraGridColumn41.Hidden = true;
  1861. ultraGridBand1.Columns.AddRange(new object[] {
  1862. ultraGridColumn1,
  1863. ultraGridColumn2,
  1864. ultraGridColumn3,
  1865. ultraGridColumn4,
  1866. ultraGridColumn5,
  1867. ultraGridColumn6,
  1868. ultraGridColumn7,
  1869. ultraGridColumn8,
  1870. ultraGridColumn9,
  1871. ultraGridColumn10,
  1872. ultraGridColumn11,
  1873. ultraGridColumn12,
  1874. ultraGridColumn13,
  1875. ultraGridColumn14,
  1876. ultraGridColumn15,
  1877. ultraGridColumn16,
  1878. ultraGridColumn17,
  1879. ultraGridColumn18,
  1880. ultraGridColumn19,
  1881. ultraGridColumn20,
  1882. ultraGridColumn21,
  1883. ultraGridColumn22,
  1884. ultraGridColumn23,
  1885. ultraGridColumn24,
  1886. ultraGridColumn25,
  1887. ultraGridColumn26,
  1888. ultraGridColumn27,
  1889. ultraGridColumn28,
  1890. ultraGridColumn29,
  1891. ultraGridColumn30,
  1892. ultraGridColumn31,
  1893. ultraGridColumn32,
  1894. ultraGridColumn33,
  1895. ultraGridColumn34,
  1896. ultraGridColumn35,
  1897. ultraGridColumn36,
  1898. ultraGridColumn37,
  1899. ultraGridColumn38,
  1900. ultraGridColumn39,
  1901. ultraGridColumn40,
  1902. ultraGridColumn41});
  1903. rowLayout1.ColumnInfos.AddRange(new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo[] {
  1904. rowLayoutColumnInfo1,
  1905. rowLayoutColumnInfo2,
  1906. rowLayoutColumnInfo3,
  1907. rowLayoutColumnInfo4,
  1908. rowLayoutColumnInfo5,
  1909. rowLayoutColumnInfo6,
  1910. rowLayoutColumnInfo7,
  1911. rowLayoutColumnInfo8,
  1912. rowLayoutColumnInfo9,
  1913. rowLayoutColumnInfo10,
  1914. rowLayoutColumnInfo11,
  1915. rowLayoutColumnInfo12,
  1916. rowLayoutColumnInfo13,
  1917. rowLayoutColumnInfo14,
  1918. rowLayoutColumnInfo15,
  1919. rowLayoutColumnInfo16,
  1920. rowLayoutColumnInfo17,
  1921. rowLayoutColumnInfo18,
  1922. rowLayoutColumnInfo19,
  1923. rowLayoutColumnInfo20,
  1924. rowLayoutColumnInfo21,
  1925. rowLayoutColumnInfo22,
  1926. rowLayoutColumnInfo23,
  1927. rowLayoutColumnInfo24,
  1928. rowLayoutColumnInfo25,
  1929. rowLayoutColumnInfo26,
  1930. rowLayoutColumnInfo27,
  1931. rowLayoutColumnInfo28,
  1932. rowLayoutColumnInfo29,
  1933. rowLayoutColumnInfo30,
  1934. rowLayoutColumnInfo31,
  1935. rowLayoutColumnInfo32,
  1936. rowLayoutColumnInfo33,
  1937. rowLayoutColumnInfo34,
  1938. rowLayoutColumnInfo35,
  1939. rowLayoutColumnInfo36,
  1940. rowLayoutColumnInfo37,
  1941. rowLayoutColumnInfo38,
  1942. rowLayoutColumnInfo39,
  1943. rowLayoutColumnInfo40,
  1944. rowLayoutColumnInfo41});
  1945. rowLayout1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
  1946. ultraGridBand1.RowLayouts.AddRange(new Infragistics.Win.UltraWinGrid.RowLayout[] {
  1947. rowLayout1});
  1948. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  1949. this.ugData.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  1950. this.ugData.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.None;
  1951. this.ugData.Dock = System.Windows.Forms.DockStyle.Fill;
  1952. this.ugData.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1953. this.ugData.Location = new System.Drawing.Point(0, 0);
  1954. this.ugData.Margin = new System.Windows.Forms.Padding(4);
  1955. this.ugData.Name = "ugData";
  1956. this.ugData.Size = new System.Drawing.Size(1137, 523);
  1957. this.ugData.TabIndex = 72;
  1958. this.ugData.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.ugData_InitializeRow);
  1959. this.ugData.AfterRowActivate += new System.EventHandler(this.ugData_AfterRowActivate);
  1960. this.ugData.AfterRowRegionScroll += new Infragistics.Win.UltraWinGrid.RowScrollRegionEventHandler(this.ugData_AfterRowRegionScroll);
  1961. this.ugData.BeforeRowDeactivate += new System.ComponentModel.CancelEventHandler(this.ugData_BeforeRowDeactivate);
  1962. this.ugData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.CurrentGrid_KeyDown);
  1963. //
  1964. // QueryBS
  1965. //
  1966. this.QueryBS.DataSource = typeof(Core.StlMes.Client.LgResMgt.Mcms.entity.CmmWeightResultEntity);
  1967. //
  1968. // panel1
  1969. //
  1970. this.panel1.Controls.Add(this.lblCount);
  1971. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  1972. this.panel1.Location = new System.Drawing.Point(0, 78);
  1973. this.panel1.Name = "panel1";
  1974. this.panel1.Size = new System.Drawing.Size(1137, 24);
  1975. this.panel1.TabIndex = 74;
  1976. //
  1977. // lblCount
  1978. //
  1979. this.lblCount.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1980. this.lblCount.Dock = System.Windows.Forms.DockStyle.Fill;
  1981. this.lblCount.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold);
  1982. this.lblCount.Location = new System.Drawing.Point(0, 0);
  1983. this.lblCount.Name = "lblCount";
  1984. this.lblCount.Size = new System.Drawing.Size(1137, 24);
  1985. this.lblCount.TabIndex = 0;
  1986. this.lblCount.Text = "无数据";
  1987. this.lblCount.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1988. //
  1989. // ultraPanel3
  1990. //
  1991. this.ultraPanel3.AutoSize = true;
  1992. //
  1993. // ultraPanel3.ClientArea
  1994. //
  1995. this.ultraPanel3.ClientArea.Controls.Add(this.upQueryTop);
  1996. this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Top;
  1997. this.ultraPanel3.Location = new System.Drawing.Point(0, 0);
  1998. this.ultraPanel3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1999. this.ultraPanel3.Name = "ultraPanel3";
  2000. this.ultraPanel3.Size = new System.Drawing.Size(1137, 78);
  2001. this.ultraPanel3.TabIndex = 2;
  2002. //
  2003. // upQueryTop
  2004. //
  2005. //
  2006. // upQueryTop.ClientArea
  2007. //
  2008. this.upQueryTop.ClientArea.Controls.Add(this.uteJudgeStoveNo);
  2009. this.upQueryTop.ClientArea.Controls.Add(this.label14);
  2010. this.upQueryTop.ClientArea.Controls.Add(this.panel2);
  2011. this.upQueryTop.ClientArea.Controls.Add(this.uteReceiveName);
  2012. this.upQueryTop.ClientArea.Controls.Add(this.label11);
  2013. this.upQueryTop.ClientArea.Controls.Add(this.uteShippersName);
  2014. this.upQueryTop.ClientArea.Controls.Add(this.label10);
  2015. this.upQueryTop.ClientArea.Controls.Add(this.uteOrder);
  2016. this.upQueryTop.ClientArea.Controls.Add(this.label9);
  2017. this.upQueryTop.ClientArea.Controls.Add(this.utePound);
  2018. this.upQueryTop.ClientArea.Controls.Add(this.label7);
  2019. this.upQueryTop.ClientArea.Controls.Add(this.uteMemo);
  2020. this.upQueryTop.ClientArea.Controls.Add(this.label12);
  2021. this.upQueryTop.ClientArea.Controls.Add(this.uceQueryCarType);
  2022. this.upQueryTop.ClientArea.Controls.Add(this.uteCarNo);
  2023. this.upQueryTop.ClientArea.Controls.Add(this.label8);
  2024. this.upQueryTop.ClientArea.Controls.Add(this.label6);
  2025. this.upQueryTop.ClientArea.Controls.Add(this.RegEndTime);
  2026. this.upQueryTop.ClientArea.Controls.Add(this.chkTim);
  2027. this.upQueryTop.ClientArea.Controls.Add(this.label4);
  2028. this.upQueryTop.ClientArea.Controls.Add(this.RegStartTime);
  2029. this.upQueryTop.Dock = System.Windows.Forms.DockStyle.Top;
  2030. this.upQueryTop.Location = new System.Drawing.Point(0, 0);
  2031. this.upQueryTop.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2032. this.upQueryTop.Name = "upQueryTop";
  2033. this.upQueryTop.Size = new System.Drawing.Size(1137, 78);
  2034. this.upQueryTop.TabIndex = 0;
  2035. //
  2036. // uteJudgeStoveNo
  2037. //
  2038. this.uteJudgeStoveNo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2039. | System.Windows.Forms.AnchorStyles.Left)));
  2040. this.uteJudgeStoveNo.Location = new System.Drawing.Point(894, 42);
  2041. this.uteJudgeStoveNo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2042. this.uteJudgeStoveNo.Name = "uteJudgeStoveNo";
  2043. this.uteJudgeStoveNo.Size = new System.Drawing.Size(110, 21);
  2044. this.uteJudgeStoveNo.TabIndex = 958;
  2045. //
  2046. // label14
  2047. //
  2048. this.label14.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2049. | System.Windows.Forms.AnchorStyles.Left)));
  2050. this.label14.AutoSize = true;
  2051. this.label14.Location = new System.Drawing.Point(847, 46);
  2052. this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2053. this.label14.Name = "label14";
  2054. this.label14.Size = new System.Drawing.Size(29, 12);
  2055. this.label14.TabIndex = 957;
  2056. this.label14.Text = "炉号";
  2057. //
  2058. // panel2
  2059. //
  2060. this.panel2.Controls.Add(this.utnQuery);
  2061. this.panel2.Controls.Add(this.utbReset);
  2062. this.panel2.Dock = System.Windows.Forms.DockStyle.Right;
  2063. this.panel2.Location = new System.Drawing.Point(1058, 0);
  2064. this.panel2.Name = "panel2";
  2065. this.panel2.Size = new System.Drawing.Size(79, 78);
  2066. this.panel2.TabIndex = 956;
  2067. //
  2068. // utnQuery
  2069. //
  2070. appearance17.Image = ((object)(resources.GetObject("appearance17.Image")));
  2071. this.utnQuery.Appearance = appearance17;
  2072. this.utnQuery.AutoSize = true;
  2073. this.utnQuery.Font = new System.Drawing.Font("宋体", 10F);
  2074. this.utnQuery.Location = new System.Drawing.Point(4, 42);
  2075. this.utnQuery.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2076. this.utnQuery.Name = "utnQuery";
  2077. this.utnQuery.Size = new System.Drawing.Size(58, 27);
  2078. this.utnQuery.TabIndex = 597;
  2079. this.utnQuery.Text = "查询";
  2080. this.utnQuery.Click += new System.EventHandler(this.utnQuery_Click);
  2081. //
  2082. // utbReset
  2083. //
  2084. appearance14.Image = ((object)(resources.GetObject("appearance14.Image")));
  2085. this.utbReset.Appearance = appearance14;
  2086. this.utbReset.AutoSize = true;
  2087. this.utbReset.Font = new System.Drawing.Font("宋体", 10F);
  2088. this.utbReset.Location = new System.Drawing.Point(3, 6);
  2089. this.utbReset.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2090. this.utbReset.Name = "utbReset";
  2091. this.utbReset.Size = new System.Drawing.Size(58, 27);
  2092. this.utbReset.TabIndex = 598;
  2093. this.utbReset.Text = "重置";
  2094. this.utbReset.Click += new System.EventHandler(this.utbReset_Click);
  2095. //
  2096. // uteReceiveName
  2097. //
  2098. this.uteReceiveName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2099. | System.Windows.Forms.AnchorStyles.Left)));
  2100. this.uteReceiveName.Location = new System.Drawing.Point(710, 42);
  2101. this.uteReceiveName.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2102. this.uteReceiveName.Name = "uteReceiveName";
  2103. this.uteReceiveName.Size = new System.Drawing.Size(121, 21);
  2104. this.uteReceiveName.TabIndex = 950;
  2105. this.uteReceiveName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
  2106. //
  2107. // label11
  2108. //
  2109. this.label11.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2110. | System.Windows.Forms.AnchorStyles.Left)));
  2111. this.label11.AutoSize = true;
  2112. this.label11.Location = new System.Drawing.Point(638, 47);
  2113. this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2114. this.label11.Name = "label11";
  2115. this.label11.Size = new System.Drawing.Size(53, 12);
  2116. this.label11.TabIndex = 949;
  2117. this.label11.Text = "收货单位";
  2118. //
  2119. // uteShippersName
  2120. //
  2121. this.uteShippersName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2122. | System.Windows.Forms.AnchorStyles.Left)));
  2123. this.uteShippersName.Location = new System.Drawing.Point(492, 43);
  2124. this.uteShippersName.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2125. this.uteShippersName.Name = "uteShippersName";
  2126. this.uteShippersName.Size = new System.Drawing.Size(121, 21);
  2127. this.uteShippersName.TabIndex = 950;
  2128. this.uteShippersName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
  2129. //
  2130. // label10
  2131. //
  2132. this.label10.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2133. | System.Windows.Forms.AnchorStyles.Left)));
  2134. this.label10.AutoSize = true;
  2135. this.label10.Location = new System.Drawing.Point(417, 47);
  2136. this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2137. this.label10.Name = "label10";
  2138. this.label10.Size = new System.Drawing.Size(53, 12);
  2139. this.label10.TabIndex = 949;
  2140. this.label10.Text = "发货单位";
  2141. //
  2142. // uteOrder
  2143. //
  2144. this.uteOrder.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2145. | System.Windows.Forms.AnchorStyles.Left)));
  2146. this.uteOrder.Location = new System.Drawing.Point(279, 43);
  2147. this.uteOrder.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2148. this.uteOrder.Name = "uteOrder";
  2149. this.uteOrder.Size = new System.Drawing.Size(121, 21);
  2150. this.uteOrder.TabIndex = 950;
  2151. this.uteOrder.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
  2152. //
  2153. // label9
  2154. //
  2155. this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2156. | System.Windows.Forms.AnchorStyles.Left)));
  2157. this.label9.AutoSize = true;
  2158. this.label9.Location = new System.Drawing.Point(209, 47);
  2159. this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2160. this.label9.Name = "label9";
  2161. this.label9.Size = new System.Drawing.Size(53, 12);
  2162. this.label9.TabIndex = 949;
  2163. this.label9.Text = "订货单位";
  2164. //
  2165. // utePound
  2166. //
  2167. this.utePound.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2168. | System.Windows.Forms.AnchorStyles.Left)));
  2169. this.utePound.Location = new System.Drawing.Point(57, 43);
  2170. this.utePound.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2171. this.utePound.Name = "utePound";
  2172. this.utePound.Size = new System.Drawing.Size(143, 21);
  2173. this.utePound.TabIndex = 950;
  2174. //
  2175. // label7
  2176. //
  2177. this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2178. | System.Windows.Forms.AnchorStyles.Left)));
  2179. this.label7.AutoSize = true;
  2180. this.label7.Location = new System.Drawing.Point(4, 47);
  2181. this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2182. this.label7.Name = "label7";
  2183. this.label7.Size = new System.Drawing.Size(41, 12);
  2184. this.label7.TabIndex = 949;
  2185. this.label7.Text = "磅单号";
  2186. //
  2187. // uteMemo
  2188. //
  2189. this.uteMemo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2190. | System.Windows.Forms.AnchorStyles.Left)));
  2191. this.uteMemo.Location = new System.Drawing.Point(894, 9);
  2192. this.uteMemo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2193. this.uteMemo.Name = "uteMemo";
  2194. this.uteMemo.Size = new System.Drawing.Size(110, 21);
  2195. this.uteMemo.TabIndex = 950;
  2196. this.uteMemo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
  2197. //
  2198. // label12
  2199. //
  2200. this.label12.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2201. | System.Windows.Forms.AnchorStyles.Left)));
  2202. this.label12.AutoSize = true;
  2203. this.label12.Location = new System.Drawing.Point(846, 13);
  2204. this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2205. this.label12.Name = "label12";
  2206. this.label12.Size = new System.Drawing.Size(29, 12);
  2207. this.label12.TabIndex = 949;
  2208. this.label12.Text = "备注";
  2209. //
  2210. // uceQueryCarType
  2211. //
  2212. valueListItem50.DataValue = "102";
  2213. valueListItem50.DisplayText = "钢坯采购";
  2214. valueListItem51.DataValue = "103";
  2215. valueListItem51.DisplayText = "钢管退货";
  2216. valueListItem52.DataValue = "104";
  2217. valueListItem52.DisplayText = "采购辅料";
  2218. valueListItem53.DataValue = "105";
  2219. valueListItem53.DisplayText = "修复返厂";
  2220. valueListItem54.DataValue = "106";
  2221. valueListItem54.DisplayText = "设备采购";
  2222. valueListItem55.DataValue = "201";
  2223. valueListItem55.DisplayText = "钢管发运";
  2224. valueListItem56.DataValue = "202";
  2225. valueListItem56.DisplayText = "废料销售";
  2226. valueListItem57.DataValue = "203";
  2227. valueListItem57.DisplayText = "修复出厂";
  2228. valueListItem58.DataValue = "204";
  2229. valueListItem58.DisplayText = "其他内转";
  2230. valueListItem59.DataValue = "205";
  2231. valueListItem59.DisplayText = "内转钢管";
  2232. valueListItem60.DataValue = "206";
  2233. valueListItem60.DisplayText = "内转钢坯";
  2234. valueListItem61.DataValue = "200";
  2235. valueListItem61.DisplayText = "钢管销售";
  2236. valueListItem62.DataValue = "208";
  2237. valueListItem62.DisplayText = "废品倒运";
  2238. this.uceQueryCarType.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  2239. valueListItem50,
  2240. valueListItem51,
  2241. valueListItem52,
  2242. valueListItem53,
  2243. valueListItem54,
  2244. valueListItem55,
  2245. valueListItem56,
  2246. valueListItem57,
  2247. valueListItem58,
  2248. valueListItem59,
  2249. valueListItem60,
  2250. valueListItem61,
  2251. valueListItem62});
  2252. this.uceQueryCarType.Location = new System.Drawing.Point(709, 7);
  2253. this.uceQueryCarType.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2254. this.uceQueryCarType.Name = "uceQueryCarType";
  2255. this.uceQueryCarType.Size = new System.Drawing.Size(121, 21);
  2256. this.uceQueryCarType.TabIndex = 950;
  2257. this.uceQueryCarType.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.uteCarNo_KeyPress);
  2258. //
  2259. // label8
  2260. //
  2261. this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2262. | System.Windows.Forms.AnchorStyles.Left)));
  2263. this.label8.AutoSize = true;
  2264. this.label8.Location = new System.Drawing.Point(663, 10);
  2265. this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2266. this.label8.Name = "label8";
  2267. this.label8.Size = new System.Drawing.Size(29, 12);
  2268. this.label8.TabIndex = 949;
  2269. this.label8.Text = "类型";
  2270. //
  2271. // label6
  2272. //
  2273. this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2274. | System.Windows.Forms.AnchorStyles.Left)));
  2275. this.label6.AutoSize = true;
  2276. this.label6.Location = new System.Drawing.Point(460, 13);
  2277. this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2278. this.label6.Name = "label6";
  2279. this.label6.Size = new System.Drawing.Size(41, 12);
  2280. this.label6.TabIndex = 949;
  2281. this.label6.Text = "车牌号";
  2282. //
  2283. // RegEndTime
  2284. //
  2285. this.RegEndTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2286. | System.Windows.Forms.AnchorStyles.Left)));
  2287. this.RegEndTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
  2288. this.RegEndTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  2289. this.RegEndTime.Location = new System.Drawing.Point(289, 7);
  2290. this.RegEndTime.Margin = new System.Windows.Forms.Padding(4);
  2291. this.RegEndTime.Name = "RegEndTime";
  2292. this.RegEndTime.Size = new System.Drawing.Size(159, 21);
  2293. this.RegEndTime.TabIndex = 954;
  2294. //
  2295. // chkTim
  2296. //
  2297. this.chkTim.AutoSize = true;
  2298. this.chkTim.Checked = true;
  2299. this.chkTim.CheckState = System.Windows.Forms.CheckState.Checked;
  2300. this.chkTim.Enabled = false;
  2301. this.chkTim.Location = new System.Drawing.Point(4, 10);
  2302. this.chkTim.Margin = new System.Windows.Forms.Padding(4);
  2303. this.chkTim.Name = "chkTim";
  2304. this.chkTim.Size = new System.Drawing.Size(72, 16);
  2305. this.chkTim.TabIndex = 948;
  2306. this.chkTim.Text = "称重时间";
  2307. this.chkTim.UseVisualStyleBackColor = false;
  2308. //
  2309. // label4
  2310. //
  2311. this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2312. | System.Windows.Forms.AnchorStyles.Left)));
  2313. this.label4.AutoSize = true;
  2314. this.label4.Location = new System.Drawing.Point(259, 10);
  2315. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2316. this.label4.Name = "label4";
  2317. this.label4.Size = new System.Drawing.Size(17, 12);
  2318. this.label4.TabIndex = 953;
  2319. this.label4.Text = "至";
  2320. //
  2321. // RegStartTime
  2322. //
  2323. this.RegStartTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2324. | System.Windows.Forms.AnchorStyles.Left)));
  2325. this.RegStartTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
  2326. this.RegStartTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  2327. this.RegStartTime.Location = new System.Drawing.Point(92, 7);
  2328. this.RegStartTime.Margin = new System.Windows.Forms.Padding(4);
  2329. this.RegStartTime.Name = "RegStartTime";
  2330. this.RegStartTime.Size = new System.Drawing.Size(166, 21);
  2331. this.RegStartTime.TabIndex = 948;
  2332. //
  2333. // ultraPanel7
  2334. //
  2335. //
  2336. // ultraPanel7.ClientArea
  2337. //
  2338. this.ultraPanel7.ClientArea.Controls.Add(this.ultraButton2);
  2339. this.ultraPanel7.ClientArea.Controls.Add(this.utbExport);
  2340. this.ultraPanel7.ClientArea.Controls.Add(this.unExcel);
  2341. this.ultraPanel7.ClientArea.Controls.Add(this.utnUpdate);
  2342. this.ultraPanel7.ClientArea.Controls.Add(this.utbPrint);
  2343. this.ultraPanel7.ClientArea.Controls.Add(this.utbPrintSingle);
  2344. this.ultraPanel7.ClientArea.Controls.Add(this.btnDelete);
  2345. this.ultraPanel7.ClientArea.Controls.Add(this.utbDelete2);
  2346. this.ultraPanel7.Dock = System.Windows.Forms.DockStyle.Bottom;
  2347. this.ultraPanel7.Location = new System.Drawing.Point(0, 625);
  2348. this.ultraPanel7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2349. this.ultraPanel7.Name = "ultraPanel7";
  2350. this.ultraPanel7.Size = new System.Drawing.Size(1137, 72);
  2351. this.ultraPanel7.TabIndex = 1;
  2352. //
  2353. // ultraButton2
  2354. //
  2355. this.ultraButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2356. appearance25.Image = ((object)(resources.GetObject("appearance25.Image")));
  2357. this.ultraButton2.Appearance = appearance25;
  2358. this.ultraButton2.AutoSize = true;
  2359. this.ultraButton2.Font = new System.Drawing.Font("宋体", 10F);
  2360. this.ultraButton2.Location = new System.Drawing.Point(211, 20);
  2361. this.ultraButton2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2362. this.ultraButton2.Name = "ultraButton2";
  2363. this.ultraButton2.Size = new System.Drawing.Size(93, 27);
  2364. this.ultraButton2.TabIndex = 605;
  2365. this.ultraButton2.Text = "磅单打印2";
  2366. this.ultraButton2.Click += new System.EventHandler(this.ultraButton2_Click);
  2367. //
  2368. // utbExport
  2369. //
  2370. this.utbExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2371. appearance34.Image = ((object)(resources.GetObject("appearance34.Image")));
  2372. this.utbExport.Appearance = appearance34;
  2373. this.utbExport.AutoSize = true;
  2374. this.utbExport.Font = new System.Drawing.Font("宋体", 10F);
  2375. this.utbExport.Location = new System.Drawing.Point(760, 20);
  2376. this.utbExport.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2377. this.utbExport.Name = "utbExport";
  2378. this.utbExport.Size = new System.Drawing.Size(58, 27);
  2379. this.utbExport.TabIndex = 604;
  2380. this.utbExport.Text = "导出";
  2381. this.utbExport.Click += new System.EventHandler(this.utbExport_Click);
  2382. //
  2383. // unExcel
  2384. //
  2385. this.unExcel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2386. appearance33.Image = ((object)(resources.GetObject("appearance33.Image")));
  2387. this.unExcel.Appearance = appearance33;
  2388. this.unExcel.AutoSize = true;
  2389. this.unExcel.Font = new System.Drawing.Font("宋体", 10F);
  2390. this.unExcel.Location = new System.Drawing.Point(680, 19);
  2391. this.unExcel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2392. this.unExcel.Name = "unExcel";
  2393. this.unExcel.Size = new System.Drawing.Size(58, 27);
  2394. this.unExcel.TabIndex = 603;
  2395. this.unExcel.Text = "统计";
  2396. this.unExcel.Click += new System.EventHandler(this.unExcel_Click);
  2397. //
  2398. // utnUpdate
  2399. //
  2400. this.utnUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2401. appearance27.Image = ((object)(resources.GetObject("appearance27.Image")));
  2402. this.utnUpdate.Appearance = appearance27;
  2403. this.utnUpdate.AutoSize = true;
  2404. this.utnUpdate.Font = new System.Drawing.Font("宋体", 10F);
  2405. this.utnUpdate.Location = new System.Drawing.Point(850, 19);
  2406. this.utnUpdate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2407. this.utnUpdate.Name = "utnUpdate";
  2408. this.utnUpdate.Size = new System.Drawing.Size(58, 27);
  2409. this.utnUpdate.TabIndex = 602;
  2410. this.utnUpdate.Text = "修改";
  2411. this.utnUpdate.Click += new System.EventHandler(this.utnUpdate_Click);
  2412. //
  2413. // utbPrint
  2414. //
  2415. this.utbPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2416. appearance4.Image = ((object)(resources.GetObject("appearance4.Image")));
  2417. this.utbPrint.Appearance = appearance4;
  2418. this.utbPrint.AutoSize = true;
  2419. this.utbPrint.Font = new System.Drawing.Font("宋体", 10F);
  2420. this.utbPrint.Location = new System.Drawing.Point(358, 20);
  2421. this.utbPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2422. this.utbPrint.Name = "utbPrint";
  2423. this.utbPrint.Size = new System.Drawing.Size(86, 27);
  2424. this.utbPrint.TabIndex = 601;
  2425. this.utbPrint.Text = "磅单打印";
  2426. this.utbPrint.Click += new System.EventHandler(this.utbPrint_Click);
  2427. //
  2428. // utbPrintSingle
  2429. //
  2430. this.utbPrintSingle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2431. appearance29.Image = ((object)(resources.GetObject("appearance29.Image")));
  2432. this.utbPrintSingle.Appearance = appearance29;
  2433. this.utbPrintSingle.AutoSize = true;
  2434. this.utbPrintSingle.Font = new System.Drawing.Font("宋体", 10F);
  2435. this.utbPrintSingle.Location = new System.Drawing.Point(480, 20);
  2436. this.utbPrintSingle.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2437. this.utbPrintSingle.Name = "utbPrintSingle";
  2438. this.utbPrintSingle.Size = new System.Drawing.Size(86, 27);
  2439. this.utbPrintSingle.TabIndex = 600;
  2440. this.utbPrintSingle.Text = "单项打印";
  2441. this.utbPrintSingle.Click += new System.EventHandler(this.utbPrintSingle_Click);
  2442. //
  2443. // btnDelete
  2444. //
  2445. this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2446. appearance28.Image = ((object)(resources.GetObject("appearance28.Image")));
  2447. this.btnDelete.Appearance = appearance28;
  2448. this.btnDelete.AutoSize = true;
  2449. this.btnDelete.Enabled = false;
  2450. this.btnDelete.Font = new System.Drawing.Font("宋体", 10F);
  2451. this.btnDelete.Location = new System.Drawing.Point(1028, 19);
  2452. this.btnDelete.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2453. this.btnDelete.Name = "btnDelete";
  2454. this.btnDelete.Size = new System.Drawing.Size(58, 27);
  2455. this.btnDelete.TabIndex = 599;
  2456. this.btnDelete.Text = "删除";
  2457. this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
  2458. //
  2459. // utbDelete2
  2460. //
  2461. this.utbDelete2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2462. appearance35.Image = ((object)(resources.GetObject("appearance35.Image")));
  2463. this.utbDelete2.Appearance = appearance35;
  2464. this.utbDelete2.AutoSize = true;
  2465. this.utbDelete2.Font = new System.Drawing.Font("宋体", 10F);
  2466. this.utbDelete2.Location = new System.Drawing.Point(938, 20);
  2467. this.utbDelete2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2468. this.utbDelete2.Name = "utbDelete2";
  2469. this.utbDelete2.Size = new System.Drawing.Size(58, 27);
  2470. this.utbDelete2.TabIndex = 598;
  2471. this.utbDelete2.Text = "重过";
  2472. this.utbDelete2.Click += new System.EventHandler(this.btnDelete_Click);
  2473. //
  2474. // ultraTabPageControl1
  2475. //
  2476. this.ultraTabPageControl1.Controls.Add(this.txtCar2);
  2477. this.ultraTabPageControl1.Controls.Add(this.splitContainer1);
  2478. this.ultraTabPageControl1.Controls.Add(this.ultraPanel20);
  2479. this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
  2480. this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2481. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  2482. this.ultraTabPageControl1.Size = new System.Drawing.Size(1137, 697);
  2483. //
  2484. // txtCar2
  2485. //
  2486. this.txtCar2.FormattingEnabled = true;
  2487. this.txtCar2.Location = new System.Drawing.Point(456, 30);
  2488. this.txtCar2.Name = "txtCar2";
  2489. this.txtCar2.Size = new System.Drawing.Size(185, 20);
  2490. this.txtCar2.TabIndex = 599;
  2491. this.txtCar2.TextChanged += new System.EventHandler(this.txtCar2_TextChanged);
  2492. this.txtCar2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtCar2_KeyPress);
  2493. //
  2494. // splitContainer1
  2495. //
  2496. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  2497. this.splitContainer1.Location = new System.Drawing.Point(0, 83);
  2498. this.splitContainer1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2499. this.splitContainer1.Name = "splitContainer1";
  2500. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  2501. //
  2502. // splitContainer1.Panel1
  2503. //
  2504. this.splitContainer1.Panel1.Controls.Add(this.uceType2);
  2505. this.splitContainer1.Panel1.Controls.Add(this.uteChangeType);
  2506. this.splitContainer1.Panel1.Controls.Add(this.uteEdit);
  2507. this.splitContainer1.Panel1.Controls.Add(this.delete);
  2508. this.splitContainer1.Panel1.Controls.Add(this.uceType);
  2509. this.splitContainer1.Panel1.Controls.Add(this.CurrentGrid);
  2510. //
  2511. // splitContainer1.Panel2
  2512. //
  2513. this.splitContainer1.Panel2.Controls.Add(this.tbWt);
  2514. this.splitContainer1.Size = new System.Drawing.Size(1137, 614);
  2515. this.splitContainer1.SplitterDistance = 312;
  2516. this.splitContainer1.TabIndex = 581;
  2517. this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer1_SplitterMoved);
  2518. //
  2519. // uceType2
  2520. //
  2521. editorButton3.Text = "修改 ";
  2522. this.uceType2.ButtonsRight.Add(editorButton3);
  2523. this.uceType2.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  2524. valueListItem3.DataValue = "101";
  2525. valueListItem3.DisplayText = "空车过皮";
  2526. valueListItem4.DataValue = "102";
  2527. valueListItem4.DisplayText = "钢坯采购";
  2528. valueListItem5.DataValue = "103";
  2529. valueListItem5.DisplayText = "钢管退货";
  2530. valueListItem6.DataValue = "104";
  2531. valueListItem6.DisplayText = "采购辅料";
  2532. valueListItem7.DataValue = "105";
  2533. valueListItem7.DisplayText = "修复返厂";
  2534. valueListItem8.DataValue = "106";
  2535. valueListItem8.DisplayText = "设备采购";
  2536. valueListItem9.DataValue = "107";
  2537. valueListItem9.DisplayText = "其他内转";
  2538. valueListItem10.DataValue = "108";
  2539. valueListItem10.DisplayText = "内转钢管";
  2540. valueListItem11.DataValue = "109";
  2541. valueListItem11.DisplayText = "内转钢坯";
  2542. valueListItem12.DataValue = "201";
  2543. valueListItem12.DisplayText = "配车单称重";
  2544. valueListItem13.DataValue = "202";
  2545. valueListItem13.DisplayText = "废料销售";
  2546. valueListItem19.DataValue = "203";
  2547. valueListItem19.DisplayText = "修复出厂";
  2548. valueListItem20.DataValue = "204";
  2549. valueListItem20.DisplayText = "其他内转";
  2550. valueListItem21.DataValue = "205";
  2551. valueListItem21.DisplayText = "内转钢管";
  2552. valueListItem22.DataValue = "206";
  2553. valueListItem22.DisplayText = "内转钢坯";
  2554. valueListItem23.DataValue = "207";
  2555. valueListItem23.DisplayText = "空车回皮";
  2556. valueListItem24.DataValue = "200";
  2557. valueListItem24.DisplayText = "钢管销售";
  2558. valueListItem25.DataValue = "208";
  2559. valueListItem25.DisplayText = "废品倒运";
  2560. this.uceType2.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  2561. valueListItem3,
  2562. valueListItem4,
  2563. valueListItem5,
  2564. valueListItem6,
  2565. valueListItem7,
  2566. valueListItem8,
  2567. valueListItem9,
  2568. valueListItem10,
  2569. valueListItem11,
  2570. valueListItem12,
  2571. valueListItem13,
  2572. valueListItem19,
  2573. valueListItem20,
  2574. valueListItem21,
  2575. valueListItem22,
  2576. valueListItem23,
  2577. valueListItem24,
  2578. valueListItem25});
  2579. this.uceType2.Location = new System.Drawing.Point(742, 198);
  2580. this.uceType2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2581. this.uceType2.Name = "uceType2";
  2582. this.uceType2.Size = new System.Drawing.Size(144, 21);
  2583. this.uceType2.TabIndex = 81;
  2584. this.uceType2.Visible = false;
  2585. this.uceType2.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.uteChangeType_EditorButtonClick);
  2586. //
  2587. // uteEdit
  2588. //
  2589. editorButton4.Key = "select";
  2590. editorButton4.Text = "修改";
  2591. this.uteEdit.ButtonsRight.Add(editorButton4);
  2592. this.uteEdit.Location = new System.Drawing.Point(808, 145);
  2593. this.uteEdit.Margin = new System.Windows.Forms.Padding(4);
  2594. this.uteEdit.Name = "uteEdit";
  2595. this.uteEdit.Size = new System.Drawing.Size(183, 21);
  2596. this.uteEdit.TabIndex = 79;
  2597. this.uteEdit.Visible = false;
  2598. this.uteEdit.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.uteEdit_EditorButtonClick);
  2599. //
  2600. // CurrentGrid
  2601. //
  2602. this.CurrentGrid.DataSource = this.cmmWeightRecordEntityBindingSource;
  2603. ultraGridColumn42.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  2604. ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2605. ultraGridColumn42.EditorComponent = this.delete;
  2606. ultraGridColumn42.Header.Caption = "过磅流水号";
  2607. ultraGridColumn42.Header.VisiblePosition = 0;
  2608. ultraGridColumn42.RowLayoutColumnInfo.OriginX = 0;
  2609. ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
  2610. ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(149, 0);
  2611. ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
  2612. ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
  2613. ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2614. ultraGridColumn43.Header.Caption = "过磅时间";
  2615. ultraGridColumn43.Header.VisiblePosition = 1;
  2616. ultraGridColumn43.RowLayoutColumnInfo.OriginX = 6;
  2617. ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
  2618. ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
  2619. ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
  2620. ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2621. ultraGridColumn44.Header.Caption = "检斤人";
  2622. ultraGridColumn44.Header.VisiblePosition = 2;
  2623. ultraGridColumn44.RowLayoutColumnInfo.OriginX = 12;
  2624. ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
  2625. ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(127, 0);
  2626. ultraGridColumn44.RowLayoutColumnInfo.SpanX = 2;
  2627. ultraGridColumn44.RowLayoutColumnInfo.SpanY = 2;
  2628. ultraGridColumn45.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  2629. ultraGridColumn45.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2630. ultraGridColumn45.EditorComponent = this.uteCarNo;
  2631. ultraGridColumn45.Header.Caption = "车牌号";
  2632. ultraGridColumn45.Header.VisiblePosition = 20;
  2633. ultraGridColumn45.RowLayoutColumnInfo.OriginX = 4;
  2634. ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
  2635. ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
  2636. ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
  2637. ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
  2638. ultraGridColumn46.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  2639. ultraGridColumn46.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2640. ultraGridColumn46.EditorComponent = this.uteChangeType;
  2641. ultraGridColumn46.Header.Caption = "检斤类型";
  2642. ultraGridColumn46.Header.VisiblePosition = 3;
  2643. ultraGridColumn46.RowLayoutColumnInfo.OriginX = 16;
  2644. ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
  2645. ultraGridColumn46.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(131, 0);
  2646. ultraGridColumn46.RowLayoutColumnInfo.SpanX = 2;
  2647. ultraGridColumn46.RowLayoutColumnInfo.SpanY = 2;
  2648. ultraGridColumn47.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2649. ultraGridColumn47.Header.Caption = "重量";
  2650. ultraGridColumn47.Header.VisiblePosition = 4;
  2651. ultraGridColumn47.RowLayoutColumnInfo.OriginX = 10;
  2652. ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
  2653. ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(58, 0);
  2654. ultraGridColumn47.RowLayoutColumnInfo.SpanX = 2;
  2655. ultraGridColumn47.RowLayoutColumnInfo.SpanY = 2;
  2656. ultraGridColumn48.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2657. ultraGridColumn48.Header.Caption = "支数";
  2658. ultraGridColumn48.Header.VisiblePosition = 5;
  2659. ultraGridColumn48.RowLayoutColumnInfo.OriginX = 8;
  2660. ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
  2661. ultraGridColumn48.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
  2662. ultraGridColumn48.RowLayoutColumnInfo.SpanX = 2;
  2663. ultraGridColumn48.RowLayoutColumnInfo.SpanY = 2;
  2664. ultraGridColumn49.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2665. ultraGridColumn49.Header.Caption = "有效标志";
  2666. ultraGridColumn49.Header.VisiblePosition = 16;
  2667. ultraGridColumn49.Hidden = true;
  2668. ultraGridColumn50.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2669. ultraGridColumn50.Header.Caption = "物资名称";
  2670. ultraGridColumn50.Header.VisiblePosition = 6;
  2671. ultraGridColumn50.Hidden = true;
  2672. ultraGridColumn51.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2673. ultraGridColumn51.Header.Caption = "过磅类型";
  2674. ultraGridColumn51.Header.VisiblePosition = 7;
  2675. ultraGridColumn51.Hidden = true;
  2676. ultraGridColumn51.RowLayoutColumnInfo.OriginX = 18;
  2677. ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
  2678. ultraGridColumn51.RowLayoutColumnInfo.SpanX = 2;
  2679. ultraGridColumn51.RowLayoutColumnInfo.SpanY = 2;
  2680. ultraGridColumn52.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2681. ultraGridColumn52.Header.Caption = "装车单";
  2682. ultraGridColumn52.Header.VisiblePosition = 8;
  2683. ultraGridColumn52.Hidden = true;
  2684. ultraGridColumn53.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2685. ultraGridColumn53.Header.Caption = "收货单位";
  2686. ultraGridColumn53.Header.VisiblePosition = 9;
  2687. ultraGridColumn53.RowLayoutColumnInfo.OriginX = 24;
  2688. ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
  2689. ultraGridColumn53.RowLayoutColumnInfo.SpanX = 2;
  2690. ultraGridColumn53.RowLayoutColumnInfo.SpanY = 2;
  2691. ultraGridColumn54.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2692. ultraGridColumn54.Header.Caption = "订货单位";
  2693. ultraGridColumn54.Header.VisiblePosition = 10;
  2694. ultraGridColumn54.RowLayoutColumnInfo.OriginX = 22;
  2695. ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
  2696. ultraGridColumn54.RowLayoutColumnInfo.SpanX = 2;
  2697. ultraGridColumn54.RowLayoutColumnInfo.SpanY = 2;
  2698. ultraGridColumn55.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2699. ultraGridColumn55.Header.Caption = "发货单位";
  2700. ultraGridColumn55.Header.VisiblePosition = 11;
  2701. ultraGridColumn55.RowLayoutColumnInfo.OriginX = 20;
  2702. ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
  2703. ultraGridColumn55.RowLayoutColumnInfo.SpanX = 2;
  2704. ultraGridColumn55.RowLayoutColumnInfo.SpanY = 2;
  2705. ultraGridColumn56.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2706. ultraGridColumn56.Header.Caption = "运输单位";
  2707. ultraGridColumn56.Header.VisiblePosition = 12;
  2708. ultraGridColumn56.RowLayoutColumnInfo.OriginX = 26;
  2709. ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
  2710. ultraGridColumn56.RowLayoutColumnInfo.SpanX = 2;
  2711. ultraGridColumn56.RowLayoutColumnInfo.SpanY = 2;
  2712. ultraGridColumn57.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2713. ultraGridColumn57.Header.Caption = "作废时间";
  2714. ultraGridColumn57.Header.VisiblePosition = 17;
  2715. ultraGridColumn57.Hidden = true;
  2716. ultraGridColumn58.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2717. ultraGridColumn58.Header.Caption = "作废人";
  2718. ultraGridColumn58.Header.VisiblePosition = 18;
  2719. ultraGridColumn58.Hidden = true;
  2720. ultraGridColumn59.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2721. ultraGridColumn59.Header.Caption = "备注";
  2722. ultraGridColumn59.Header.VisiblePosition = 14;
  2723. ultraGridColumn59.RowLayoutColumnInfo.OriginX = 18;
  2724. ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
  2725. ultraGridColumn59.RowLayoutColumnInfo.SpanX = 2;
  2726. ultraGridColumn59.RowLayoutColumnInfo.SpanY = 2;
  2727. ultraGridColumn60.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2728. ultraGridColumn60.Header.Caption = "重量类型";
  2729. ultraGridColumn60.Header.VisiblePosition = 13;
  2730. ultraGridColumn60.Hidden = true;
  2731. ultraGridColumn60.RowLayoutColumnInfo.OriginX = 10;
  2732. ultraGridColumn60.RowLayoutColumnInfo.OriginY = 0;
  2733. ultraGridColumn60.RowLayoutColumnInfo.SpanX = 2;
  2734. ultraGridColumn60.RowLayoutColumnInfo.SpanY = 2;
  2735. ultraGridColumn61.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2736. ultraGridColumn61.Header.Caption = "磅房";
  2737. ultraGridColumn61.Header.VisiblePosition = 15;
  2738. ultraGridColumn61.RowLayoutColumnInfo.OriginX = 2;
  2739. ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
  2740. ultraGridColumn61.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(84, 0);
  2741. ultraGridColumn61.RowLayoutColumnInfo.SpanX = 2;
  2742. ultraGridColumn61.RowLayoutColumnInfo.SpanY = 2;
  2743. ultraGridColumn62.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2744. ultraGridColumn62.Header.Caption = "实发数";
  2745. ultraGridColumn62.Header.VisiblePosition = 19;
  2746. ultraGridColumn62.Hidden = true;
  2747. ultraGridColumn62.RowLayoutColumnInfo.OriginX = 14;
  2748. ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
  2749. ultraGridColumn62.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
  2750. ultraGridColumn62.RowLayoutColumnInfo.SpanX = 2;
  2751. ultraGridColumn62.RowLayoutColumnInfo.SpanY = 2;
  2752. ultraGridColumn63.Header.Caption = "皮重有效剩余时间(小时)";
  2753. ultraGridColumn63.Header.VisiblePosition = 21;
  2754. ultraGridColumn63.Hidden = true;
  2755. ultraGridColumn63.RowLayoutColumnInfo.OriginX = 28;
  2756. ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
  2757. ultraGridColumn63.RowLayoutColumnInfo.SpanX = 2;
  2758. ultraGridColumn63.RowLayoutColumnInfo.SpanY = 2;
  2759. ultraGridColumn64.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2760. ultraGridColumn64.Header.Caption = "带货过皮";
  2761. ultraGridColumn64.Header.VisiblePosition = 22;
  2762. ultraGridColumn64.RowLayoutColumnInfo.OriginX = 14;
  2763. ultraGridColumn64.RowLayoutColumnInfo.OriginY = 0;
  2764. ultraGridColumn64.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(94, 0);
  2765. ultraGridColumn64.RowLayoutColumnInfo.SpanX = 2;
  2766. ultraGridColumn64.RowLayoutColumnInfo.SpanY = 2;
  2767. ultraGridBand2.Columns.AddRange(new object[] {
  2768. ultraGridColumn42,
  2769. ultraGridColumn43,
  2770. ultraGridColumn44,
  2771. ultraGridColumn45,
  2772. ultraGridColumn46,
  2773. ultraGridColumn47,
  2774. ultraGridColumn48,
  2775. ultraGridColumn49,
  2776. ultraGridColumn50,
  2777. ultraGridColumn51,
  2778. ultraGridColumn52,
  2779. ultraGridColumn53,
  2780. ultraGridColumn54,
  2781. ultraGridColumn55,
  2782. ultraGridColumn56,
  2783. ultraGridColumn57,
  2784. ultraGridColumn58,
  2785. ultraGridColumn59,
  2786. ultraGridColumn60,
  2787. ultraGridColumn61,
  2788. ultraGridColumn62,
  2789. ultraGridColumn63,
  2790. ultraGridColumn64});
  2791. rowLayout2.ColumnInfos.AddRange(new Infragistics.Win.UltraWinGrid.RowLayoutColumnInfo[] {
  2792. rowLayoutColumnInfo42,
  2793. rowLayoutColumnInfo43,
  2794. rowLayoutColumnInfo44,
  2795. rowLayoutColumnInfo45,
  2796. rowLayoutColumnInfo46,
  2797. rowLayoutColumnInfo47,
  2798. rowLayoutColumnInfo48,
  2799. rowLayoutColumnInfo49,
  2800. rowLayoutColumnInfo50,
  2801. rowLayoutColumnInfo51,
  2802. rowLayoutColumnInfo52,
  2803. rowLayoutColumnInfo53,
  2804. rowLayoutColumnInfo54,
  2805. rowLayoutColumnInfo55,
  2806. rowLayoutColumnInfo56,
  2807. rowLayoutColumnInfo57,
  2808. rowLayoutColumnInfo58,
  2809. rowLayoutColumnInfo59,
  2810. rowLayoutColumnInfo60,
  2811. rowLayoutColumnInfo61,
  2812. rowLayoutColumnInfo62,
  2813. rowLayoutColumnInfo63,
  2814. rowLayoutColumnInfo64});
  2815. rowLayout2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
  2816. ultraGridBand2.RowLayouts.AddRange(new Infragistics.Win.UltraWinGrid.RowLayout[] {
  2817. rowLayout2});
  2818. ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  2819. this.CurrentGrid.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  2820. this.CurrentGrid.Dock = System.Windows.Forms.DockStyle.Fill;
  2821. this.CurrentGrid.Font = new System.Drawing.Font("宋体", 10F);
  2822. this.CurrentGrid.Location = new System.Drawing.Point(0, 0);
  2823. this.CurrentGrid.Margin = new System.Windows.Forms.Padding(4);
  2824. this.CurrentGrid.Name = "CurrentGrid";
  2825. this.CurrentGrid.Size = new System.Drawing.Size(1137, 312);
  2826. this.CurrentGrid.TabIndex = 71;
  2827. this.CurrentGrid.InitializeLayout += new Infragistics.Win.UltraWinGrid.InitializeLayoutEventHandler(this.CurrentGrid_InitializeLayout);
  2828. this.CurrentGrid.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.CurrentGrid_InitializeRow);
  2829. this.CurrentGrid.AfterRowActivate += new System.EventHandler(this.CurrentGrid_AfterRowActivate);
  2830. this.CurrentGrid.AfterRowRegionScroll += new Infragistics.Win.UltraWinGrid.RowScrollRegionEventHandler(this.CurrentGrid_AfterRowRegionScroll);
  2831. this.CurrentGrid.BeforeRowDeactivate += new System.ComponentModel.CancelEventHandler(this.CurrentGrid_BeforeRowDeactivate);
  2832. this.CurrentGrid.DoubleClickCell += new Infragistics.Win.UltraWinGrid.DoubleClickCellEventHandler(this.CurrentGrid_DoubleClickCell);
  2833. this.CurrentGrid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.CurrentGrid_KeyDown);
  2834. this.CurrentGrid.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.CurrentGrid_KeyPress);
  2835. //
  2836. // cmmWeightRecordEntityBindingSource
  2837. //
  2838. this.cmmWeightRecordEntityBindingSource.DataSource = typeof(Core.StlMes.Client.LgResMgt.Mcms.entity.CmmWeightRecordEntity);
  2839. //
  2840. // tbWt
  2841. //
  2842. appearance21.ForeColor = System.Drawing.SystemColors.ControlText;
  2843. this.tbWt.Appearance = appearance21;
  2844. this.tbWt.Controls.Add(this.ultraTabSharedControlsPage2);
  2845. this.tbWt.Controls.Add(this.ultraTabPageControl3);
  2846. this.tbWt.Controls.Add(this.ultraTabPageControl4);
  2847. this.tbWt.Dock = System.Windows.Forms.DockStyle.Fill;
  2848. this.tbWt.Font = new System.Drawing.Font("宋体", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2849. this.tbWt.Location = new System.Drawing.Point(0, 0);
  2850. this.tbWt.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2851. this.tbWt.Name = "tbWt";
  2852. this.tbWt.SharedControlsPage = this.ultraTabSharedControlsPage2;
  2853. this.tbWt.Size = new System.Drawing.Size(1137, 298);
  2854. this.tbWt.TabIndex = 1;
  2855. this.tbWt.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
  2856. ultraTab5.Key = "1";
  2857. ultraTab5.TabPage = this.ultraTabPageControl3;
  2858. ultraTab5.Text = "第一次称重";
  2859. ultraTab6.Key = "2";
  2860. ultraTab6.TabPage = this.ultraTabPageControl4;
  2861. ultraTab6.Text = "第二次称重";
  2862. this.tbWt.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  2863. ultraTab5,
  2864. ultraTab6});
  2865. this.tbWt.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.tbFirstWt_SelectedTabChanged);
  2866. //
  2867. // ultraTabSharedControlsPage2
  2868. //
  2869. this.ultraTabSharedControlsPage2.Location = new System.Drawing.Point(-10000, -10000);
  2870. this.ultraTabSharedControlsPage2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2871. this.ultraTabSharedControlsPage2.Name = "ultraTabSharedControlsPage2";
  2872. this.ultraTabSharedControlsPage2.Size = new System.Drawing.Size(1133, 269);
  2873. //
  2874. // ultraPanel20
  2875. //
  2876. //
  2877. // ultraPanel20.ClientArea
  2878. //
  2879. this.ultraPanel20.ClientArea.Controls.Add(this.ultraPanel4);
  2880. this.ultraPanel20.ClientArea.Controls.Add(this.lblWt);
  2881. this.ultraPanel20.Dock = System.Windows.Forms.DockStyle.Top;
  2882. this.ultraPanel20.Location = new System.Drawing.Point(0, 0);
  2883. this.ultraPanel20.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2884. this.ultraPanel20.Name = "ultraPanel20";
  2885. this.ultraPanel20.Size = new System.Drawing.Size(1137, 83);
  2886. this.ultraPanel20.TabIndex = 74;
  2887. //
  2888. // ultraPanel4
  2889. //
  2890. //
  2891. // ultraPanel4.ClientArea
  2892. //
  2893. this.ultraPanel4.ClientArea.Controls.Add(this.utbExport2);
  2894. this.ultraPanel4.ClientArea.Controls.Add(this.cboPoundList);
  2895. this.ultraPanel4.ClientArea.Controls.Add(this.label13);
  2896. this.ultraPanel4.ClientArea.Controls.Add(this.cbxCar1);
  2897. this.ultraPanel4.ClientArea.Controls.Add(this.label3);
  2898. this.ultraPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
  2899. this.ultraPanel4.Location = new System.Drawing.Point(274, 0);
  2900. this.ultraPanel4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2901. this.ultraPanel4.Name = "ultraPanel4";
  2902. this.ultraPanel4.Size = new System.Drawing.Size(863, 83);
  2903. this.ultraPanel4.TabIndex = 582;
  2904. //
  2905. // utbExport2
  2906. //
  2907. this.utbExport2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2908. appearance5.Image = ((object)(resources.GetObject("appearance5.Image")));
  2909. this.utbExport2.Appearance = appearance5;
  2910. this.utbExport2.AutoSize = true;
  2911. this.utbExport2.Location = new System.Drawing.Point(536, 30);
  2912. this.utbExport2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2913. this.utbExport2.Name = "utbExport2";
  2914. this.utbExport2.Size = new System.Drawing.Size(55, 26);
  2915. this.utbExport2.TabIndex = 605;
  2916. this.utbExport2.Text = "导出";
  2917. this.utbExport2.Click += new System.EventHandler(this.utbExport2_Click);
  2918. //
  2919. // cboPoundList
  2920. //
  2921. this.cboPoundList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2922. this.cboPoundList.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  2923. this.cboPoundList.Font = new System.Drawing.Font("宋体", 10F);
  2924. this.cboPoundList.FormattingEnabled = true;
  2925. this.cboPoundList.Location = new System.Drawing.Point(769, 32);
  2926. this.cboPoundList.Margin = new System.Windows.Forms.Padding(4);
  2927. this.cboPoundList.Name = "cboPoundList";
  2928. this.cboPoundList.Size = new System.Drawing.Size(67, 21);
  2929. this.cboPoundList.TabIndex = 597;
  2930. this.cboPoundList.SelectedValueChanged += new System.EventHandler(this.cboPoundList_SelectedValueChanged);
  2931. //
  2932. // label13
  2933. //
  2934. this.label13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  2935. this.label13.AutoSize = true;
  2936. this.label13.Font = new System.Drawing.Font("宋体", 10F);
  2937. this.label13.Location = new System.Drawing.Point(638, 35);
  2938. this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2939. this.label13.Name = "label13";
  2940. this.label13.Size = new System.Drawing.Size(98, 14);
  2941. this.label13.TabIndex = 595;
  2942. this.label13.Text = "过磅磅房编号:";
  2943. this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2944. //
  2945. // cbxCar1
  2946. //
  2947. this.cbxCar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2948. | System.Windows.Forms.AnchorStyles.Left)));
  2949. this.cbxCar1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  2950. this.cbxCar1.Font = new System.Drawing.Font("宋体", 10F);
  2951. this.cbxCar1.FormattingEnabled = true;
  2952. this.cbxCar1.Items.AddRange(new object[] {
  2953. "厂内 ",
  2954. "苏",
  2955. "浙",
  2956. "皖",
  2957. "闽",
  2958. "赣",
  2959. "京",
  2960. "沪",
  2961. "津",
  2962. "渝",
  2963. "鲁",
  2964. "冀",
  2965. "晋",
  2966. "蒙",
  2967. "辽",
  2968. "吉",
  2969. "黑",
  2970. "豫",
  2971. "湘",
  2972. "鄂",
  2973. "粤",
  2974. "桂",
  2975. "琼",
  2976. "川",
  2977. "贵",
  2978. "云",
  2979. "藏",
  2980. "陕",
  2981. "甘",
  2982. "青",
  2983. "宁",
  2984. "新",
  2985. "港",
  2986. "澳",
  2987. "台"});
  2988. this.cbxCar1.Location = new System.Drawing.Point(95, 29);
  2989. this.cbxCar1.Margin = new System.Windows.Forms.Padding(4);
  2990. this.cbxCar1.Name = "cbxCar1";
  2991. this.cbxCar1.Size = new System.Drawing.Size(71, 21);
  2992. this.cbxCar1.TabIndex = 593;
  2993. this.cbxCar1.SelectedValueChanged += new System.EventHandler(this.cbxCar1_SelectedValueChanged);
  2994. //
  2995. // label3
  2996. //
  2997. this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2998. | System.Windows.Forms.AnchorStyles.Left)));
  2999. this.label3.AutoSize = true;
  3000. this.label3.Font = new System.Drawing.Font("宋体", 10F);
  3001. this.label3.Location = new System.Drawing.Point(19, 32);
  3002. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3003. this.label3.Name = "label3";
  3004. this.label3.Size = new System.Drawing.Size(56, 14);
  3005. this.label3.TabIndex = 592;
  3006. this.label3.Text = "车牌号:";
  3007. //
  3008. // lblWt
  3009. //
  3010. appearance11.BackColor = System.Drawing.Color.LightBlue;
  3011. appearance11.TextHAlignAsString = "Center";
  3012. appearance11.TextVAlignAsString = "Middle";
  3013. this.lblWt.Appearance = appearance11;
  3014. this.lblWt.Dock = System.Windows.Forms.DockStyle.Left;
  3015. this.lblWt.Font = new System.Drawing.Font("微软雅黑", 34.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3016. this.lblWt.Location = new System.Drawing.Point(0, 0);
  3017. this.lblWt.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3018. this.lblWt.Name = "lblWt";
  3019. this.lblWt.Size = new System.Drawing.Size(274, 83);
  3020. this.lblWt.TabIndex = 73;
  3021. this.lblWt.Text = "0.000t";
  3022. //
  3023. // tbMain
  3024. //
  3025. this.tbMain.Controls.Add(this.ultraTabSharedControlsPage1);
  3026. this.tbMain.Controls.Add(this.ultraTabPageControl1);
  3027. this.tbMain.Controls.Add(this.ultraTabPageControl2);
  3028. this.tbMain.Dock = System.Windows.Forms.DockStyle.Fill;
  3029. this.tbMain.Location = new System.Drawing.Point(0, 0);
  3030. this.tbMain.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3031. this.tbMain.Name = "tbMain";
  3032. this.tbMain.SharedControlsPage = this.ultraTabSharedControlsPage1;
  3033. this.tbMain.Size = new System.Drawing.Size(1141, 723);
  3034. this.tbMain.TabIndex = 0;
  3035. this.tbMain.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
  3036. ultraTab4.Key = "2";
  3037. ultraTab4.TabPage = this.ultraTabPageControl2;
  3038. ultraTab4.Text = "称重记录";
  3039. ultraTab3.Key = "1";
  3040. ultraTab3.TabPage = this.ultraTabPageControl1;
  3041. ultraTab3.Text = "配车称重";
  3042. this.tbMain.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  3043. ultraTab4,
  3044. ultraTab3});
  3045. //
  3046. // ultraTabSharedControlsPage1
  3047. //
  3048. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
  3049. this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3050. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  3051. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1137, 697);
  3052. //
  3053. // ultraPanel1
  3054. //
  3055. //
  3056. // ultraPanel1.ClientArea
  3057. //
  3058. this.ultraPanel1.ClientArea.Controls.Add(this.lvTemplate);
  3059. this.ultraPanel1.ClientArea.Controls.Add(this.lblWtNow);
  3060. this.ultraPanel1.ClientArea.Controls.Add(this.ultraPanel2);
  3061. this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  3062. this.ultraPanel1.Location = new System.Drawing.Point(0, 0);
  3063. this.ultraPanel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3064. this.ultraPanel1.Name = "ultraPanel1";
  3065. this.ultraPanel1.Size = new System.Drawing.Size(203, 723);
  3066. this.ultraPanel1.TabIndex = 1;
  3067. //
  3068. // lvTemplate
  3069. //
  3070. this.lvTemplate.Dock = System.Windows.Forms.DockStyle.Fill;
  3071. this.lvTemplate.Font = new System.Drawing.Font("宋体", 10F);
  3072. this.lvTemplate.ItemSettings.AllowEdit = Infragistics.Win.DefaultableBoolean.False;
  3073. this.lvTemplate.ItemSettings.DefaultImage = ((System.Drawing.Image)(resources.GetObject("lvTemplate.ItemSettings.DefaultImage")));
  3074. this.lvTemplate.Location = new System.Drawing.Point(0, 253);
  3075. this.lvTemplate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3076. this.lvTemplate.Name = "lvTemplate";
  3077. this.lvTemplate.Size = new System.Drawing.Size(203, 470);
  3078. this.lvTemplate.TabIndex = 593;
  3079. this.lvTemplate.View = Infragistics.Win.UltraWinListView.UltraListViewStyle.List;
  3080. this.lvTemplate.ItemDoubleClick += new Infragistics.Win.UltraWinListView.ItemDoubleClickEventHandler(this.lvTemplate_ItemDoubleClick);
  3081. this.lvTemplate.MouseClick += new System.Windows.Forms.MouseEventHandler(this.lvTemplate_MouseClick);
  3082. //
  3083. // lblWtNow
  3084. //
  3085. appearance12.BackColor = System.Drawing.Color.LightBlue;
  3086. appearance12.TextHAlignAsString = "Center";
  3087. appearance12.TextVAlignAsString = "Middle";
  3088. this.lblWtNow.Appearance = appearance12;
  3089. this.lblWtNow.Dock = System.Windows.Forms.DockStyle.Top;
  3090. this.lblWtNow.Font = new System.Drawing.Font("微软雅黑", 34.8F, System.Drawing.FontStyle.Bold);
  3091. this.lblWtNow.Location = new System.Drawing.Point(0, 158);
  3092. this.lblWtNow.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3093. this.lblWtNow.Name = "lblWtNow";
  3094. this.lblWtNow.Size = new System.Drawing.Size(203, 95);
  3095. this.lblWtNow.TabIndex = 72;
  3096. this.lblWtNow.Text = "0.00t";
  3097. this.lblWtNow.Click += new System.EventHandler(this.lblWtNow_Click);
  3098. //
  3099. // ultraPanel2
  3100. //
  3101. //
  3102. // ultraPanel2.ClientArea
  3103. //
  3104. this.ultraPanel2.ClientArea.Controls.Add(this.lblStatus);
  3105. this.ultraPanel2.ClientArea.Controls.Add(this.lblMsg);
  3106. this.ultraPanel2.ClientArea.Controls.Add(this.btnSetting);
  3107. this.ultraPanel2.ClientArea.Controls.Add(this.cboNo);
  3108. this.ultraPanel2.ClientArea.Controls.Add(this.utbConnect);
  3109. this.ultraPanel2.ClientArea.Controls.Add(this.label2);
  3110. this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Top;
  3111. this.ultraPanel2.Location = new System.Drawing.Point(0, 0);
  3112. this.ultraPanel2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3113. this.ultraPanel2.Name = "ultraPanel2";
  3114. this.ultraPanel2.Size = new System.Drawing.Size(203, 158);
  3115. this.ultraPanel2.TabIndex = 591;
  3116. //
  3117. // lblStatus
  3118. //
  3119. this.lblStatus.Dock = System.Windows.Forms.DockStyle.Bottom;
  3120. this.lblStatus.Location = new System.Drawing.Point(0, 98);
  3121. this.lblStatus.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3122. this.lblStatus.Name = "lblStatus";
  3123. this.lblStatus.Size = new System.Drawing.Size(203, 30);
  3124. this.lblStatus.TabIndex = 599;
  3125. this.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3126. //
  3127. // lblMsg
  3128. //
  3129. this.lblMsg.Dock = System.Windows.Forms.DockStyle.Bottom;
  3130. this.lblMsg.Location = new System.Drawing.Point(0, 128);
  3131. this.lblMsg.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3132. this.lblMsg.Name = "lblMsg";
  3133. this.lblMsg.Size = new System.Drawing.Size(203, 30);
  3134. this.lblMsg.TabIndex = 598;
  3135. this.lblMsg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3136. //
  3137. // btnSetting
  3138. //
  3139. this.btnSetting.AutoSize = true;
  3140. this.btnSetting.Location = new System.Drawing.Point(8, 4);
  3141. this.btnSetting.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3142. this.btnSetting.Name = "btnSetting";
  3143. this.btnSetting.Size = new System.Drawing.Size(39, 26);
  3144. this.btnSetting.TabIndex = 597;
  3145. this.btnSetting.Text = "配置";
  3146. this.btnSetting.Click += new System.EventHandler(this.btnSetting_Click);
  3147. //
  3148. // cboNo
  3149. //
  3150. this.cboNo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  3151. this.cboNo.Font = new System.Drawing.Font("宋体", 10F);
  3152. this.cboNo.FormattingEnabled = true;
  3153. this.cboNo.Items.AddRange(new object[] {
  3154. "300",
  3155. "1200",
  3156. "2400",
  3157. "4800",
  3158. "9600",
  3159. "19200",
  3160. "38400",
  3161. "57600"});
  3162. this.cboNo.Location = new System.Drawing.Point(101, 55);
  3163. this.cboNo.Margin = new System.Windows.Forms.Padding(4);
  3164. this.cboNo.Name = "cboNo";
  3165. this.cboNo.Size = new System.Drawing.Size(86, 21);
  3166. this.cboNo.TabIndex = 596;
  3167. //
  3168. // utbConnect
  3169. //
  3170. this.utbConnect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  3171. appearance15.ForeColor = System.Drawing.Color.Lime;
  3172. this.utbConnect.Appearance = appearance15;
  3173. this.utbConnect.AutoSize = true;
  3174. this.utbConnect.Font = new System.Drawing.Font("宋体", 10F);
  3175. this.utbConnect.Location = new System.Drawing.Point(162, 4);
  3176. this.utbConnect.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3177. this.utbConnect.Name = "utbConnect";
  3178. this.utbConnect.Size = new System.Drawing.Size(29, 25);
  3179. this.utbConnect.TabIndex = 595;
  3180. this.utbConnect.Text = "●";
  3181. this.utbConnect.Click += new System.EventHandler(this.utbConnect_Click);
  3182. //
  3183. // label2
  3184. //
  3185. this.label2.AutoSize = true;
  3186. this.label2.Location = new System.Drawing.Point(13, 58);
  3187. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3188. this.label2.Name = "label2";
  3189. this.label2.Size = new System.Drawing.Size(59, 12);
  3190. this.label2.TabIndex = 591;
  3191. this.label2.Text = "磅房编号:";
  3192. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3193. //
  3194. // ultraTabControl3
  3195. //
  3196. this.ultraTabControl3.Location = new System.Drawing.Point(0, 0);
  3197. this.ultraTabControl3.Name = "ultraTabControl3";
  3198. this.ultraTabControl3.SharedControlsPage = this.ultraTabSharedControlsPage3;
  3199. this.ultraTabControl3.Size = new System.Drawing.Size(200, 100);
  3200. this.ultraTabControl3.TabIndex = 0;
  3201. //
  3202. // ultraTabSharedControlsPage3
  3203. //
  3204. this.ultraTabSharedControlsPage3.Location = new System.Drawing.Point(1, 20);
  3205. this.ultraTabSharedControlsPage3.Name = "ultraTabSharedControlsPage3";
  3206. this.ultraTabSharedControlsPage3.Size = new System.Drawing.Size(196, 77);
  3207. //
  3208. // ultraGroupBox2
  3209. //
  3210. this.ultraGroupBox2.Controls.Add(this.ultraPanel6);
  3211. this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
  3212. this.ultraGroupBox2.Name = "ultraGroupBox2";
  3213. this.ultraGroupBox2.Size = new System.Drawing.Size(200, 110);
  3214. this.ultraGroupBox2.TabIndex = 0;
  3215. //
  3216. // ultraPanel6
  3217. //
  3218. //
  3219. // ultraPanel6.ClientArea
  3220. //
  3221. this.ultraPanel6.ClientArea.Controls.Add(this.ultraButton5);
  3222. this.ultraPanel6.ClientArea.Controls.Add(this.checkBox2);
  3223. this.ultraPanel6.ClientArea.Controls.Add(this.ultraButton6);
  3224. this.ultraPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
  3225. this.ultraPanel6.Location = new System.Drawing.Point(3, 0);
  3226. this.ultraPanel6.Name = "ultraPanel6";
  3227. this.ultraPanel6.Size = new System.Drawing.Size(194, 107);
  3228. this.ultraPanel6.TabIndex = 3;
  3229. //
  3230. // ultraButton5
  3231. //
  3232. appearance2.Image = ((object)(resources.GetObject("appearance2.Image")));
  3233. this.ultraButton5.Appearance = appearance2;
  3234. this.ultraButton5.AutoSize = true;
  3235. this.ultraButton5.Font = new System.Drawing.Font("宋体", 10F);
  3236. this.ultraButton5.Location = new System.Drawing.Point(349, 20);
  3237. this.ultraButton5.Name = "ultraButton5";
  3238. this.ultraButton5.Size = new System.Drawing.Size(113, 27);
  3239. this.ultraButton5.TabIndex = 598;
  3240. this.ultraButton5.Text = " 保存为模板";
  3241. //
  3242. // checkBox2
  3243. //
  3244. this.checkBox2.AutoSize = true;
  3245. this.checkBox2.Location = new System.Drawing.Point(157, 24);
  3246. this.checkBox2.Name = "checkBox2";
  3247. this.checkBox2.Size = new System.Drawing.Size(96, 16);
  3248. this.checkBox2.TabIndex = 597;
  3249. this.checkBox2.Text = "带货过皮车辆";
  3250. this.checkBox2.UseVisualStyleBackColor = true;
  3251. //
  3252. // ultraButton6
  3253. //
  3254. appearance3.Image = ((object)(resources.GetObject("appearance3.Image")));
  3255. this.ultraButton6.Appearance = appearance3;
  3256. this.ultraButton6.AutoSize = true;
  3257. this.ultraButton6.Font = new System.Drawing.Font("宋体", 10F);
  3258. this.ultraButton6.Location = new System.Drawing.Point(30, 20);
  3259. this.ultraButton6.Name = "ultraButton6";
  3260. this.ultraButton6.Size = new System.Drawing.Size(72, 27);
  3261. this.ultraButton6.TabIndex = 596;
  3262. this.ultraButton6.Text = " 保存";
  3263. //
  3264. // ultraTabSharedControlsPage5
  3265. //
  3266. this.ultraTabSharedControlsPage5.Location = new System.Drawing.Point(1, 20);
  3267. this.ultraTabSharedControlsPage5.Name = "ultraTabSharedControlsPage5";
  3268. this.ultraTabSharedControlsPage5.Size = new System.Drawing.Size(196, 77);
  3269. //
  3270. // ultraTabControl5
  3271. //
  3272. this.ultraTabControl5.Location = new System.Drawing.Point(0, 0);
  3273. this.ultraTabControl5.Name = "ultraTabControl5";
  3274. this.ultraTabControl5.SharedControlsPage = this.ultraTabSharedControlsPage5;
  3275. this.ultraTabControl5.Size = new System.Drawing.Size(200, 100);
  3276. this.ultraTabControl5.TabIndex = 0;
  3277. //
  3278. // ultraTabControl6
  3279. //
  3280. this.ultraTabControl6.Location = new System.Drawing.Point(0, 0);
  3281. this.ultraTabControl6.Name = "ultraTabControl6";
  3282. this.ultraTabControl6.SharedControlsPage = this.ultraTabSharedControlsPage6;
  3283. this.ultraTabControl6.Size = new System.Drawing.Size(200, 100);
  3284. this.ultraTabControl6.TabIndex = 0;
  3285. //
  3286. // ultraTabSharedControlsPage6
  3287. //
  3288. this.ultraTabSharedControlsPage6.Location = new System.Drawing.Point(1, 20);
  3289. this.ultraTabSharedControlsPage6.Name = "ultraTabSharedControlsPage6";
  3290. this.ultraTabSharedControlsPage6.Size = new System.Drawing.Size(196, 77);
  3291. //
  3292. // listViewMenuStrip
  3293. //
  3294. this.listViewMenuStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
  3295. this.listViewMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  3296. this.deleteTemplate});
  3297. this.listViewMenuStrip.Name = "contextMenuStrip1";
  3298. this.listViewMenuStrip.Size = new System.Drawing.Size(125, 26);
  3299. //
  3300. // deleteTemplate
  3301. //
  3302. this.deleteTemplate.Name = "deleteTemplate";
  3303. this.deleteTemplate.Size = new System.Drawing.Size(124, 22);
  3304. this.deleteTemplate.Text = "删除模板";
  3305. this.deleteTemplate.Click += new System.EventHandler(this.deleteTemplate_Click);
  3306. //
  3307. // splitContainer2
  3308. //
  3309. this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
  3310. this.splitContainer2.Location = new System.Drawing.Point(0, 0);
  3311. this.splitContainer2.Name = "splitContainer2";
  3312. //
  3313. // splitContainer2.Panel1
  3314. //
  3315. this.splitContainer2.Panel1.Controls.Add(this.ultraPanel1);
  3316. //
  3317. // splitContainer2.Panel2
  3318. //
  3319. this.splitContainer2.Panel2.Controls.Add(this.tbMain);
  3320. this.splitContainer2.Size = new System.Drawing.Size(1348, 723);
  3321. this.splitContainer2.SplitterDistance = 203;
  3322. this.splitContainer2.TabIndex = 74;
  3323. this.splitContainer2.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer2_SplitterMoved);
  3324. //
  3325. // frmLocalTruckScale
  3326. //
  3327. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  3328. this.ClientSize = new System.Drawing.Size(1348, 723);
  3329. this.Controls.Add(this.splitContainer2);
  3330. this.Margin = new System.Windows.Forms.Padding(4);
  3331. this.Name = "frmLocalTruckScale";
  3332. this.Text = "本地计量";
  3333. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmLocalTruckScale_FormClosed);
  3334. this.Shown += new System.EventHandler(this.frmLocalTruckScale_Shown);
  3335. this.ultraTabPageControl18.ResumeLayout(false);
  3336. this.ultraTabPageControl5.ResumeLayout(false);
  3337. this.ultraTabPageControl24.ResumeLayout(false);
  3338. this.ultraTabPageControl6.ResumeLayout(false);
  3339. this.ultraTabPageControl15.ResumeLayout(false);
  3340. this.ultraTabPageControl16.ResumeLayout(false);
  3341. this.ultraTabPageControl17.ResumeLayout(false);
  3342. this.ultraTabPageControl7.ResumeLayout(false);
  3343. this.ultraTabPageControl20.ResumeLayout(false);
  3344. this.ultraTabPageControl8.ResumeLayout(false);
  3345. this.ultraTabPageControl9.ResumeLayout(false);
  3346. this.ultraTabPageControl10.ResumeLayout(false);
  3347. this.ultraTabPageControl11.ResumeLayout(false);
  3348. this.ultraTabPageControl12.ResumeLayout(false);
  3349. this.ultraTabPageControl13.ResumeLayout(false);
  3350. this.ultraTabPageControl14.ResumeLayout(false);
  3351. this.ultraTabPageControl21.ResumeLayout(false);
  3352. this.ultraPanel12.ClientArea.ResumeLayout(false);
  3353. this.ultraPanel12.ClientArea.PerformLayout();
  3354. this.ultraPanel12.ResumeLayout(false);
  3355. this.ultraTabPageControl19.ResumeLayout(false);
  3356. this.ultraPanel11.ClientArea.ResumeLayout(false);
  3357. this.ultraPanel11.ClientArea.PerformLayout();
  3358. this.ultraPanel11.ResumeLayout(false);
  3359. this.ultraTabPageControl22.ResumeLayout(false);
  3360. ((System.ComponentModel.ISupportInitialize)(this.tbOther)).EndInit();
  3361. this.tbOther.ResumeLayout(false);
  3362. this.ultraPanel9.ClientArea.ResumeLayout(false);
  3363. this.ultraPanel9.ClientArea.PerformLayout();
  3364. this.ultraPanel9.ResumeLayout(false);
  3365. this.ultraTabPageControl23.ResumeLayout(false);
  3366. this.ultraPanel10.ClientArea.ResumeLayout(false);
  3367. this.ultraPanel10.ClientArea.PerformLayout();
  3368. this.ultraPanel10.ResumeLayout(false);
  3369. ((System.ComponentModel.ISupportInitialize)(this.uceType)).EndInit();
  3370. ((System.ComponentModel.ISupportInitialize)(this.uceVlid)).EndInit();
  3371. ((System.ComponentModel.ISupportInitialize)(this.delete)).EndInit();
  3372. ((System.ComponentModel.ISupportInitialize)(this.uteCarNo)).EndInit();
  3373. ((System.ComponentModel.ISupportInitialize)(this.uteChangeType)).EndInit();
  3374. this.ultraTabPageControl3.ResumeLayout(false);
  3375. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  3376. this.ultraGroupBox1.ResumeLayout(false);
  3377. ((System.ComponentModel.ISupportInitialize)(this.tbFirstWt)).EndInit();
  3378. this.tbFirstWt.ResumeLayout(false);
  3379. this.ultraPanel5.ClientArea.ResumeLayout(false);
  3380. this.ultraPanel5.ClientArea.PerformLayout();
  3381. this.ultraPanel5.ResumeLayout(false);
  3382. this.ultraTabPageControl4.ResumeLayout(false);
  3383. ((System.ComponentModel.ISupportInitialize)(this.tbScondWt)).EndInit();
  3384. this.tbScondWt.ResumeLayout(false);
  3385. this.ultraTabPageControl2.ResumeLayout(false);
  3386. this.ultraTabPageControl2.PerformLayout();
  3387. this.ultraPanel23.ClientArea.ResumeLayout(false);
  3388. this.ultraPanel23.ClientArea.PerformLayout();
  3389. this.ultraPanel23.ResumeLayout(false);
  3390. ((System.ComponentModel.ISupportInitialize)(this.ugData)).EndInit();
  3391. ((System.ComponentModel.ISupportInitialize)(this.QueryBS)).EndInit();
  3392. this.panel1.ResumeLayout(false);
  3393. this.ultraPanel3.ClientArea.ResumeLayout(false);
  3394. this.ultraPanel3.ResumeLayout(false);
  3395. this.ultraPanel3.PerformLayout();
  3396. this.upQueryTop.ClientArea.ResumeLayout(false);
  3397. this.upQueryTop.ClientArea.PerformLayout();
  3398. this.upQueryTop.ResumeLayout(false);
  3399. ((System.ComponentModel.ISupportInitialize)(this.uteJudgeStoveNo)).EndInit();
  3400. this.panel2.ResumeLayout(false);
  3401. this.panel2.PerformLayout();
  3402. ((System.ComponentModel.ISupportInitialize)(this.uteReceiveName)).EndInit();
  3403. ((System.ComponentModel.ISupportInitialize)(this.uteShippersName)).EndInit();
  3404. ((System.ComponentModel.ISupportInitialize)(this.uteOrder)).EndInit();
  3405. ((System.ComponentModel.ISupportInitialize)(this.utePound)).EndInit();
  3406. ((System.ComponentModel.ISupportInitialize)(this.uteMemo)).EndInit();
  3407. ((System.ComponentModel.ISupportInitialize)(this.uceQueryCarType)).EndInit();
  3408. this.ultraPanel7.ClientArea.ResumeLayout(false);
  3409. this.ultraPanel7.ClientArea.PerformLayout();
  3410. this.ultraPanel7.ResumeLayout(false);
  3411. this.ultraTabPageControl1.ResumeLayout(false);
  3412. this.splitContainer1.Panel1.ResumeLayout(false);
  3413. this.splitContainer1.Panel1.PerformLayout();
  3414. this.splitContainer1.Panel2.ResumeLayout(false);
  3415. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  3416. this.splitContainer1.ResumeLayout(false);
  3417. ((System.ComponentModel.ISupportInitialize)(this.uceType2)).EndInit();
  3418. ((System.ComponentModel.ISupportInitialize)(this.uteEdit)).EndInit();
  3419. ((System.ComponentModel.ISupportInitialize)(this.CurrentGrid)).EndInit();
  3420. ((System.ComponentModel.ISupportInitialize)(this.cmmWeightRecordEntityBindingSource)).EndInit();
  3421. ((System.ComponentModel.ISupportInitialize)(this.tbWt)).EndInit();
  3422. this.tbWt.ResumeLayout(false);
  3423. this.ultraPanel20.ClientArea.ResumeLayout(false);
  3424. this.ultraPanel20.ResumeLayout(false);
  3425. this.ultraPanel4.ClientArea.ResumeLayout(false);
  3426. this.ultraPanel4.ClientArea.PerformLayout();
  3427. this.ultraPanel4.ResumeLayout(false);
  3428. ((System.ComponentModel.ISupportInitialize)(this.tbMain)).EndInit();
  3429. this.tbMain.ResumeLayout(false);
  3430. this.ultraPanel1.ClientArea.ResumeLayout(false);
  3431. this.ultraPanel1.ResumeLayout(false);
  3432. ((System.ComponentModel.ISupportInitialize)(this.lvTemplate)).EndInit();
  3433. this.ultraPanel2.ClientArea.ResumeLayout(false);
  3434. this.ultraPanel2.ClientArea.PerformLayout();
  3435. this.ultraPanel2.ResumeLayout(false);
  3436. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl3)).EndInit();
  3437. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
  3438. this.ultraGroupBox2.ResumeLayout(false);
  3439. this.ultraPanel6.ClientArea.ResumeLayout(false);
  3440. this.ultraPanel6.ClientArea.PerformLayout();
  3441. this.ultraPanel6.ResumeLayout(false);
  3442. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl5)).EndInit();
  3443. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl6)).EndInit();
  3444. this.listViewMenuStrip.ResumeLayout(false);
  3445. this.splitContainer2.Panel1.ResumeLayout(false);
  3446. this.splitContainer2.Panel2.ResumeLayout(false);
  3447. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
  3448. this.splitContainer2.ResumeLayout(false);
  3449. this.ResumeLayout(false);
  3450. }
  3451. #endregion
  3452. private Infragistics.Win.UltraWinTabControl.UltraTabControl tbMain;
  3453. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  3454. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  3455. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
  3456. private Infragistics.Win.Misc.UltraPanel ultraPanel1;
  3457. private Infragistics.Win.Misc.UltraPanel ultraPanel2;
  3458. private System.Windows.Forms.Label label2;
  3459. private Infragistics.Win.UltraWinListView.UltraListView lvTemplate;
  3460. private System.Windows.Forms.SplitContainer splitContainer1;
  3461. private Infragistics.Win.UltraWinTabControl.UltraTabControl tbWt;
  3462. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage2;
  3463. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
  3464. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl4;
  3465. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl3;
  3466. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage3;
  3467. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  3468. private Infragistics.Win.Misc.UltraPanel ultraPanel5;
  3469. private Infragistics.Win.Misc.UltraButton utbSave1;
  3470. private System.Windows.Forms.CheckBox chkGross;
  3471. private Infragistics.Win.Misc.UltraButton utbSaveAsT;
  3472. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
  3473. private Infragistics.Win.Misc.UltraPanel ultraPanel6;
  3474. private Infragistics.Win.Misc.UltraButton ultraButton5;
  3475. private System.Windows.Forms.CheckBox checkBox2;
  3476. private Infragistics.Win.Misc.UltraButton ultraButton6;
  3477. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage5;
  3478. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl5;
  3479. private Infragistics.Win.UltraWinTabControl.UltraTabControl tbScondWt;
  3480. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage7;
  3481. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl21;
  3482. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl22;
  3483. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl23;
  3484. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl6;
  3485. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage6;
  3486. private Infragistics.Win.UltraWinGrid.UltraGrid CurrentGrid;
  3487. private Infragistics.Win.Misc.UltraButton utbConnect;
  3488. private Infragistics.Win.Misc.UltraLabel lblWtNow;
  3489. private Infragistics.Win.Misc.UltraLabel lblWt;
  3490. private Infragistics.Win.Misc.UltraPanel ultraPanel7;
  3491. private Infragistics.Win.UltraWinTabControl.UltraTabControl tbFirstWt;
  3492. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage4;
  3493. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl7;
  3494. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl8;
  3495. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl9;
  3496. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl10;
  3497. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl11;
  3498. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl12;
  3499. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl13;
  3500. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl14;
  3501. private MatInfo matInfo5;
  3502. private MatInfo matInfo6;
  3503. private MatInfo matInfo7;
  3504. private MatInfo matInfo8;
  3505. private MatInfo matInfo3;
  3506. private MatInfo matInfo2;
  3507. private MatInfo matInfo1;
  3508. private MatInfo matInfo4;
  3509. public Infragistics.Win.UltraWinEditors.UltraComboEditor uceType;
  3510. private System.Windows.Forms.ContextMenuStrip listViewMenuStrip;
  3511. private System.Windows.Forms.ToolStripMenuItem deleteTemplate;
  3512. private Infragistics.Win.UltraWinTabControl.UltraTabControl tbOther;
  3513. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage8;
  3514. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl5;
  3515. private MatInfo matInfo9;
  3516. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl6;
  3517. private MatInfo matInfo10;
  3518. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl15;
  3519. private MatInfo matInfo11;
  3520. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl16;
  3521. private MatInfo matInfo12;
  3522. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl17;
  3523. private MatInfo matInfo13;
  3524. private Infragistics.Win.Misc.UltraPanel ultraPanel9;
  3525. private Infragistics.Win.Misc.UltraButton btnSaveAsT2;
  3526. private Infragistics.Win.Misc.UltraButton btnSave2;
  3527. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl18;
  3528. private MatInfo matInfo14;
  3529. private Infragistics.Win.Misc.UltraPanel ultraPanel10;
  3530. private Infragistics.Win.Misc.UltraButton utbSave3;
  3531. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl19;
  3532. private MatInfo matInfo16;
  3533. private Infragistics.Win.Misc.UltraPanel ultraPanel12;
  3534. private Infragistics.Win.Misc.UltraButton ultraButton1;
  3535. private MatInfo matInfo15;
  3536. private Infragistics.Win.Misc.UltraPanel ultraPanel11;
  3537. private Infragistics.Win.Misc.UltraButton utbSave4;
  3538. private System.Windows.Forms.DateTimePicker RegEndTime;
  3539. private System.Windows.Forms.Label label4;
  3540. private System.Windows.Forms.DateTimePicker RegStartTime;
  3541. private System.Windows.Forms.CheckBox chkTim;
  3542. private Infragistics.Win.UltraWinEditors.UltraTextEditor uteCarNo;
  3543. private System.Windows.Forms.Label label6;
  3544. private System.Windows.Forms.Label label8;
  3545. public Infragistics.Win.UltraWinEditors.UltraComboEditor uceQueryCarType;
  3546. private System.Windows.Forms.Label label9;
  3547. private Infragistics.Win.UltraWinEditors.UltraTextEditor uteOrder;
  3548. private System.Windows.Forms.Label label10;
  3549. private Infragistics.Win.UltraWinEditors.UltraTextEditor uteShippersName;
  3550. private System.Windows.Forms.Label label11;
  3551. private Infragistics.Win.UltraWinEditors.UltraTextEditor uteReceiveName;
  3552. private Infragistics.Win.Misc.UltraPanel upQueryTop;
  3553. private Infragistics.Win.Misc.UltraPanel ultraPanel3;
  3554. private System.Windows.Forms.Label label12;
  3555. private Infragistics.Win.UltraWinEditors.UltraTextEditor uteMemo;
  3556. private Infragistics.Win.Misc.UltraPanel ultraPanel23;
  3557. public Infragistics.Win.UltraWinEditors.UltraComboEditor uceVlid;
  3558. private Infragistics.Win.UltraWinGrid.UltraGrid ugData;
  3559. private Infragistics.Win.Misc.UltraButton btnDelete;
  3560. private Infragistics.Win.Misc.UltraButton utbDelete2;
  3561. private Infragistics.Win.Misc.UltraButton utbPrint;
  3562. private Infragistics.Win.Misc.UltraButton utbPrintSingle;
  3563. private System.Windows.Forms.BindingSource QueryBS;
  3564. private System.Windows.Forms.ComboBox cboNo;
  3565. private System.Windows.Forms.BindingSource cmmWeightRecordEntityBindingSource;
  3566. public Infragistics.Win.UltraWinEditors.UltraTextEditor delete;
  3567. private Infragistics.Win.Misc.UltraButton utnUpdate;
  3568. private Infragistics.Win.Misc.UltraPanel ultraPanel20;
  3569. private Infragistics.Win.Misc.UltraButton unExcel;
  3570. private SuggestText txtCar2;
  3571. private System.Windows.Forms.SplitContainer splitContainer2;
  3572. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl20;
  3573. private MatInfo matInfo17;
  3574. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl24;
  3575. private MatInfo matInfo18;
  3576. private Infragistics.Win.Misc.UltraButton utbExport;
  3577. private Infragistics.Win.Misc.UltraPanel ultraPanel4;
  3578. private Infragistics.Win.Misc.UltraButton utbExport2;
  3579. private System.Windows.Forms.ComboBox cboPoundList;
  3580. private System.Windows.Forms.Label label13;
  3581. private System.Windows.Forms.ComboBox cbxCar1;
  3582. private System.Windows.Forms.Label label3;
  3583. public Infragistics.Win.UltraWinEditors.UltraTextEditor uteEdit;
  3584. private System.Windows.Forms.Label label7;
  3585. private Infragistics.Win.UltraWinEditors.UltraTextEditor utePound;
  3586. private System.Windows.Forms.Panel panel2;
  3587. private Infragistics.Win.Misc.UltraButton utnQuery;
  3588. private Infragistics.Win.Misc.UltraButton utbReset;
  3589. private Infragistics.Win.UltraWinEditors.UltraTextEditor uteJudgeStoveNo;
  3590. private System.Windows.Forms.Label label14;
  3591. private System.Windows.Forms.Panel panel1;
  3592. private System.Windows.Forms.Label lblCount;
  3593. private Infragistics.Win.Misc.UltraButton utbSelect;
  3594. public Infragistics.Win.UltraWinEditors.UltraTextEditor uteChangeType;
  3595. public Infragistics.Win.UltraWinEditors.UltraComboEditor uceType2;
  3596. private Infragistics.Win.Misc.UltraButton utbSave;
  3597. private Infragistics.Win.Misc.UltraButton utbSelect2;
  3598. private Infragistics.Win.Misc.UltraButton btnSetting;
  3599. private System.Windows.Forms.Label lblMsg;
  3600. private System.Windows.Forms.Label lblStatus;
  3601. private Infragistics.Win.Misc.UltraButton ultraButton2;
  3602. }
  3603. }