frmMainBF.Designer.cs 166 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108
  1. namespace StorageMeterSystem
  2. {
  3. partial class frmMainBF
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("计量实绩", -1);
  30. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("actualNo");
  31. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("predictionNo");
  32. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("noticeNo");
  33. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("carNo");
  34. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("trailerNo");
  35. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("matterNo");
  36. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("matterName");
  37. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("contractNo");
  38. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("batchNo");
  39. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("customerSupplierNo");
  40. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("customerSupplierName");
  41. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("forwardingUnitNo");
  42. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("forwardingUnitName");
  43. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("receivingUintNo");
  44. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("receivingUintName");
  45. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("materialNo");
  46. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("materialName");
  47. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("specNo");
  48. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("specName");
  49. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("loadPointNo");
  50. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("loadPointName");
  51. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("sampleNo");
  52. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("sampleVoucher");
  53. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("carrierUnitNo");
  54. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("carrierUnitName");
  55. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("meterTypeNo");
  56. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("meterTypeName");
  57. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("meterProcessNo");
  58. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("meterProcessEditionNo");
  59. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("actualFirst1No");
  60. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossWeight");
  61. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossManNo");
  62. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossManName");
  63. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossTime");
  64. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpot1No");
  65. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpot1Name");
  66. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossClass");
  67. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossGroup");
  68. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossMode");
  69. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netClass");
  70. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("actualFirst2No");
  71. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareWeight");
  72. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareManNo");
  73. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareManName");
  74. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareTime");
  75. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpot2No");
  76. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpot2Name");
  77. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareClass");
  78. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareGroup");
  79. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareMode");
  80. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netWeight");
  81. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("meterNum");
  82. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netManNo");
  83. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netManName");
  84. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netTime");
  85. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netSpot3No");
  86. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netSpot3Name");
  87. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netGroup");
  88. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netMode");
  89. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("valueFlag");
  90. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("uploadFlag");
  91. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("checkManNo");
  92. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("checkManName");
  93. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("checkTime");
  94. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("uploadManNo");
  95. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("uploadManName");
  96. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("uploadTime");
  97. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("addWeight");
  98. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  99. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  100. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  101. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("校秤记录", -1);
  102. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn69 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationMainNo");
  103. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn70 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotNo");
  104. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotName");
  105. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("spotTypeNo");
  106. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("spotTypeName");
  107. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationNum");
  108. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn75 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationTypeNo");
  109. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn76 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationTypeName");
  110. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn77 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationActNum");
  111. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn78 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("valueFlag");
  112. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn79 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseContrastSpotNo");
  113. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn80 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseContrastSpotName");
  114. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn81 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSuccContSpotNo");
  115. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn82 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSuccConSpotName");
  116. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn83 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationMainTime");
  117. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn84 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Relation1");
  118. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Relation1", 0);
  119. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn85 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationBranchNo");
  120. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn86 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationMainNo");
  121. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn87 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotNo");
  122. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn88 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotName");
  123. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn89 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("spotTypeNo");
  124. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn90 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("spotTypeName");
  125. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn91 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationTypeNo");
  126. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn92 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationTypeName");
  127. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn93 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationWeight");
  128. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn94 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("valueFlag");
  129. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn95 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrContrastBranchNo");
  130. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn96 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createManNo");
  131. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn97 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createManName");
  132. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn98 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createTime");
  133. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  134. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  135. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  136. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  137. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  138. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  139. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  140. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  141. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  142. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  143. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  144. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("已接管计量点", -1);
  145. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn99 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotNo");
  146. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn100 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotName");
  147. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn101 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("validFlag");
  148. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  149. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  150. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  151. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  152. this.ultraGridSj = new Infragistics.Win.UltraWinGrid.UltraGrid();
  153. this.dataSet2 = new System.Data.DataSet();
  154. this.dataTable1 = new System.Data.DataTable();
  155. this.dataColumn1 = new System.Data.DataColumn();
  156. this.dataColumn2 = new System.Data.DataColumn();
  157. this.dataColumn3 = new System.Data.DataColumn();
  158. this.dataColumn4 = new System.Data.DataColumn();
  159. this.dataColumn5 = new System.Data.DataColumn();
  160. this.dataColumn6 = new System.Data.DataColumn();
  161. this.dataColumn7 = new System.Data.DataColumn();
  162. this.dataColumn8 = new System.Data.DataColumn();
  163. this.dataColumn9 = new System.Data.DataColumn();
  164. this.dataColumn10 = new System.Data.DataColumn();
  165. this.dataColumn11 = new System.Data.DataColumn();
  166. this.dataColumn12 = new System.Data.DataColumn();
  167. this.dataColumn13 = new System.Data.DataColumn();
  168. this.dataColumn14 = new System.Data.DataColumn();
  169. this.dataColumn15 = new System.Data.DataColumn();
  170. this.dataColumn16 = new System.Data.DataColumn();
  171. this.dataColumn17 = new System.Data.DataColumn();
  172. this.dataColumn18 = new System.Data.DataColumn();
  173. this.dataColumn19 = new System.Data.DataColumn();
  174. this.dataColumn20 = new System.Data.DataColumn();
  175. this.dataColumn21 = new System.Data.DataColumn();
  176. this.dataColumn22 = new System.Data.DataColumn();
  177. this.dataColumn23 = new System.Data.DataColumn();
  178. this.dataColumn24 = new System.Data.DataColumn();
  179. this.dataColumn25 = new System.Data.DataColumn();
  180. this.dataColumn26 = new System.Data.DataColumn();
  181. this.dataColumn27 = new System.Data.DataColumn();
  182. this.dataColumn28 = new System.Data.DataColumn();
  183. this.dataColumn29 = new System.Data.DataColumn();
  184. this.dataColumn30 = new System.Data.DataColumn();
  185. this.dataColumn31 = new System.Data.DataColumn();
  186. this.dataColumn32 = new System.Data.DataColumn();
  187. this.dataColumn33 = new System.Data.DataColumn();
  188. this.dataColumn34 = new System.Data.DataColumn();
  189. this.dataColumn35 = new System.Data.DataColumn();
  190. this.dataColumn36 = new System.Data.DataColumn();
  191. this.dataColumn37 = new System.Data.DataColumn();
  192. this.dataColumn38 = new System.Data.DataColumn();
  193. this.dataColumn39 = new System.Data.DataColumn();
  194. this.dataColumn40 = new System.Data.DataColumn();
  195. this.dataColumn41 = new System.Data.DataColumn();
  196. this.dataColumn42 = new System.Data.DataColumn();
  197. this.dataColumn43 = new System.Data.DataColumn();
  198. this.dataColumn44 = new System.Data.DataColumn();
  199. this.dataColumn45 = new System.Data.DataColumn();
  200. this.dataColumn46 = new System.Data.DataColumn();
  201. this.dataColumn47 = new System.Data.DataColumn();
  202. this.dataColumn48 = new System.Data.DataColumn();
  203. this.dataColumn49 = new System.Data.DataColumn();
  204. this.dataColumn50 = new System.Data.DataColumn();
  205. this.dataColumn51 = new System.Data.DataColumn();
  206. this.dataColumn52 = new System.Data.DataColumn();
  207. this.dataColumn53 = new System.Data.DataColumn();
  208. this.dataColumn54 = new System.Data.DataColumn();
  209. this.dataColumn55 = new System.Data.DataColumn();
  210. this.dataColumn56 = new System.Data.DataColumn();
  211. this.dataColumn57 = new System.Data.DataColumn();
  212. this.dataColumn58 = new System.Data.DataColumn();
  213. this.dataColumn59 = new System.Data.DataColumn();
  214. this.dataColumn60 = new System.Data.DataColumn();
  215. this.dataColumn61 = new System.Data.DataColumn();
  216. this.dataColumn62 = new System.Data.DataColumn();
  217. this.dataColumn63 = new System.Data.DataColumn();
  218. this.dataColumn64 = new System.Data.DataColumn();
  219. this.dataColumn65 = new System.Data.DataColumn();
  220. this.dataColumn66 = new System.Data.DataColumn();
  221. this.dataColumn67 = new System.Data.DataColumn();
  222. this.dataColumn68 = new System.Data.DataColumn();
  223. this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  224. this.ultraGridJl = new Infragistics.Win.UltraWinGrid.UltraGrid();
  225. this.dataSet1 = new System.Data.DataSet();
  226. this.dtCalibration = new System.Data.DataTable();
  227. this.dataColumn126 = new System.Data.DataColumn();
  228. this.dataColumn127 = new System.Data.DataColumn();
  229. this.dataColumn128 = new System.Data.DataColumn();
  230. this.dataColumn129 = new System.Data.DataColumn();
  231. this.dataColumn130 = new System.Data.DataColumn();
  232. this.dataColumn131 = new System.Data.DataColumn();
  233. this.dataColumn132 = new System.Data.DataColumn();
  234. this.dataColumn133 = new System.Data.DataColumn();
  235. this.dataColumn134 = new System.Data.DataColumn();
  236. this.dataColumn135 = new System.Data.DataColumn();
  237. this.dataColumn136 = new System.Data.DataColumn();
  238. this.dataColumn137 = new System.Data.DataColumn();
  239. this.dataColumn138 = new System.Data.DataColumn();
  240. this.dataColumn139 = new System.Data.DataColumn();
  241. this.dataColumn140 = new System.Data.DataColumn();
  242. this.dtJGPointInfo = new System.Data.DataTable();
  243. this.dataColumn155 = new System.Data.DataColumn();
  244. this.dataColumn156 = new System.Data.DataColumn();
  245. this.dataColumn157 = new System.Data.DataColumn();
  246. this.dtBranch = new System.Data.DataTable();
  247. this.dataColumn141 = new System.Data.DataColumn();
  248. this.dataColumn142 = new System.Data.DataColumn();
  249. this.dataColumn143 = new System.Data.DataColumn();
  250. this.dataColumn144 = new System.Data.DataColumn();
  251. this.dataColumn145 = new System.Data.DataColumn();
  252. this.dataColumn146 = new System.Data.DataColumn();
  253. this.dataColumn147 = new System.Data.DataColumn();
  254. this.dataColumn148 = new System.Data.DataColumn();
  255. this.dataColumn149 = new System.Data.DataColumn();
  256. this.dataColumn150 = new System.Data.DataColumn();
  257. this.dataColumn151 = new System.Data.DataColumn();
  258. this.dataColumn152 = new System.Data.DataColumn();
  259. this.dataColumn153 = new System.Data.DataColumn();
  260. this.dataColumn154 = new System.Data.DataColumn();
  261. this.dtPreTrackScale = new System.Data.DataTable();
  262. this.dataColumn70 = new System.Data.DataColumn();
  263. this.dataColumn71 = new System.Data.DataColumn();
  264. this.dataColumn72 = new System.Data.DataColumn();
  265. this.dataColumn73 = new System.Data.DataColumn();
  266. this.dataColumn74 = new System.Data.DataColumn();
  267. this.dataColumn75 = new System.Data.DataColumn();
  268. this.dataColumn76 = new System.Data.DataColumn();
  269. this.dataColumn77 = new System.Data.DataColumn();
  270. this.dataColumn78 = new System.Data.DataColumn();
  271. this.dataColumn79 = new System.Data.DataColumn();
  272. this.dataColumn80 = new System.Data.DataColumn();
  273. this.dataColumn81 = new System.Data.DataColumn();
  274. this.dataColumn82 = new System.Data.DataColumn();
  275. this.dataColumn83 = new System.Data.DataColumn();
  276. this.dataColumn84 = new System.Data.DataColumn();
  277. this.dataColumn85 = new System.Data.DataColumn();
  278. this.dataColumn86 = new System.Data.DataColumn();
  279. this.dataColumn87 = new System.Data.DataColumn();
  280. this.dataColumn88 = new System.Data.DataColumn();
  281. this.dataColumn89 = new System.Data.DataColumn();
  282. this.dataColumn90 = new System.Data.DataColumn();
  283. this.dataColumn91 = new System.Data.DataColumn();
  284. this.dataColumn92 = new System.Data.DataColumn();
  285. this.dataColumn93 = new System.Data.DataColumn();
  286. this.dataColumn94 = new System.Data.DataColumn();
  287. this.dataColumn95 = new System.Data.DataColumn();
  288. this.dataColumn96 = new System.Data.DataColumn();
  289. this.dataColumn97 = new System.Data.DataColumn();
  290. this.dataColumn98 = new System.Data.DataColumn();
  291. this.dataColumn99 = new System.Data.DataColumn();
  292. this.dataColumn100 = new System.Data.DataColumn();
  293. this.dataColumn101 = new System.Data.DataColumn();
  294. this.dataColumn102 = new System.Data.DataColumn();
  295. this.dataColumn103 = new System.Data.DataColumn();
  296. this.dataColumn104 = new System.Data.DataColumn();
  297. this.dataColumn105 = new System.Data.DataColumn();
  298. this.dataColumn106 = new System.Data.DataColumn();
  299. this.dataColumn107 = new System.Data.DataColumn();
  300. this.dataColumn108 = new System.Data.DataColumn();
  301. this.dataColumn109 = new System.Data.DataColumn();
  302. this.dataColumn110 = new System.Data.DataColumn();
  303. this.dataColumn111 = new System.Data.DataColumn();
  304. this.dataColumn112 = new System.Data.DataColumn();
  305. this.dataColumn113 = new System.Data.DataColumn();
  306. this.dataColumn114 = new System.Data.DataColumn();
  307. this.dataColumn115 = new System.Data.DataColumn();
  308. this.dataColumn116 = new System.Data.DataColumn();
  309. this.dataColumn117 = new System.Data.DataColumn();
  310. this.dataColumn118 = new System.Data.DataColumn();
  311. this.dataColumn119 = new System.Data.DataColumn();
  312. this.dataColumn120 = new System.Data.DataColumn();
  313. this.dataColumn121 = new System.Data.DataColumn();
  314. this.dataColumn122 = new System.Data.DataColumn();
  315. this.dataColumn123 = new System.Data.DataColumn();
  316. this.dataColumn124 = new System.Data.DataColumn();
  317. this.dataColumn125 = new System.Data.DataColumn();
  318. this.dataColumn158 = new System.Data.DataColumn();
  319. this.dataColumn159 = new System.Data.DataColumn();
  320. this.dataColumn69 = new System.Data.DataColumn();
  321. this.timer1 = new System.Windows.Forms.Timer(this.components);
  322. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  323. this.panel3 = new System.Windows.Forms.Panel();
  324. this.uTab = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  325. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  326. this.panel14 = new System.Windows.Forms.Panel();
  327. this.txtGrossWgt = new System.Windows.Forms.NumericUpDown();
  328. this.btnSave = new System.Windows.Forms.Button();
  329. this.btnCheckBalance = new System.Windows.Forms.Button();
  330. this.btnOpenVoice = new System.Windows.Forms.Button();
  331. this.panel11 = new System.Windows.Forms.Panel();
  332. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  333. this.txtBLOCK_NUM = new System.Windows.Forms.NumericUpDown();
  334. this.cmbStandard = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  335. this.cmbGrade = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  336. this.cmbMatterNo = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  337. this.label7 = new System.Windows.Forms.Label();
  338. this.label8 = new System.Windows.Forms.Label();
  339. this.label9 = new System.Windows.Forms.Label();
  340. this.label10 = new System.Windows.Forms.Label();
  341. this.label11 = new System.Windows.Forms.Label();
  342. this.label12 = new System.Windows.Forms.Label();
  343. this.label13 = new System.Windows.Forms.Label();
  344. this.label14 = new System.Windows.Forms.Label();
  345. this.txtSEAL_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  346. this.txtPACKAGE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  347. this.txtBATCH_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  348. this.label15 = new System.Windows.Forms.Label();
  349. this.txtBUCKET_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  350. this.txtCOMBIN_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  351. this.label16 = new System.Windows.Forms.Label();
  352. this.label17 = new System.Windows.Forms.Label();
  353. this.txtMEMO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  354. this.txtPRODUCT_DATE = new System.Windows.Forms.DateTimePicker();
  355. this.panel10 = new System.Windows.Forms.Panel();
  356. this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
  357. this.txtPageNum = new System.Windows.Forms.NumericUpDown();
  358. this.btnPage = new System.Windows.Forms.Button();
  359. this.label3 = new System.Windows.Forms.Label();
  360. this.txtGroess = new System.Windows.Forms.TextBox();
  361. this.label4 = new System.Windows.Forms.Label();
  362. this.panel5 = new System.Windows.Forms.Panel();
  363. this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
  364. this.ucStorageWeightKg2 = new MeterModuleLibrary.ucStorageWeightKg();
  365. this.ucStorageWeightKg1 = new MeterModuleLibrary.ucStorageWeightKg();
  366. this.panel1 = new System.Windows.Forms.Panel();
  367. this.panel2 = new System.Windows.Forms.Panel();
  368. this.groupBox2 = new System.Windows.Forms.GroupBox();
  369. this.txtMsgInfo = new System.Windows.Forms.TextBox();
  370. this.panel16 = new System.Windows.Forms.Panel();
  371. this.panel20 = new System.Windows.Forms.Panel();
  372. this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
  373. this.txtTARE_WEIGHT = new System.Windows.Forms.NumericUpDown();
  374. this.label21 = new System.Windows.Forms.Label();
  375. this.panel15 = new System.Windows.Forms.Panel();
  376. this.btnGQ = new System.Windows.Forms.Button();
  377. this.btnStart = new System.Windows.Forms.Button();
  378. this.groupBox1 = new System.Windows.Forms.GroupBox();
  379. this.ultraGridPW = new Infragistics.Win.UltraWinGrid.UltraGrid();
  380. this.plImgShow = new System.Windows.Forms.Panel();
  381. this.pictureShow = new System.Windows.Forms.PictureBox();
  382. this.ultraTabPageControl1.SuspendLayout();
  383. ((System.ComponentModel.ISupportInitialize)(this.ultraGridSj)).BeginInit();
  384. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
  385. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  386. this.ultraTabPageControl3.SuspendLayout();
  387. ((System.ComponentModel.ISupportInitialize)(this.ultraGridJl)).BeginInit();
  388. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  389. ((System.ComponentModel.ISupportInitialize)(this.dtCalibration)).BeginInit();
  390. ((System.ComponentModel.ISupportInitialize)(this.dtJGPointInfo)).BeginInit();
  391. ((System.ComponentModel.ISupportInitialize)(this.dtBranch)).BeginInit();
  392. ((System.ComponentModel.ISupportInitialize)(this.dtPreTrackScale)).BeginInit();
  393. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  394. this.ultraGroupBox1.SuspendLayout();
  395. this.panel3.SuspendLayout();
  396. ((System.ComponentModel.ISupportInitialize)(this.uTab)).BeginInit();
  397. this.uTab.SuspendLayout();
  398. this.panel14.SuspendLayout();
  399. ((System.ComponentModel.ISupportInitialize)(this.txtGrossWgt)).BeginInit();
  400. this.panel11.SuspendLayout();
  401. this.tableLayoutPanel1.SuspendLayout();
  402. ((System.ComponentModel.ISupportInitialize)(this.txtBLOCK_NUM)).BeginInit();
  403. ((System.ComponentModel.ISupportInitialize)(this.cmbStandard)).BeginInit();
  404. ((System.ComponentModel.ISupportInitialize)(this.cmbGrade)).BeginInit();
  405. ((System.ComponentModel.ISupportInitialize)(this.cmbMatterNo)).BeginInit();
  406. ((System.ComponentModel.ISupportInitialize)(this.txtSEAL_NO)).BeginInit();
  407. ((System.ComponentModel.ISupportInitialize)(this.txtPACKAGE_NO)).BeginInit();
  408. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_NO)).BeginInit();
  409. ((System.ComponentModel.ISupportInitialize)(this.txtBUCKET_NO)).BeginInit();
  410. ((System.ComponentModel.ISupportInitialize)(this.txtCOMBIN_NO)).BeginInit();
  411. ((System.ComponentModel.ISupportInitialize)(this.txtMEMO)).BeginInit();
  412. this.panel10.SuspendLayout();
  413. this.tableLayoutPanel3.SuspendLayout();
  414. ((System.ComponentModel.ISupportInitialize)(this.txtPageNum)).BeginInit();
  415. this.panel5.SuspendLayout();
  416. this.tableLayoutPanel2.SuspendLayout();
  417. this.panel2.SuspendLayout();
  418. this.groupBox2.SuspendLayout();
  419. this.panel16.SuspendLayout();
  420. this.panel20.SuspendLayout();
  421. this.tableLayoutPanel4.SuspendLayout();
  422. ((System.ComponentModel.ISupportInitialize)(this.txtTARE_WEIGHT)).BeginInit();
  423. this.panel15.SuspendLayout();
  424. this.groupBox1.SuspendLayout();
  425. ((System.ComponentModel.ISupportInitialize)(this.ultraGridPW)).BeginInit();
  426. this.plImgShow.SuspendLayout();
  427. ((System.ComponentModel.ISupportInitialize)(this.pictureShow)).BeginInit();
  428. this.SuspendLayout();
  429. //
  430. // ultraTabPageControl1
  431. //
  432. this.ultraTabPageControl1.Controls.Add(this.ultraGridSj);
  433. this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 25);
  434. this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(2);
  435. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  436. this.ultraTabPageControl1.Size = new System.Drawing.Size(749, 450);
  437. //
  438. // ultraGridSj
  439. //
  440. this.ultraGridSj.DataMember = "计量实绩";
  441. this.ultraGridSj.DataSource = this.dataSet2;
  442. ultraGridColumn1.Header.VisiblePosition = 0;
  443. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
  444. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  445. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
  446. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
  447. ultraGridColumn2.Header.VisiblePosition = 1;
  448. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 4;
  449. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  450. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
  451. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
  452. ultraGridColumn3.Header.VisiblePosition = 2;
  453. ultraGridColumn3.Hidden = true;
  454. ultraGridColumn4.Header.VisiblePosition = 3;
  455. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 0;
  456. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  457. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
  458. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
  459. ultraGridColumn5.Header.VisiblePosition = 4;
  460. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 2;
  461. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  462. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
  463. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
  464. ultraGridColumn6.Header.VisiblePosition = 5;
  465. ultraGridColumn6.Hidden = true;
  466. ultraGridColumn7.Header.VisiblePosition = 6;
  467. ultraGridColumn7.RowLayoutColumnInfo.OriginX = 6;
  468. ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
  469. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
  470. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
  471. ultraGridColumn8.Header.VisiblePosition = 7;
  472. ultraGridColumn8.Hidden = true;
  473. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 8;
  474. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  475. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
  476. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
  477. ultraGridColumn9.Header.VisiblePosition = 8;
  478. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 8;
  479. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  480. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
  481. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
  482. ultraGridColumn10.Header.VisiblePosition = 9;
  483. ultraGridColumn10.Hidden = true;
  484. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 12;
  485. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  486. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
  487. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
  488. ultraGridColumn11.Header.VisiblePosition = 10;
  489. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 10;
  490. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  491. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
  492. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
  493. ultraGridColumn12.Header.VisiblePosition = 11;
  494. ultraGridColumn12.Hidden = true;
  495. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 16;
  496. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  497. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
  498. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
  499. ultraGridColumn13.Header.VisiblePosition = 12;
  500. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 12;
  501. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  502. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
  503. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
  504. ultraGridColumn14.Header.VisiblePosition = 13;
  505. ultraGridColumn14.Hidden = true;
  506. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 20;
  507. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  508. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
  509. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
  510. ultraGridColumn15.Header.VisiblePosition = 14;
  511. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 14;
  512. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  513. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
  514. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
  515. ultraGridColumn16.Header.VisiblePosition = 15;
  516. ultraGridColumn16.Hidden = true;
  517. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 24;
  518. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  519. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
  520. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
  521. ultraGridColumn17.Header.VisiblePosition = 16;
  522. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 16;
  523. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  524. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
  525. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
  526. ultraGridColumn18.Header.VisiblePosition = 17;
  527. ultraGridColumn18.Hidden = true;
  528. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 28;
  529. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  530. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
  531. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 2;
  532. ultraGridColumn19.Header.VisiblePosition = 18;
  533. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 18;
  534. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  535. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
  536. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
  537. ultraGridColumn20.Header.VisiblePosition = 19;
  538. ultraGridColumn20.Hidden = true;
  539. ultraGridColumn20.RowLayoutColumnInfo.OriginX = 32;
  540. ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
  541. ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
  542. ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
  543. ultraGridColumn21.Header.VisiblePosition = 20;
  544. ultraGridColumn21.Hidden = true;
  545. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 34;
  546. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  547. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
  548. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
  549. ultraGridColumn22.Header.VisiblePosition = 21;
  550. ultraGridColumn22.Hidden = true;
  551. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 36;
  552. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  553. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
  554. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
  555. ultraGridColumn23.Header.VisiblePosition = 22;
  556. ultraGridColumn23.Hidden = true;
  557. ultraGridColumn23.RowLayoutColumnInfo.OriginX = 38;
  558. ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
  559. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
  560. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
  561. ultraGridColumn24.Header.VisiblePosition = 23;
  562. ultraGridColumn24.Hidden = true;
  563. ultraGridColumn24.RowLayoutColumnInfo.OriginX = 40;
  564. ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
  565. ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
  566. ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
  567. ultraGridColumn25.Header.VisiblePosition = 24;
  568. ultraGridColumn25.Hidden = true;
  569. ultraGridColumn25.RowLayoutColumnInfo.OriginX = 42;
  570. ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
  571. ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
  572. ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
  573. ultraGridColumn26.Header.VisiblePosition = 25;
  574. ultraGridColumn26.Hidden = true;
  575. ultraGridColumn26.RowLayoutColumnInfo.OriginX = 44;
  576. ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
  577. ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
  578. ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
  579. ultraGridColumn27.Header.VisiblePosition = 26;
  580. ultraGridColumn27.Hidden = true;
  581. ultraGridColumn27.RowLayoutColumnInfo.OriginX = 46;
  582. ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
  583. ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
  584. ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
  585. ultraGridColumn28.Header.VisiblePosition = 27;
  586. ultraGridColumn28.Hidden = true;
  587. ultraGridColumn28.RowLayoutColumnInfo.OriginX = 48;
  588. ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
  589. ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
  590. ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
  591. ultraGridColumn29.Header.VisiblePosition = 28;
  592. ultraGridColumn29.Hidden = true;
  593. ultraGridColumn30.Header.VisiblePosition = 29;
  594. ultraGridColumn30.Hidden = true;
  595. ultraGridColumn31.Header.VisiblePosition = 30;
  596. ultraGridColumn31.RowLayoutColumnInfo.OriginX = 20;
  597. ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
  598. ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
  599. ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
  600. ultraGridColumn32.Header.VisiblePosition = 31;
  601. ultraGridColumn32.Hidden = true;
  602. ultraGridColumn33.Header.VisiblePosition = 32;
  603. ultraGridColumn33.Hidden = true;
  604. ultraGridColumn34.Header.VisiblePosition = 33;
  605. ultraGridColumn34.Hidden = true;
  606. ultraGridColumn35.Header.VisiblePosition = 34;
  607. ultraGridColumn35.Hidden = true;
  608. ultraGridColumn36.Header.VisiblePosition = 35;
  609. ultraGridColumn36.Hidden = true;
  610. ultraGridColumn37.Header.VisiblePosition = 36;
  611. ultraGridColumn37.Hidden = true;
  612. ultraGridColumn38.Header.VisiblePosition = 37;
  613. ultraGridColumn38.Hidden = true;
  614. ultraGridColumn39.Header.VisiblePosition = 38;
  615. ultraGridColumn39.Hidden = true;
  616. ultraGridColumn40.Header.VisiblePosition = 39;
  617. ultraGridColumn40.Hidden = true;
  618. ultraGridColumn41.Header.VisiblePosition = 40;
  619. ultraGridColumn41.Hidden = true;
  620. ultraGridColumn42.Header.VisiblePosition = 41;
  621. ultraGridColumn42.RowLayoutColumnInfo.OriginX = 22;
  622. ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
  623. ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
  624. ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
  625. ultraGridColumn43.Header.VisiblePosition = 42;
  626. ultraGridColumn43.Hidden = true;
  627. ultraGridColumn44.Header.VisiblePosition = 43;
  628. ultraGridColumn44.Hidden = true;
  629. ultraGridColumn45.Header.VisiblePosition = 44;
  630. ultraGridColumn45.Hidden = true;
  631. ultraGridColumn46.Header.VisiblePosition = 45;
  632. ultraGridColumn46.Hidden = true;
  633. ultraGridColumn47.Header.VisiblePosition = 46;
  634. ultraGridColumn47.Hidden = true;
  635. ultraGridColumn48.Header.VisiblePosition = 47;
  636. ultraGridColumn48.Hidden = true;
  637. ultraGridColumn49.Header.VisiblePosition = 48;
  638. ultraGridColumn49.Hidden = true;
  639. ultraGridColumn50.Header.VisiblePosition = 49;
  640. ultraGridColumn50.Hidden = true;
  641. ultraGridColumn51.Header.VisiblePosition = 50;
  642. ultraGridColumn51.RowLayoutColumnInfo.OriginX = 24;
  643. ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
  644. ultraGridColumn51.RowLayoutColumnInfo.SpanX = 2;
  645. ultraGridColumn51.RowLayoutColumnInfo.SpanY = 2;
  646. ultraGridColumn52.Header.VisiblePosition = 51;
  647. ultraGridColumn52.Hidden = true;
  648. ultraGridColumn53.Header.VisiblePosition = 52;
  649. ultraGridColumn53.Hidden = true;
  650. ultraGridColumn54.Header.VisiblePosition = 53;
  651. ultraGridColumn54.Hidden = true;
  652. ultraGridColumn55.Header.VisiblePosition = 54;
  653. ultraGridColumn55.Hidden = true;
  654. ultraGridColumn56.Header.VisiblePosition = 55;
  655. ultraGridColumn56.Hidden = true;
  656. ultraGridColumn57.Header.VisiblePosition = 56;
  657. ultraGridColumn57.Hidden = true;
  658. ultraGridColumn58.Header.VisiblePosition = 57;
  659. ultraGridColumn58.Hidden = true;
  660. ultraGridColumn59.Header.VisiblePosition = 58;
  661. ultraGridColumn59.Hidden = true;
  662. ultraGridColumn60.Header.VisiblePosition = 59;
  663. ultraGridColumn60.Hidden = true;
  664. ultraGridColumn61.Header.VisiblePosition = 60;
  665. ultraGridColumn61.Hidden = true;
  666. ultraGridColumn62.Header.VisiblePosition = 61;
  667. ultraGridColumn62.Hidden = true;
  668. ultraGridColumn63.Header.VisiblePosition = 62;
  669. ultraGridColumn63.Hidden = true;
  670. ultraGridColumn64.Header.VisiblePosition = 63;
  671. ultraGridColumn64.Hidden = true;
  672. ultraGridColumn65.Header.VisiblePosition = 64;
  673. ultraGridColumn65.Hidden = true;
  674. ultraGridColumn66.Header.VisiblePosition = 65;
  675. ultraGridColumn66.Hidden = true;
  676. ultraGridColumn67.Header.VisiblePosition = 66;
  677. ultraGridColumn67.Hidden = true;
  678. ultraGridColumn68.Header.VisiblePosition = 67;
  679. ultraGridColumn68.RowLayoutColumnInfo.OriginX = 26;
  680. ultraGridColumn68.RowLayoutColumnInfo.OriginY = 0;
  681. ultraGridColumn68.RowLayoutColumnInfo.SpanX = 2;
  682. ultraGridColumn68.RowLayoutColumnInfo.SpanY = 2;
  683. ultraGridBand1.Columns.AddRange(new object[] {
  684. ultraGridColumn1,
  685. ultraGridColumn2,
  686. ultraGridColumn3,
  687. ultraGridColumn4,
  688. ultraGridColumn5,
  689. ultraGridColumn6,
  690. ultraGridColumn7,
  691. ultraGridColumn8,
  692. ultraGridColumn9,
  693. ultraGridColumn10,
  694. ultraGridColumn11,
  695. ultraGridColumn12,
  696. ultraGridColumn13,
  697. ultraGridColumn14,
  698. ultraGridColumn15,
  699. ultraGridColumn16,
  700. ultraGridColumn17,
  701. ultraGridColumn18,
  702. ultraGridColumn19,
  703. ultraGridColumn20,
  704. ultraGridColumn21,
  705. ultraGridColumn22,
  706. ultraGridColumn23,
  707. ultraGridColumn24,
  708. ultraGridColumn25,
  709. ultraGridColumn26,
  710. ultraGridColumn27,
  711. ultraGridColumn28,
  712. ultraGridColumn29,
  713. ultraGridColumn30,
  714. ultraGridColumn31,
  715. ultraGridColumn32,
  716. ultraGridColumn33,
  717. ultraGridColumn34,
  718. ultraGridColumn35,
  719. ultraGridColumn36,
  720. ultraGridColumn37,
  721. ultraGridColumn38,
  722. ultraGridColumn39,
  723. ultraGridColumn40,
  724. ultraGridColumn41,
  725. ultraGridColumn42,
  726. ultraGridColumn43,
  727. ultraGridColumn44,
  728. ultraGridColumn45,
  729. ultraGridColumn46,
  730. ultraGridColumn47,
  731. ultraGridColumn48,
  732. ultraGridColumn49,
  733. ultraGridColumn50,
  734. ultraGridColumn51,
  735. ultraGridColumn52,
  736. ultraGridColumn53,
  737. ultraGridColumn54,
  738. ultraGridColumn55,
  739. ultraGridColumn56,
  740. ultraGridColumn57,
  741. ultraGridColumn58,
  742. ultraGridColumn59,
  743. ultraGridColumn60,
  744. ultraGridColumn61,
  745. ultraGridColumn62,
  746. ultraGridColumn63,
  747. ultraGridColumn64,
  748. ultraGridColumn65,
  749. ultraGridColumn66,
  750. ultraGridColumn67,
  751. ultraGridColumn68});
  752. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
  753. this.ultraGridSj.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  754. this.ultraGridSj.DisplayLayout.DefaultSelectedBackColor = System.Drawing.Color.Empty;
  755. this.ultraGridSj.DisplayLayout.DefaultSelectedForeColor = System.Drawing.Color.Empty;
  756. this.ultraGridSj.DisplayLayout.Override.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Button3D;
  757. appearance13.TextVAlignAsString = "Middle";
  758. this.ultraGridSj.DisplayLayout.Override.CellAppearance = appearance13;
  759. this.ultraGridSj.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
  760. appearance14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
  761. appearance14.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
  762. this.ultraGridSj.DisplayLayout.Override.HeaderAppearance = appearance14;
  763. this.ultraGridSj.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  764. this.ultraGridSj.DisplayLayout.Override.MaxSelectedRows = 1;
  765. this.ultraGridSj.DisplayLayout.Override.MinRowHeight = 21;
  766. appearance15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
  767. appearance15.TextVAlignAsString = "Middle";
  768. this.ultraGridSj.DisplayLayout.Override.RowSelectorAppearance = appearance15;
  769. this.ultraGridSj.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  770. this.ultraGridSj.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
  771. this.ultraGridSj.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
  772. this.ultraGridSj.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
  773. this.ultraGridSj.Dock = System.Windows.Forms.DockStyle.Fill;
  774. this.ultraGridSj.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  775. this.ultraGridSj.Location = new System.Drawing.Point(0, 0);
  776. this.ultraGridSj.Name = "ultraGridSj";
  777. this.ultraGridSj.Size = new System.Drawing.Size(749, 450);
  778. this.ultraGridSj.TabIndex = 5;
  779. //
  780. // dataSet2
  781. //
  782. this.dataSet2.DataSetName = "NewDataSet";
  783. this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
  784. this.dataTable1});
  785. //
  786. // dataTable1
  787. //
  788. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  789. this.dataColumn1,
  790. this.dataColumn2,
  791. this.dataColumn3,
  792. this.dataColumn4,
  793. this.dataColumn5,
  794. this.dataColumn6,
  795. this.dataColumn7,
  796. this.dataColumn8,
  797. this.dataColumn9,
  798. this.dataColumn10,
  799. this.dataColumn11,
  800. this.dataColumn12,
  801. this.dataColumn13,
  802. this.dataColumn14,
  803. this.dataColumn15,
  804. this.dataColumn16,
  805. this.dataColumn17,
  806. this.dataColumn18,
  807. this.dataColumn19,
  808. this.dataColumn20,
  809. this.dataColumn21,
  810. this.dataColumn22,
  811. this.dataColumn23,
  812. this.dataColumn24,
  813. this.dataColumn25,
  814. this.dataColumn26,
  815. this.dataColumn27,
  816. this.dataColumn28,
  817. this.dataColumn29,
  818. this.dataColumn30,
  819. this.dataColumn31,
  820. this.dataColumn32,
  821. this.dataColumn33,
  822. this.dataColumn34,
  823. this.dataColumn35,
  824. this.dataColumn36,
  825. this.dataColumn37,
  826. this.dataColumn38,
  827. this.dataColumn39,
  828. this.dataColumn40,
  829. this.dataColumn41,
  830. this.dataColumn42,
  831. this.dataColumn43,
  832. this.dataColumn44,
  833. this.dataColumn45,
  834. this.dataColumn46,
  835. this.dataColumn47,
  836. this.dataColumn48,
  837. this.dataColumn49,
  838. this.dataColumn50,
  839. this.dataColumn51,
  840. this.dataColumn52,
  841. this.dataColumn53,
  842. this.dataColumn54,
  843. this.dataColumn55,
  844. this.dataColumn56,
  845. this.dataColumn57,
  846. this.dataColumn58,
  847. this.dataColumn59,
  848. this.dataColumn60,
  849. this.dataColumn61,
  850. this.dataColumn62,
  851. this.dataColumn63,
  852. this.dataColumn64,
  853. this.dataColumn65,
  854. this.dataColumn66,
  855. this.dataColumn67,
  856. this.dataColumn68});
  857. this.dataTable1.TableName = "计量实绩";
  858. //
  859. // dataColumn1
  860. //
  861. this.dataColumn1.Caption = "结净编号";
  862. this.dataColumn1.ColumnName = "actualNo";
  863. //
  864. // dataColumn2
  865. //
  866. this.dataColumn2.Caption = "预报编号";
  867. this.dataColumn2.ColumnName = "predictionNo";
  868. //
  869. // dataColumn3
  870. //
  871. this.dataColumn3.Caption = "通知单号";
  872. this.dataColumn3.ColumnName = "noticeNo";
  873. //
  874. // dataColumn4
  875. //
  876. this.dataColumn4.Caption = "车号";
  877. this.dataColumn4.ColumnName = "carNo";
  878. //
  879. // dataColumn5
  880. //
  881. this.dataColumn5.Caption = "挂号";
  882. this.dataColumn5.ColumnName = "trailerNo";
  883. //
  884. // dataColumn6
  885. //
  886. this.dataColumn6.Caption = "物料编号";
  887. this.dataColumn6.ColumnName = "matterNo";
  888. //
  889. // dataColumn7
  890. //
  891. this.dataColumn7.Caption = "物料名称";
  892. this.dataColumn7.ColumnName = "matterName";
  893. //
  894. // dataColumn8
  895. //
  896. this.dataColumn8.Caption = "合同号";
  897. this.dataColumn8.ColumnName = "contractNo";
  898. //
  899. // dataColumn9
  900. //
  901. this.dataColumn9.Caption = "批次号";
  902. this.dataColumn9.ColumnName = "batchNo";
  903. //
  904. // dataColumn10
  905. //
  906. this.dataColumn10.Caption = "供应商编号";
  907. this.dataColumn10.ColumnName = "customerSupplierNo";
  908. //
  909. // dataColumn11
  910. //
  911. this.dataColumn11.Caption = "供应商名称";
  912. this.dataColumn11.ColumnName = "customerSupplierName";
  913. //
  914. // dataColumn12
  915. //
  916. this.dataColumn12.Caption = "发货单位编号";
  917. this.dataColumn12.ColumnName = "forwardingUnitNo";
  918. //
  919. // dataColumn13
  920. //
  921. this.dataColumn13.Caption = "发货单位名称";
  922. this.dataColumn13.ColumnName = "forwardingUnitName";
  923. //
  924. // dataColumn14
  925. //
  926. this.dataColumn14.Caption = "收货单位编号";
  927. this.dataColumn14.ColumnName = "receivingUintNo";
  928. //
  929. // dataColumn15
  930. //
  931. this.dataColumn15.Caption = "收货单位名称";
  932. this.dataColumn15.ColumnName = "receivingUintName";
  933. //
  934. // dataColumn16
  935. //
  936. this.dataColumn16.Caption = "材质编号";
  937. this.dataColumn16.ColumnName = "materialNo";
  938. //
  939. // dataColumn17
  940. //
  941. this.dataColumn17.Caption = "材质名称";
  942. this.dataColumn17.ColumnName = "materialName";
  943. //
  944. // dataColumn18
  945. //
  946. this.dataColumn18.Caption = "规格编号";
  947. this.dataColumn18.ColumnName = "specNo";
  948. //
  949. // dataColumn19
  950. //
  951. this.dataColumn19.Caption = "规格名称";
  952. this.dataColumn19.ColumnName = "specName";
  953. //
  954. // dataColumn20
  955. //
  956. this.dataColumn20.Caption = "卸货地点编号";
  957. this.dataColumn20.ColumnName = "loadPointNo";
  958. //
  959. // dataColumn21
  960. //
  961. this.dataColumn21.Caption = "卸货地点名称";
  962. this.dataColumn21.ColumnName = "loadPointName";
  963. //
  964. // dataColumn22
  965. //
  966. this.dataColumn22.Caption = "取样编号";
  967. this.dataColumn22.ColumnName = "sampleNo";
  968. //
  969. // dataColumn23
  970. //
  971. this.dataColumn23.Caption = "取样凭证";
  972. this.dataColumn23.ColumnName = "sampleVoucher";
  973. //
  974. // dataColumn24
  975. //
  976. this.dataColumn24.Caption = "承运单位编号";
  977. this.dataColumn24.ColumnName = "carrierUnitNo";
  978. //
  979. // dataColumn25
  980. //
  981. this.dataColumn25.Caption = "承运单位名称";
  982. this.dataColumn25.ColumnName = "carrierUnitName";
  983. //
  984. // dataColumn26
  985. //
  986. this.dataColumn26.Caption = "计量类型编号";
  987. this.dataColumn26.ColumnName = "meterTypeNo";
  988. //
  989. // dataColumn27
  990. //
  991. this.dataColumn27.Caption = "计量类型名称";
  992. this.dataColumn27.ColumnName = "meterTypeName";
  993. //
  994. // dataColumn28
  995. //
  996. this.dataColumn28.Caption = "计量流程编号";
  997. this.dataColumn28.ColumnName = "meterProcessNo";
  998. //
  999. // dataColumn29
  1000. //
  1001. this.dataColumn29.Caption = "计量流程版本号";
  1002. this.dataColumn29.ColumnName = "meterProcessEditionNo";
  1003. //
  1004. // dataColumn30
  1005. //
  1006. this.dataColumn30.Caption = "毛重计量作业编号";
  1007. this.dataColumn30.ColumnName = "actualFirst1No";
  1008. //
  1009. // dataColumn31
  1010. //
  1011. this.dataColumn31.Caption = "毛重";
  1012. this.dataColumn31.ColumnName = "grossWeight";
  1013. //
  1014. // dataColumn32
  1015. //
  1016. this.dataColumn32.Caption = "毛重计量员编号";
  1017. this.dataColumn32.ColumnName = "grossManNo";
  1018. //
  1019. // dataColumn33
  1020. //
  1021. this.dataColumn33.Caption = "毛重计量员姓名";
  1022. this.dataColumn33.ColumnName = "grossManName";
  1023. //
  1024. // dataColumn34
  1025. //
  1026. this.dataColumn34.Caption = "毛重计量时间";
  1027. this.dataColumn34.ColumnName = "grossTime";
  1028. //
  1029. // dataColumn35
  1030. //
  1031. this.dataColumn35.Caption = "毛重计量点编号";
  1032. this.dataColumn35.ColumnName = "baseSpot1No";
  1033. //
  1034. // dataColumn36
  1035. //
  1036. this.dataColumn36.Caption = "毛重计量点名称";
  1037. this.dataColumn36.ColumnName = "baseSpot1Name";
  1038. //
  1039. // dataColumn37
  1040. //
  1041. this.dataColumn37.Caption = "毛重班次";
  1042. this.dataColumn37.ColumnName = "grossClass";
  1043. //
  1044. // dataColumn38
  1045. //
  1046. this.dataColumn38.Caption = "毛重班组";
  1047. this.dataColumn38.ColumnName = "grossGroup";
  1048. //
  1049. // dataColumn39
  1050. //
  1051. this.dataColumn39.Caption = "毛重计量方式";
  1052. this.dataColumn39.ColumnName = "grossMode";
  1053. //
  1054. // dataColumn40
  1055. //
  1056. this.dataColumn40.Caption = "净重班次";
  1057. this.dataColumn40.ColumnName = "netClass";
  1058. //
  1059. // dataColumn41
  1060. //
  1061. this.dataColumn41.Caption = "皮重计量作业编号";
  1062. this.dataColumn41.ColumnName = "actualFirst2No";
  1063. //
  1064. // dataColumn42
  1065. //
  1066. this.dataColumn42.Caption = "皮重";
  1067. this.dataColumn42.ColumnName = "tareWeight";
  1068. //
  1069. // dataColumn43
  1070. //
  1071. this.dataColumn43.Caption = "皮重计量员编号";
  1072. this.dataColumn43.ColumnName = "tareManNo";
  1073. //
  1074. // dataColumn44
  1075. //
  1076. this.dataColumn44.Caption = "皮重计量员姓名";
  1077. this.dataColumn44.ColumnName = "tareManName";
  1078. //
  1079. // dataColumn45
  1080. //
  1081. this.dataColumn45.Caption = "皮重计量时间";
  1082. this.dataColumn45.ColumnName = "tareTime";
  1083. //
  1084. // dataColumn46
  1085. //
  1086. this.dataColumn46.Caption = "皮重计量点编号";
  1087. this.dataColumn46.ColumnName = "baseSpot2No";
  1088. //
  1089. // dataColumn47
  1090. //
  1091. this.dataColumn47.Caption = "皮重计量点名称";
  1092. this.dataColumn47.ColumnName = "baseSpot2Name";
  1093. //
  1094. // dataColumn48
  1095. //
  1096. this.dataColumn48.Caption = "皮重班次";
  1097. this.dataColumn48.ColumnName = "tareClass";
  1098. //
  1099. // dataColumn49
  1100. //
  1101. this.dataColumn49.Caption = "皮重班组";
  1102. this.dataColumn49.ColumnName = "tareGroup";
  1103. //
  1104. // dataColumn50
  1105. //
  1106. this.dataColumn50.Caption = "皮重计量方式";
  1107. this.dataColumn50.ColumnName = "tareMode";
  1108. //
  1109. // dataColumn51
  1110. //
  1111. this.dataColumn51.Caption = "净重";
  1112. this.dataColumn51.ColumnName = "netWeight";
  1113. //
  1114. // dataColumn52
  1115. //
  1116. this.dataColumn52.Caption = "计量数量";
  1117. this.dataColumn52.ColumnName = "meterNum";
  1118. //
  1119. // dataColumn53
  1120. //
  1121. this.dataColumn53.Caption = "净重计量员编号";
  1122. this.dataColumn53.ColumnName = "netManNo";
  1123. //
  1124. // dataColumn54
  1125. //
  1126. this.dataColumn54.Caption = "净重计量员姓名";
  1127. this.dataColumn54.ColumnName = "netManName";
  1128. //
  1129. // dataColumn55
  1130. //
  1131. this.dataColumn55.Caption = "净重计量时间";
  1132. this.dataColumn55.ColumnName = "netTime";
  1133. //
  1134. // dataColumn56
  1135. //
  1136. this.dataColumn56.Caption = "净重计量点编号";
  1137. this.dataColumn56.ColumnName = "netSpot3No";
  1138. //
  1139. // dataColumn57
  1140. //
  1141. this.dataColumn57.Caption = "净重计量点名称";
  1142. this.dataColumn57.ColumnName = "netSpot3Name";
  1143. //
  1144. // dataColumn58
  1145. //
  1146. this.dataColumn58.Caption = "净重班组";
  1147. this.dataColumn58.ColumnName = "netGroup";
  1148. //
  1149. // dataColumn59
  1150. //
  1151. this.dataColumn59.Caption = "结净方式";
  1152. this.dataColumn59.ColumnName = "netMode";
  1153. //
  1154. // dataColumn60
  1155. //
  1156. this.dataColumn60.Caption = "状态";
  1157. this.dataColumn60.ColumnName = "valueFlag";
  1158. //
  1159. // dataColumn61
  1160. //
  1161. this.dataColumn61.Caption = "上传状态";
  1162. this.dataColumn61.ColumnName = "uploadFlag";
  1163. //
  1164. // dataColumn62
  1165. //
  1166. this.dataColumn62.Caption = "审核人编号";
  1167. this.dataColumn62.ColumnName = "checkManNo";
  1168. //
  1169. // dataColumn63
  1170. //
  1171. this.dataColumn63.Caption = "审核人姓名";
  1172. this.dataColumn63.ColumnName = "checkManName";
  1173. //
  1174. // dataColumn64
  1175. //
  1176. this.dataColumn64.Caption = "审核时间";
  1177. this.dataColumn64.ColumnName = "checkTime";
  1178. //
  1179. // dataColumn65
  1180. //
  1181. this.dataColumn65.Caption = "上传人编号";
  1182. this.dataColumn65.ColumnName = "uploadManNo";
  1183. //
  1184. // dataColumn66
  1185. //
  1186. this.dataColumn66.Caption = "上传人姓名";
  1187. this.dataColumn66.ColumnName = "uploadManName";
  1188. //
  1189. // dataColumn67
  1190. //
  1191. this.dataColumn67.Caption = "上传时间";
  1192. this.dataColumn67.ColumnName = "uploadTime";
  1193. //
  1194. // dataColumn68
  1195. //
  1196. this.dataColumn68.Caption = "附加重量";
  1197. this.dataColumn68.ColumnName = "addWeight";
  1198. //
  1199. // ultraTabPageControl3
  1200. //
  1201. this.ultraTabPageControl3.Controls.Add(this.ultraGridJl);
  1202. this.ultraTabPageControl3.Location = new System.Drawing.Point(-10000, -10000);
  1203. this.ultraTabPageControl3.Margin = new System.Windows.Forms.Padding(2);
  1204. this.ultraTabPageControl3.Name = "ultraTabPageControl3";
  1205. this.ultraTabPageControl3.Size = new System.Drawing.Size(749, 450);
  1206. //
  1207. // ultraGridJl
  1208. //
  1209. this.ultraGridJl.DataMember = "校秤记录";
  1210. this.ultraGridJl.DataSource = this.dataSet1;
  1211. ultraGridColumn69.Header.VisiblePosition = 0;
  1212. ultraGridColumn69.Hidden = true;
  1213. ultraGridColumn70.Header.VisiblePosition = 1;
  1214. ultraGridColumn70.Hidden = true;
  1215. ultraGridColumn71.Header.VisiblePosition = 2;
  1216. ultraGridColumn71.RowLayoutColumnInfo.OriginX = 0;
  1217. ultraGridColumn71.RowLayoutColumnInfo.OriginY = 0;
  1218. ultraGridColumn71.RowLayoutColumnInfo.SpanX = 2;
  1219. ultraGridColumn71.RowLayoutColumnInfo.SpanY = 2;
  1220. ultraGridColumn72.Header.VisiblePosition = 3;
  1221. ultraGridColumn72.Hidden = true;
  1222. ultraGridColumn73.Header.VisiblePosition = 4;
  1223. ultraGridColumn73.Hidden = true;
  1224. ultraGridColumn73.RowLayoutColumnInfo.OriginX = 2;
  1225. ultraGridColumn73.RowLayoutColumnInfo.OriginY = 0;
  1226. ultraGridColumn73.RowLayoutColumnInfo.SpanX = 2;
  1227. ultraGridColumn73.RowLayoutColumnInfo.SpanY = 2;
  1228. ultraGridColumn74.Header.VisiblePosition = 5;
  1229. ultraGridColumn74.RowLayoutColumnInfo.OriginX = 6;
  1230. ultraGridColumn74.RowLayoutColumnInfo.OriginY = 0;
  1231. ultraGridColumn74.RowLayoutColumnInfo.SpanX = 2;
  1232. ultraGridColumn74.RowLayoutColumnInfo.SpanY = 2;
  1233. ultraGridColumn75.Header.VisiblePosition = 6;
  1234. ultraGridColumn75.Hidden = true;
  1235. ultraGridColumn76.Header.VisiblePosition = 7;
  1236. ultraGridColumn76.RowLayoutColumnInfo.OriginX = 8;
  1237. ultraGridColumn76.RowLayoutColumnInfo.OriginY = 0;
  1238. ultraGridColumn76.RowLayoutColumnInfo.SpanX = 2;
  1239. ultraGridColumn76.RowLayoutColumnInfo.SpanY = 2;
  1240. ultraGridColumn77.Header.VisiblePosition = 8;
  1241. ultraGridColumn77.RowLayoutColumnInfo.OriginX = 10;
  1242. ultraGridColumn77.RowLayoutColumnInfo.OriginY = 0;
  1243. ultraGridColumn77.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(126, 0);
  1244. ultraGridColumn77.RowLayoutColumnInfo.SpanX = 2;
  1245. ultraGridColumn77.RowLayoutColumnInfo.SpanY = 2;
  1246. ultraGridColumn78.Header.VisiblePosition = 9;
  1247. ultraGridColumn78.RowLayoutColumnInfo.OriginX = 12;
  1248. ultraGridColumn78.RowLayoutColumnInfo.OriginY = 0;
  1249. ultraGridColumn78.RowLayoutColumnInfo.SpanX = 2;
  1250. ultraGridColumn78.RowLayoutColumnInfo.SpanY = 2;
  1251. ultraGridColumn79.Header.VisiblePosition = 10;
  1252. ultraGridColumn79.Hidden = true;
  1253. ultraGridColumn79.RowLayoutColumnInfo.OriginX = 13;
  1254. ultraGridColumn79.RowLayoutColumnInfo.OriginY = 0;
  1255. ultraGridColumn79.RowLayoutColumnInfo.SpanX = 2;
  1256. ultraGridColumn79.RowLayoutColumnInfo.SpanY = 2;
  1257. ultraGridColumn80.Header.VisiblePosition = 11;
  1258. ultraGridColumn80.RowLayoutColumnInfo.OriginX = 14;
  1259. ultraGridColumn80.RowLayoutColumnInfo.OriginY = 0;
  1260. ultraGridColumn80.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(126, 0);
  1261. ultraGridColumn80.RowLayoutColumnInfo.SpanX = 2;
  1262. ultraGridColumn80.RowLayoutColumnInfo.SpanY = 2;
  1263. ultraGridColumn81.Header.VisiblePosition = 12;
  1264. ultraGridColumn81.Hidden = true;
  1265. ultraGridColumn81.RowLayoutColumnInfo.OriginX = 16;
  1266. ultraGridColumn81.RowLayoutColumnInfo.OriginY = 0;
  1267. ultraGridColumn81.RowLayoutColumnInfo.SpanX = 2;
  1268. ultraGridColumn81.RowLayoutColumnInfo.SpanY = 2;
  1269. ultraGridColumn82.Header.VisiblePosition = 13;
  1270. ultraGridColumn82.RowLayoutColumnInfo.OriginX = 16;
  1271. ultraGridColumn82.RowLayoutColumnInfo.OriginY = 0;
  1272. ultraGridColumn82.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(126, 0);
  1273. ultraGridColumn82.RowLayoutColumnInfo.SpanX = 2;
  1274. ultraGridColumn82.RowLayoutColumnInfo.SpanY = 2;
  1275. ultraGridColumn83.Header.VisiblePosition = 14;
  1276. ultraGridColumn83.RowLayoutColumnInfo.OriginX = 4;
  1277. ultraGridColumn83.RowLayoutColumnInfo.OriginY = 0;
  1278. ultraGridColumn83.RowLayoutColumnInfo.SpanX = 2;
  1279. ultraGridColumn83.RowLayoutColumnInfo.SpanY = 2;
  1280. ultraGridColumn84.Header.VisiblePosition = 15;
  1281. ultraGridBand2.Columns.AddRange(new object[] {
  1282. ultraGridColumn69,
  1283. ultraGridColumn70,
  1284. ultraGridColumn71,
  1285. ultraGridColumn72,
  1286. ultraGridColumn73,
  1287. ultraGridColumn74,
  1288. ultraGridColumn75,
  1289. ultraGridColumn76,
  1290. ultraGridColumn77,
  1291. ultraGridColumn78,
  1292. ultraGridColumn79,
  1293. ultraGridColumn80,
  1294. ultraGridColumn81,
  1295. ultraGridColumn82,
  1296. ultraGridColumn83,
  1297. ultraGridColumn84});
  1298. ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
  1299. ultraGridColumn85.Header.VisiblePosition = 0;
  1300. ultraGridColumn85.RowLayoutColumnInfo.OriginX = 0;
  1301. ultraGridColumn85.RowLayoutColumnInfo.OriginY = 0;
  1302. ultraGridColumn85.RowLayoutColumnInfo.SpanX = 2;
  1303. ultraGridColumn85.RowLayoutColumnInfo.SpanY = 2;
  1304. ultraGridColumn86.Header.VisiblePosition = 1;
  1305. ultraGridColumn86.Hidden = true;
  1306. ultraGridColumn87.Header.VisiblePosition = 2;
  1307. ultraGridColumn87.Hidden = true;
  1308. ultraGridColumn88.Header.VisiblePosition = 3;
  1309. ultraGridColumn88.RowLayoutColumnInfo.OriginX = 2;
  1310. ultraGridColumn88.RowLayoutColumnInfo.OriginY = 0;
  1311. ultraGridColumn88.RowLayoutColumnInfo.SpanX = 2;
  1312. ultraGridColumn88.RowLayoutColumnInfo.SpanY = 2;
  1313. ultraGridColumn89.Header.VisiblePosition = 4;
  1314. ultraGridColumn89.Hidden = true;
  1315. ultraGridColumn90.Header.VisiblePosition = 5;
  1316. ultraGridColumn90.Hidden = true;
  1317. ultraGridColumn91.Header.VisiblePosition = 6;
  1318. ultraGridColumn91.Hidden = true;
  1319. ultraGridColumn92.Header.VisiblePosition = 7;
  1320. ultraGridColumn92.RowLayoutColumnInfo.OriginX = 4;
  1321. ultraGridColumn92.RowLayoutColumnInfo.OriginY = 0;
  1322. ultraGridColumn92.RowLayoutColumnInfo.SpanX = 2;
  1323. ultraGridColumn92.RowLayoutColumnInfo.SpanY = 2;
  1324. ultraGridColumn93.Header.VisiblePosition = 8;
  1325. ultraGridColumn93.RowLayoutColumnInfo.OriginX = 6;
  1326. ultraGridColumn93.RowLayoutColumnInfo.OriginY = 0;
  1327. ultraGridColumn93.RowLayoutColumnInfo.SpanX = 2;
  1328. ultraGridColumn93.RowLayoutColumnInfo.SpanY = 2;
  1329. ultraGridColumn94.Header.VisiblePosition = 9;
  1330. ultraGridColumn94.RowLayoutColumnInfo.OriginX = 12;
  1331. ultraGridColumn94.RowLayoutColumnInfo.OriginY = 0;
  1332. ultraGridColumn94.RowLayoutColumnInfo.SpanX = 2;
  1333. ultraGridColumn94.RowLayoutColumnInfo.SpanY = 2;
  1334. ultraGridColumn95.Header.VisiblePosition = 10;
  1335. ultraGridColumn95.Hidden = true;
  1336. ultraGridColumn95.RowLayoutColumnInfo.OriginX = 14;
  1337. ultraGridColumn95.RowLayoutColumnInfo.OriginY = 0;
  1338. ultraGridColumn95.RowLayoutColumnInfo.SpanX = 2;
  1339. ultraGridColumn95.RowLayoutColumnInfo.SpanY = 2;
  1340. ultraGridColumn96.Header.VisiblePosition = 11;
  1341. ultraGridColumn96.Hidden = true;
  1342. ultraGridColumn97.Header.VisiblePosition = 12;
  1343. ultraGridColumn97.RowLayoutColumnInfo.OriginX = 8;
  1344. ultraGridColumn97.RowLayoutColumnInfo.OriginY = 0;
  1345. ultraGridColumn97.RowLayoutColumnInfo.SpanX = 2;
  1346. ultraGridColumn97.RowLayoutColumnInfo.SpanY = 2;
  1347. ultraGridColumn98.Header.VisiblePosition = 13;
  1348. ultraGridColumn98.RowLayoutColumnInfo.OriginX = 10;
  1349. ultraGridColumn98.RowLayoutColumnInfo.OriginY = 0;
  1350. ultraGridColumn98.RowLayoutColumnInfo.SpanX = 2;
  1351. ultraGridColumn98.RowLayoutColumnInfo.SpanY = 2;
  1352. ultraGridBand3.Columns.AddRange(new object[] {
  1353. ultraGridColumn85,
  1354. ultraGridColumn86,
  1355. ultraGridColumn87,
  1356. ultraGridColumn88,
  1357. ultraGridColumn89,
  1358. ultraGridColumn90,
  1359. ultraGridColumn91,
  1360. ultraGridColumn92,
  1361. ultraGridColumn93,
  1362. ultraGridColumn94,
  1363. ultraGridColumn95,
  1364. ultraGridColumn96,
  1365. ultraGridColumn97,
  1366. ultraGridColumn98});
  1367. ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
  1368. this.ultraGridJl.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  1369. this.ultraGridJl.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  1370. this.ultraGridJl.DisplayLayout.DefaultSelectedBackColor = System.Drawing.Color.Empty;
  1371. this.ultraGridJl.DisplayLayout.DefaultSelectedForeColor = System.Drawing.Color.Empty;
  1372. this.ultraGridJl.DisplayLayout.Override.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Button3D;
  1373. appearance21.TextVAlignAsString = "Middle";
  1374. this.ultraGridJl.DisplayLayout.Override.CellAppearance = appearance21;
  1375. this.ultraGridJl.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
  1376. appearance4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
  1377. appearance4.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
  1378. this.ultraGridJl.DisplayLayout.Override.HeaderAppearance = appearance4;
  1379. this.ultraGridJl.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  1380. this.ultraGridJl.DisplayLayout.Override.MaxSelectedRows = 1;
  1381. this.ultraGridJl.DisplayLayout.Override.MinRowHeight = 21;
  1382. appearance22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
  1383. appearance22.TextVAlignAsString = "Middle";
  1384. this.ultraGridJl.DisplayLayout.Override.RowSelectorAppearance = appearance22;
  1385. this.ultraGridJl.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  1386. this.ultraGridJl.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
  1387. this.ultraGridJl.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
  1388. this.ultraGridJl.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
  1389. this.ultraGridJl.Dock = System.Windows.Forms.DockStyle.Fill;
  1390. this.ultraGridJl.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1391. this.ultraGridJl.Location = new System.Drawing.Point(0, 0);
  1392. this.ultraGridJl.Name = "ultraGridJl";
  1393. this.ultraGridJl.Size = new System.Drawing.Size(749, 450);
  1394. this.ultraGridJl.TabIndex = 6;
  1395. //
  1396. // dataSet1
  1397. //
  1398. this.dataSet1.DataSetName = "NewDataSet";
  1399. this.dataSet1.Relations.AddRange(new System.Data.DataRelation[] {
  1400. new System.Data.DataRelation("Relation1", "校秤记录", "校秤子表", new string[] {
  1401. "calibrationMainNo"}, new string[] {
  1402. "calibrationMainNo"}, false)});
  1403. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  1404. this.dtCalibration,
  1405. this.dtJGPointInfo,
  1406. this.dtBranch,
  1407. this.dtPreTrackScale});
  1408. //
  1409. // dtCalibration
  1410. //
  1411. this.dtCalibration.Columns.AddRange(new System.Data.DataColumn[] {
  1412. this.dataColumn126,
  1413. this.dataColumn127,
  1414. this.dataColumn128,
  1415. this.dataColumn129,
  1416. this.dataColumn130,
  1417. this.dataColumn131,
  1418. this.dataColumn132,
  1419. this.dataColumn133,
  1420. this.dataColumn134,
  1421. this.dataColumn135,
  1422. this.dataColumn136,
  1423. this.dataColumn137,
  1424. this.dataColumn138,
  1425. this.dataColumn139,
  1426. this.dataColumn140});
  1427. this.dtCalibration.Constraints.AddRange(new System.Data.Constraint[] {
  1428. new System.Data.UniqueConstraint("Constraint1", new string[] {
  1429. "calibrationMainNo"}, false)});
  1430. this.dtCalibration.TableName = "校秤记录";
  1431. //
  1432. // dataColumn126
  1433. //
  1434. this.dataColumn126.Caption = "校秤编号";
  1435. this.dataColumn126.ColumnName = "calibrationMainNo";
  1436. //
  1437. // dataColumn127
  1438. //
  1439. this.dataColumn127.Caption = "计量点编号";
  1440. this.dataColumn127.ColumnName = "baseSpotNo";
  1441. //
  1442. // dataColumn128
  1443. //
  1444. this.dataColumn128.Caption = "计量点名称";
  1445. this.dataColumn128.ColumnName = "baseSpotName";
  1446. //
  1447. // dataColumn129
  1448. //
  1449. this.dataColumn129.Caption = "计量点类型编号";
  1450. this.dataColumn129.ColumnName = "spotTypeNo";
  1451. //
  1452. // dataColumn130
  1453. //
  1454. this.dataColumn130.Caption = "计量点类型名称";
  1455. this.dataColumn130.ColumnName = "spotTypeName";
  1456. //
  1457. // dataColumn131
  1458. //
  1459. this.dataColumn131.Caption = "校秤有效次数";
  1460. this.dataColumn131.ColumnName = "calibrationNum";
  1461. //
  1462. // dataColumn132
  1463. //
  1464. this.dataColumn132.Caption = "校秤类型编号";
  1465. this.dataColumn132.ColumnName = "calibrationTypeNo";
  1466. //
  1467. // dataColumn133
  1468. //
  1469. this.dataColumn133.Caption = "校秤类型名";
  1470. this.dataColumn133.ColumnName = "calibrationTypeName";
  1471. //
  1472. // dataColumn134
  1473. //
  1474. this.dataColumn134.Caption = "校秤有效次数";
  1475. this.dataColumn134.ColumnName = "calibrationActNum";
  1476. //
  1477. // dataColumn135
  1478. //
  1479. this.dataColumn135.Caption = "状态";
  1480. this.dataColumn135.ColumnName = "valueFlag";
  1481. //
  1482. // dataColumn136
  1483. //
  1484. this.dataColumn136.Caption = "校秤对比计量点编号";
  1485. this.dataColumn136.ColumnName = "baseContrastSpotNo";
  1486. //
  1487. // dataColumn137
  1488. //
  1489. this.dataColumn137.Caption = "校秤对比计量点";
  1490. this.dataColumn137.ColumnName = "baseContrastSpotName";
  1491. //
  1492. // dataColumn138
  1493. //
  1494. this.dataColumn138.Caption = "校秤成功对比点编号";
  1495. this.dataColumn138.ColumnName = "baseSuccContSpotNo";
  1496. //
  1497. // dataColumn139
  1498. //
  1499. this.dataColumn139.Caption = "校秤成功对比点";
  1500. this.dataColumn139.ColumnName = "baseSuccConSpotName";
  1501. //
  1502. // dataColumn140
  1503. //
  1504. this.dataColumn140.Caption = "校秤时间";
  1505. this.dataColumn140.ColumnName = "calibrationMainTime";
  1506. //
  1507. // dtJGPointInfo
  1508. //
  1509. this.dtJGPointInfo.Columns.AddRange(new System.Data.DataColumn[] {
  1510. this.dataColumn155,
  1511. this.dataColumn156,
  1512. this.dataColumn157});
  1513. this.dtJGPointInfo.TableName = "已接管计量点";
  1514. //
  1515. // dataColumn155
  1516. //
  1517. this.dataColumn155.ColumnName = "baseSpotNo";
  1518. //
  1519. // dataColumn156
  1520. //
  1521. this.dataColumn156.Caption = "计量点";
  1522. this.dataColumn156.ColumnName = "baseSpotName";
  1523. //
  1524. // dataColumn157
  1525. //
  1526. this.dataColumn157.Caption = "接管状态";
  1527. this.dataColumn157.ColumnName = "validFlag";
  1528. //
  1529. // dtBranch
  1530. //
  1531. this.dtBranch.Columns.AddRange(new System.Data.DataColumn[] {
  1532. this.dataColumn141,
  1533. this.dataColumn142,
  1534. this.dataColumn143,
  1535. this.dataColumn144,
  1536. this.dataColumn145,
  1537. this.dataColumn146,
  1538. this.dataColumn147,
  1539. this.dataColumn148,
  1540. this.dataColumn149,
  1541. this.dataColumn150,
  1542. this.dataColumn151,
  1543. this.dataColumn152,
  1544. this.dataColumn153,
  1545. this.dataColumn154});
  1546. this.dtBranch.Constraints.AddRange(new System.Data.Constraint[] {
  1547. new System.Data.ForeignKeyConstraint("Relation1", "校秤记录", new string[] {
  1548. "calibrationMainNo"}, new string[] {
  1549. "calibrationMainNo"}, System.Data.AcceptRejectRule.None, System.Data.Rule.Cascade, System.Data.Rule.Cascade)});
  1550. this.dtBranch.TableName = "校秤子表";
  1551. //
  1552. // dataColumn141
  1553. //
  1554. this.dataColumn141.Caption = "编号";
  1555. this.dataColumn141.ColumnName = "calibrationBranchNo";
  1556. //
  1557. // dataColumn142
  1558. //
  1559. this.dataColumn142.ColumnName = "calibrationMainNo";
  1560. //
  1561. // dataColumn143
  1562. //
  1563. this.dataColumn143.ColumnName = "baseSpotNo";
  1564. //
  1565. // dataColumn144
  1566. //
  1567. this.dataColumn144.Caption = "计量点";
  1568. this.dataColumn144.ColumnName = "baseSpotName";
  1569. //
  1570. // dataColumn145
  1571. //
  1572. this.dataColumn145.ColumnName = "spotTypeNo";
  1573. //
  1574. // dataColumn146
  1575. //
  1576. this.dataColumn146.Caption = "计量点类型";
  1577. this.dataColumn146.ColumnName = "spotTypeName";
  1578. //
  1579. // dataColumn147
  1580. //
  1581. this.dataColumn147.ColumnName = "calibrationTypeNo";
  1582. //
  1583. // dataColumn148
  1584. //
  1585. this.dataColumn148.Caption = "校秤类型";
  1586. this.dataColumn148.ColumnName = "calibrationTypeName";
  1587. //
  1588. // dataColumn149
  1589. //
  1590. this.dataColumn149.Caption = "校秤重量";
  1591. this.dataColumn149.ColumnName = "calibrationWeight";
  1592. //
  1593. // dataColumn150
  1594. //
  1595. this.dataColumn150.Caption = "状态";
  1596. this.dataColumn150.ColumnName = "valueFlag";
  1597. //
  1598. // dataColumn151
  1599. //
  1600. this.dataColumn151.Caption = "比对校秤计量编号";
  1601. this.dataColumn151.ColumnName = "calibrContrastBranchNo";
  1602. //
  1603. // dataColumn152
  1604. //
  1605. this.dataColumn152.ColumnName = "createManNo";
  1606. //
  1607. // dataColumn153
  1608. //
  1609. this.dataColumn153.Caption = "计量员";
  1610. this.dataColumn153.ColumnName = "createManName";
  1611. //
  1612. // dataColumn154
  1613. //
  1614. this.dataColumn154.Caption = "校秤时间";
  1615. this.dataColumn154.ColumnName = "createTime";
  1616. //
  1617. // dtPreTrackScale
  1618. //
  1619. this.dtPreTrackScale.Columns.AddRange(new System.Data.DataColumn[] {
  1620. this.dataColumn70,
  1621. this.dataColumn71,
  1622. this.dataColumn72,
  1623. this.dataColumn73,
  1624. this.dataColumn74,
  1625. this.dataColumn75,
  1626. this.dataColumn76,
  1627. this.dataColumn77,
  1628. this.dataColumn78,
  1629. this.dataColumn79,
  1630. this.dataColumn80,
  1631. this.dataColumn81,
  1632. this.dataColumn82,
  1633. this.dataColumn83,
  1634. this.dataColumn84,
  1635. this.dataColumn85,
  1636. this.dataColumn86,
  1637. this.dataColumn87,
  1638. this.dataColumn88,
  1639. this.dataColumn89,
  1640. this.dataColumn90,
  1641. this.dataColumn91,
  1642. this.dataColumn92,
  1643. this.dataColumn93,
  1644. this.dataColumn94,
  1645. this.dataColumn95,
  1646. this.dataColumn96,
  1647. this.dataColumn97,
  1648. this.dataColumn98,
  1649. this.dataColumn99,
  1650. this.dataColumn100,
  1651. this.dataColumn101,
  1652. this.dataColumn102,
  1653. this.dataColumn103,
  1654. this.dataColumn104,
  1655. this.dataColumn105,
  1656. this.dataColumn106,
  1657. this.dataColumn107,
  1658. this.dataColumn108,
  1659. this.dataColumn109,
  1660. this.dataColumn110,
  1661. this.dataColumn111,
  1662. this.dataColumn112,
  1663. this.dataColumn113,
  1664. this.dataColumn114,
  1665. this.dataColumn115,
  1666. this.dataColumn116,
  1667. this.dataColumn117,
  1668. this.dataColumn118,
  1669. this.dataColumn119,
  1670. this.dataColumn120,
  1671. this.dataColumn121,
  1672. this.dataColumn122,
  1673. this.dataColumn123,
  1674. this.dataColumn124,
  1675. this.dataColumn125});
  1676. this.dtPreTrackScale.TableName = "计量预报";
  1677. //
  1678. // dataColumn70
  1679. //
  1680. this.dataColumn70.Caption = "预报编号";
  1681. this.dataColumn70.ColumnName = "predictionNo";
  1682. //
  1683. // dataColumn71
  1684. //
  1685. this.dataColumn71.Caption = "通知单号";
  1686. this.dataColumn71.ColumnName = "noticeNo";
  1687. //
  1688. // dataColumn72
  1689. //
  1690. this.dataColumn72.Caption = "车号";
  1691. this.dataColumn72.ColumnName = "carNo";
  1692. //
  1693. // dataColumn73
  1694. //
  1695. this.dataColumn73.Caption = "挂号";
  1696. this.dataColumn73.ColumnName = "trailerNo";
  1697. //
  1698. // dataColumn74
  1699. //
  1700. this.dataColumn74.Caption = "物料编号";
  1701. this.dataColumn74.ColumnName = "matterNo";
  1702. //
  1703. // dataColumn75
  1704. //
  1705. this.dataColumn75.Caption = "物料名称";
  1706. this.dataColumn75.ColumnName = "matterName";
  1707. //
  1708. // dataColumn76
  1709. //
  1710. this.dataColumn76.Caption = "合同号";
  1711. this.dataColumn76.ColumnName = "contractNo";
  1712. //
  1713. // dataColumn77
  1714. //
  1715. this.dataColumn77.Caption = "批次号";
  1716. this.dataColumn77.ColumnName = "batchNo";
  1717. //
  1718. // dataColumn78
  1719. //
  1720. this.dataColumn78.Caption = "供应商编号";
  1721. this.dataColumn78.ColumnName = "customerSupplierNo";
  1722. //
  1723. // dataColumn79
  1724. //
  1725. this.dataColumn79.Caption = "供应商名称";
  1726. this.dataColumn79.ColumnName = "customerSupplierName";
  1727. //
  1728. // dataColumn80
  1729. //
  1730. this.dataColumn80.Caption = "原产地";
  1731. this.dataColumn80.ColumnName = "sourceArea";
  1732. //
  1733. // dataColumn81
  1734. //
  1735. this.dataColumn81.Caption = "发货单位编号";
  1736. this.dataColumn81.ColumnName = "forwardingUnitNo";
  1737. //
  1738. // dataColumn82
  1739. //
  1740. this.dataColumn82.Caption = "发货单位名称";
  1741. this.dataColumn82.ColumnName = "forwardingUnitName";
  1742. //
  1743. // dataColumn83
  1744. //
  1745. this.dataColumn83.Caption = "收货单位编号";
  1746. this.dataColumn83.ColumnName = "receivingUintNo";
  1747. //
  1748. // dataColumn84
  1749. //
  1750. this.dataColumn84.Caption = "收货单位名称";
  1751. this.dataColumn84.ColumnName = "receivingUintName";
  1752. //
  1753. // dataColumn85
  1754. //
  1755. this.dataColumn85.Caption = "材质编号";
  1756. this.dataColumn85.ColumnName = "materialNo";
  1757. //
  1758. // dataColumn86
  1759. //
  1760. this.dataColumn86.Caption = "材质名称";
  1761. this.dataColumn86.ColumnName = "materialName";
  1762. //
  1763. // dataColumn87
  1764. //
  1765. this.dataColumn87.Caption = "规格编号";
  1766. this.dataColumn87.ColumnName = "specNo";
  1767. //
  1768. // dataColumn88
  1769. //
  1770. this.dataColumn88.Caption = "规格名称";
  1771. this.dataColumn88.ColumnName = "specName";
  1772. //
  1773. // dataColumn89
  1774. //
  1775. this.dataColumn89.Caption = "发运毛重";
  1776. this.dataColumn89.ColumnName = "shipmentGrossWeight";
  1777. //
  1778. // dataColumn90
  1779. //
  1780. this.dataColumn90.Caption = "发运净重";
  1781. this.dataColumn90.ColumnName = "shipmentNetWeight";
  1782. //
  1783. // dataColumn91
  1784. //
  1785. this.dataColumn91.Caption = "发运数量";
  1786. this.dataColumn91.ColumnName = "shipmentNum";
  1787. //
  1788. // dataColumn92
  1789. //
  1790. this.dataColumn92.Caption = "附加重量总和";
  1791. this.dataColumn92.ColumnName = "addWeightSum";
  1792. //
  1793. // dataColumn93
  1794. //
  1795. this.dataColumn93.Caption = "绑定卡号";
  1796. this.dataColumn93.ColumnName = "bindCardNo";
  1797. //
  1798. // dataColumn94
  1799. //
  1800. this.dataColumn94.Caption = "卸货地点编号";
  1801. this.dataColumn94.ColumnName = "loadPointNo";
  1802. //
  1803. // dataColumn95
  1804. //
  1805. this.dataColumn95.Caption = "卸货地点名称";
  1806. this.dataColumn95.ColumnName = "loadPointName";
  1807. //
  1808. // dataColumn96
  1809. //
  1810. this.dataColumn96.Caption = "取样编号";
  1811. this.dataColumn96.ColumnName = "sampleNo";
  1812. //
  1813. // dataColumn97
  1814. //
  1815. this.dataColumn97.Caption = "取样凭证";
  1816. this.dataColumn97.ColumnName = "sampleVoucher";
  1817. //
  1818. // dataColumn98
  1819. //
  1820. this.dataColumn98.Caption = "承运单位编号";
  1821. this.dataColumn98.ColumnName = "carrierUnitNo";
  1822. //
  1823. // dataColumn99
  1824. //
  1825. this.dataColumn99.Caption = "承运单位名称";
  1826. this.dataColumn99.ColumnName = "carrierUnitName";
  1827. //
  1828. // dataColumn100
  1829. //
  1830. this.dataColumn100.Caption = "预报类型";
  1831. this.dataColumn100.ColumnName = "predictionType";
  1832. //
  1833. // dataColumn101
  1834. //
  1835. this.dataColumn101.Caption = "预报组合";
  1836. this.dataColumn101.ColumnName = "predictionCombination";
  1837. //
  1838. // dataColumn102
  1839. //
  1840. this.dataColumn102.Caption = "计量类型编号";
  1841. this.dataColumn102.ColumnName = "meterTypeNo";
  1842. //
  1843. // dataColumn103
  1844. //
  1845. this.dataColumn103.Caption = "计量类型名称";
  1846. this.dataColumn103.ColumnName = "meterTypeName";
  1847. //
  1848. // dataColumn104
  1849. //
  1850. this.dataColumn104.Caption = "可用类型";
  1851. this.dataColumn104.ColumnName = "usedType";
  1852. //
  1853. // dataColumn105
  1854. //
  1855. this.dataColumn105.Caption = "有效开始时间";
  1856. this.dataColumn105.ColumnName = "effectiveStartTime";
  1857. //
  1858. // dataColumn106
  1859. //
  1860. this.dataColumn106.Caption = "有效结束时间";
  1861. this.dataColumn106.ColumnName = "effectiveEndTime";
  1862. //
  1863. // dataColumn107
  1864. //
  1865. this.dataColumn107.Caption = "有效总量";
  1866. this.dataColumn107.ColumnName = "effectiveWeight";
  1867. //
  1868. // dataColumn108
  1869. //
  1870. this.dataColumn108.Caption = "有效次数";
  1871. this.dataColumn108.ColumnName = "effectiveNum";
  1872. //
  1873. // dataColumn109
  1874. //
  1875. this.dataColumn109.Caption = "检斤重量";
  1876. this.dataColumn109.ColumnName = "meterWeight";
  1877. //
  1878. // dataColumn110
  1879. //
  1880. this.dataColumn110.Caption = "检斤次数";
  1881. this.dataColumn110.ColumnName = "meterNum";
  1882. //
  1883. // dataColumn111
  1884. //
  1885. this.dataColumn111.Caption = "火车车号";
  1886. this.dataColumn111.ColumnName = "railwayNo";
  1887. //
  1888. // dataColumn112
  1889. //
  1890. this.dataColumn112.Caption = "计量流程编号";
  1891. this.dataColumn112.ColumnName = "meterProcessNo";
  1892. //
  1893. // dataColumn113
  1894. //
  1895. this.dataColumn113.Caption = "计量流程版本号";
  1896. this.dataColumn113.ColumnName = "meterProcessEditionNo";
  1897. //
  1898. // dataColumn114
  1899. //
  1900. this.dataColumn114.Caption = "备注";
  1901. this.dataColumn114.ColumnName = "memo";
  1902. //
  1903. // dataColumn115
  1904. //
  1905. this.dataColumn115.Caption = "状态";
  1906. this.dataColumn115.ColumnName = "valueFlag";
  1907. //
  1908. // dataColumn116
  1909. //
  1910. this.dataColumn116.Caption = "使用时间";
  1911. this.dataColumn116.ColumnName = "usedTime";
  1912. //
  1913. // dataColumn117
  1914. //
  1915. this.dataColumn117.Caption = "创建人编号";
  1916. this.dataColumn117.ColumnName = "createManNo";
  1917. //
  1918. // dataColumn118
  1919. //
  1920. this.dataColumn118.Caption = "创建人姓名";
  1921. this.dataColumn118.ColumnName = "createManName";
  1922. //
  1923. // dataColumn119
  1924. //
  1925. this.dataColumn119.Caption = "创建时间";
  1926. this.dataColumn119.ColumnName = "createTime";
  1927. //
  1928. // dataColumn120
  1929. //
  1930. this.dataColumn120.Caption = "修改人编号";
  1931. this.dataColumn120.ColumnName = "updateManNo";
  1932. //
  1933. // dataColumn121
  1934. //
  1935. this.dataColumn121.Caption = "修改人姓名";
  1936. this.dataColumn121.ColumnName = "updateManName";
  1937. //
  1938. // dataColumn122
  1939. //
  1940. this.dataColumn122.Caption = "修改时间";
  1941. this.dataColumn122.ColumnName = "updateTime";
  1942. //
  1943. // dataColumn123
  1944. //
  1945. this.dataColumn123.Caption = "删除人编号";
  1946. this.dataColumn123.ColumnName = "deleteManNo";
  1947. //
  1948. // dataColumn124
  1949. //
  1950. this.dataColumn124.Caption = "删除人姓名";
  1951. this.dataColumn124.ColumnName = "deleteManName";
  1952. //
  1953. // dataColumn125
  1954. //
  1955. this.dataColumn125.Caption = "删除时间";
  1956. this.dataColumn125.ColumnName = "deleteTime";
  1957. //
  1958. // dataColumn158
  1959. //
  1960. this.dataColumn158.ColumnName = "baseSpotNo";
  1961. //
  1962. // dataColumn159
  1963. //
  1964. this.dataColumn159.Caption = "计量点";
  1965. this.dataColumn159.ColumnName = "baseSpotName";
  1966. //
  1967. // dataColumn69
  1968. //
  1969. this.dataColumn69.Caption = "状态";
  1970. this.dataColumn69.ColumnName = "validFlag";
  1971. //
  1972. // timer1
  1973. //
  1974. this.timer1.Interval = 500;
  1975. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  1976. //
  1977. // ultraGroupBox1
  1978. //
  1979. this.ultraGroupBox1.Controls.Add(this.panel3);
  1980. this.ultraGroupBox1.Controls.Add(this.panel1);
  1981. this.ultraGroupBox1.Controls.Add(this.panel2);
  1982. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  1983. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  1984. this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(2);
  1985. this.ultraGroupBox1.Name = "ultraGroupBox1";
  1986. this.ultraGroupBox1.Size = new System.Drawing.Size(1472, 842);
  1987. this.ultraGroupBox1.TabIndex = 3;
  1988. this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1989. //
  1990. // panel3
  1991. //
  1992. this.panel3.AutoScroll = true;
  1993. this.panel3.BackColor = System.Drawing.Color.Transparent;
  1994. this.panel3.Controls.Add(this.uTab);
  1995. this.panel3.Controls.Add(this.panel14);
  1996. this.panel3.Controls.Add(this.panel11);
  1997. this.panel3.Controls.Add(this.panel10);
  1998. this.panel3.Controls.Add(this.panel5);
  1999. this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
  2000. this.panel3.Location = new System.Drawing.Point(418, 0);
  2001. this.panel3.Margin = new System.Windows.Forms.Padding(2);
  2002. this.panel3.MinimumSize = new System.Drawing.Size(518, 632);
  2003. this.panel3.Name = "panel3";
  2004. this.panel3.Size = new System.Drawing.Size(751, 839);
  2005. this.panel3.TabIndex = 5;
  2006. //
  2007. // uTab
  2008. //
  2009. this.uTab.Controls.Add(this.ultraTabSharedControlsPage1);
  2010. this.uTab.Controls.Add(this.ultraTabPageControl1);
  2011. this.uTab.Controls.Add(this.ultraTabPageControl3);
  2012. this.uTab.Dock = System.Windows.Forms.DockStyle.Fill;
  2013. this.uTab.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2014. this.uTab.Location = new System.Drawing.Point(0, 363);
  2015. this.uTab.Margin = new System.Windows.Forms.Padding(2);
  2016. this.uTab.Name = "uTab";
  2017. this.uTab.SharedControlsPage = this.ultraTabSharedControlsPage1;
  2018. this.uTab.Size = new System.Drawing.Size(751, 476);
  2019. this.uTab.TabIndex = 5;
  2020. ultraTab1.TabPage = this.ultraTabPageControl1;
  2021. ultraTab1.Text = "计量实绩";
  2022. ultraTab3.TabPage = this.ultraTabPageControl3;
  2023. ultraTab3.Text = "校秤记录";
  2024. this.uTab.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  2025. ultraTab1,
  2026. ultraTab3});
  2027. this.uTab.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
  2028. //
  2029. // ultraTabSharedControlsPage1
  2030. //
  2031. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
  2032. this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(2);
  2033. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  2034. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(749, 450);
  2035. //
  2036. // panel14
  2037. //
  2038. this.panel14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2039. this.panel14.Controls.Add(this.txtGrossWgt);
  2040. this.panel14.Controls.Add(this.btnSave);
  2041. this.panel14.Controls.Add(this.btnCheckBalance);
  2042. this.panel14.Controls.Add(this.btnOpenVoice);
  2043. this.panel14.Dock = System.Windows.Forms.DockStyle.Top;
  2044. this.panel14.Location = new System.Drawing.Point(0, 323);
  2045. this.panel14.Margin = new System.Windows.Forms.Padding(2);
  2046. this.panel14.Name = "panel14";
  2047. this.panel14.Size = new System.Drawing.Size(751, 40);
  2048. this.panel14.TabIndex = 4;
  2049. //
  2050. // txtGrossWgt
  2051. //
  2052. this.txtGrossWgt.Dock = System.Windows.Forms.DockStyle.Right;
  2053. this.txtGrossWgt.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2054. this.txtGrossWgt.Location = new System.Drawing.Point(569, 0);
  2055. this.txtGrossWgt.Name = "txtGrossWgt";
  2056. this.txtGrossWgt.Size = new System.Drawing.Size(180, 29);
  2057. this.txtGrossWgt.TabIndex = 10;
  2058. //
  2059. // btnSave
  2060. //
  2061. this.btnSave.BackColor = System.Drawing.Color.DodgerBlue;
  2062. this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2063. this.btnSave.Font = new System.Drawing.Font("楷体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)), true);
  2064. this.btnSave.ForeColor = System.Drawing.Color.White;
  2065. this.btnSave.Location = new System.Drawing.Point(338, 3);
  2066. this.btnSave.Name = "btnSave";
  2067. this.btnSave.Size = new System.Drawing.Size(92, 32);
  2068. this.btnSave.TabIndex = 9;
  2069. this.btnSave.Text = "保存";
  2070. this.btnSave.UseVisualStyleBackColor = false;
  2071. this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
  2072. //
  2073. // btnCheckBalance
  2074. //
  2075. this.btnCheckBalance.BackColor = System.Drawing.Color.DodgerBlue;
  2076. this.btnCheckBalance.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2077. this.btnCheckBalance.Font = new System.Drawing.Font("楷体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)), true);
  2078. this.btnCheckBalance.ForeColor = System.Drawing.Color.White;
  2079. this.btnCheckBalance.Location = new System.Drawing.Point(117, 3);
  2080. this.btnCheckBalance.Name = "btnCheckBalance";
  2081. this.btnCheckBalance.Size = new System.Drawing.Size(92, 32);
  2082. this.btnCheckBalance.TabIndex = 7;
  2083. this.btnCheckBalance.Text = "校秤";
  2084. this.btnCheckBalance.UseVisualStyleBackColor = false;
  2085. this.btnCheckBalance.Click += new System.EventHandler(this.btnCheckBalance_Click);
  2086. //
  2087. // btnOpenVoice
  2088. //
  2089. this.btnOpenVoice.BackColor = System.Drawing.Color.DodgerBlue;
  2090. this.btnOpenVoice.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2091. this.btnOpenVoice.Font = new System.Drawing.Font("楷体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)), true);
  2092. this.btnOpenVoice.ForeColor = System.Drawing.Color.White;
  2093. this.btnOpenVoice.Location = new System.Drawing.Point(7, 3);
  2094. this.btnOpenVoice.Name = "btnOpenVoice";
  2095. this.btnOpenVoice.Size = new System.Drawing.Size(92, 32);
  2096. this.btnOpenVoice.TabIndex = 6;
  2097. this.btnOpenVoice.Text = "打开对讲";
  2098. this.btnOpenVoice.UseVisualStyleBackColor = false;
  2099. this.btnOpenVoice.Click += new System.EventHandler(this.btnOpenVoice_Click);
  2100. //
  2101. // panel11
  2102. //
  2103. this.panel11.Controls.Add(this.tableLayoutPanel1);
  2104. this.panel11.Dock = System.Windows.Forms.DockStyle.Top;
  2105. this.panel11.Location = new System.Drawing.Point(0, 100);
  2106. this.panel11.Margin = new System.Windows.Forms.Padding(2);
  2107. this.panel11.Name = "panel11";
  2108. this.panel11.Size = new System.Drawing.Size(751, 223);
  2109. this.panel11.TabIndex = 3;
  2110. //
  2111. // tableLayoutPanel1
  2112. //
  2113. this.tableLayoutPanel1.ColumnCount = 4;
  2114. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
  2115. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  2116. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
  2117. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  2118. this.tableLayoutPanel1.Controls.Add(this.txtBLOCK_NUM, 3, 1);
  2119. this.tableLayoutPanel1.Controls.Add(this.cmbStandard, 1, 1);
  2120. this.tableLayoutPanel1.Controls.Add(this.cmbGrade, 3, 0);
  2121. this.tableLayoutPanel1.Controls.Add(this.cmbMatterNo, 1, 0);
  2122. this.tableLayoutPanel1.Controls.Add(this.label7, 0, 3);
  2123. this.tableLayoutPanel1.Controls.Add(this.label8, 0, 2);
  2124. this.tableLayoutPanel1.Controls.Add(this.label9, 0, 1);
  2125. this.tableLayoutPanel1.Controls.Add(this.label10, 0, 0);
  2126. this.tableLayoutPanel1.Controls.Add(this.label11, 2, 3);
  2127. this.tableLayoutPanel1.Controls.Add(this.label12, 2, 2);
  2128. this.tableLayoutPanel1.Controls.Add(this.label13, 2, 1);
  2129. this.tableLayoutPanel1.Controls.Add(this.label14, 2, 0);
  2130. this.tableLayoutPanel1.Controls.Add(this.txtSEAL_NO, 3, 3);
  2131. this.tableLayoutPanel1.Controls.Add(this.txtPACKAGE_NO, 1, 3);
  2132. this.tableLayoutPanel1.Controls.Add(this.txtBATCH_NO, 1, 2);
  2133. this.tableLayoutPanel1.Controls.Add(this.label15, 0, 4);
  2134. this.tableLayoutPanel1.Controls.Add(this.txtBUCKET_NO, 1, 4);
  2135. this.tableLayoutPanel1.Controls.Add(this.txtCOMBIN_NO, 3, 4);
  2136. this.tableLayoutPanel1.Controls.Add(this.label16, 2, 4);
  2137. this.tableLayoutPanel1.Controls.Add(this.label17, 0, 5);
  2138. this.tableLayoutPanel1.Controls.Add(this.txtMEMO, 1, 5);
  2139. this.tableLayoutPanel1.Controls.Add(this.txtPRODUCT_DATE, 3, 2);
  2140. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  2141. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  2142. this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
  2143. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  2144. this.tableLayoutPanel1.Padding = new System.Windows.Forms.Padding(0, 5, 0, 0);
  2145. this.tableLayoutPanel1.RowCount = 6;
  2146. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.66F));
  2147. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.66F));
  2148. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.66F));
  2149. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.66F));
  2150. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.66F));
  2151. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.7F));
  2152. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  2153. this.tableLayoutPanel1.Size = new System.Drawing.Size(751, 223);
  2154. this.tableLayoutPanel1.TabIndex = 5;
  2155. //
  2156. // txtBLOCK_NUM
  2157. //
  2158. this.txtBLOCK_NUM.Dock = System.Windows.Forms.DockStyle.Fill;
  2159. this.txtBLOCK_NUM.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2160. this.txtBLOCK_NUM.Location = new System.Drawing.Point(478, 44);
  2161. this.txtBLOCK_NUM.Name = "txtBLOCK_NUM";
  2162. this.txtBLOCK_NUM.Size = new System.Drawing.Size(270, 29);
  2163. this.txtBLOCK_NUM.TabIndex = 5;
  2164. //
  2165. // cmbStandard
  2166. //
  2167. this.cmbStandard.Dock = System.Windows.Forms.DockStyle.Fill;
  2168. this.cmbStandard.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2169. this.cmbStandard.Location = new System.Drawing.Point(102, 43);
  2170. this.cmbStandard.Margin = new System.Windows.Forms.Padding(2);
  2171. this.cmbStandard.Name = "cmbStandard";
  2172. this.cmbStandard.Size = new System.Drawing.Size(271, 28);
  2173. this.cmbStandard.TabIndex = 94;
  2174. //
  2175. // cmbGrade
  2176. //
  2177. this.cmbGrade.Dock = System.Windows.Forms.DockStyle.Fill;
  2178. this.cmbGrade.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2179. this.cmbGrade.Location = new System.Drawing.Point(477, 7);
  2180. this.cmbGrade.Margin = new System.Windows.Forms.Padding(2);
  2181. this.cmbGrade.Name = "cmbGrade";
  2182. this.cmbGrade.Size = new System.Drawing.Size(272, 28);
  2183. this.cmbGrade.TabIndex = 94;
  2184. //
  2185. // cmbMatterNo
  2186. //
  2187. this.cmbMatterNo.Dock = System.Windows.Forms.DockStyle.Fill;
  2188. this.cmbMatterNo.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2189. this.cmbMatterNo.Location = new System.Drawing.Point(102, 7);
  2190. this.cmbMatterNo.Margin = new System.Windows.Forms.Padding(2);
  2191. this.cmbMatterNo.Name = "cmbMatterNo";
  2192. this.cmbMatterNo.Size = new System.Drawing.Size(271, 28);
  2193. this.cmbMatterNo.TabIndex = 94;
  2194. //
  2195. // label7
  2196. //
  2197. this.label7.Dock = System.Windows.Forms.DockStyle.Fill;
  2198. this.label7.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2199. this.label7.Location = new System.Drawing.Point(2, 118);
  2200. this.label7.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
  2201. this.label7.Name = "label7";
  2202. this.label7.Size = new System.Drawing.Size(98, 31);
  2203. this.label7.TabIndex = 1;
  2204. this.label7.Text = "包  号";
  2205. this.label7.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2206. //
  2207. // label8
  2208. //
  2209. this.label8.Dock = System.Windows.Forms.DockStyle.Fill;
  2210. this.label8.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2211. this.label8.Location = new System.Drawing.Point(2, 82);
  2212. this.label8.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
  2213. this.label8.Name = "label8";
  2214. this.label8.Size = new System.Drawing.Size(98, 31);
  2215. this.label8.TabIndex = 1;
  2216. this.label8.Text = "批  号";
  2217. this.label8.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2218. //
  2219. // label9
  2220. //
  2221. this.label9.Dock = System.Windows.Forms.DockStyle.Fill;
  2222. this.label9.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2223. this.label9.Location = new System.Drawing.Point(2, 46);
  2224. this.label9.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
  2225. this.label9.Name = "label9";
  2226. this.label9.Size = new System.Drawing.Size(98, 31);
  2227. this.label9.TabIndex = 1;
  2228. this.label9.Text = "标  准";
  2229. this.label9.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2230. //
  2231. // label10
  2232. //
  2233. this.label10.Dock = System.Windows.Forms.DockStyle.Fill;
  2234. this.label10.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2235. this.label10.Location = new System.Drawing.Point(2, 10);
  2236. this.label10.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
  2237. this.label10.Name = "label10";
  2238. this.label10.Size = new System.Drawing.Size(98, 31);
  2239. this.label10.TabIndex = 1;
  2240. this.label10.Text = "产品名称";
  2241. this.label10.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2242. //
  2243. // label11
  2244. //
  2245. this.label11.Dock = System.Windows.Forms.DockStyle.Fill;
  2246. this.label11.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2247. this.label11.Location = new System.Drawing.Point(377, 118);
  2248. this.label11.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
  2249. this.label11.Name = "label11";
  2250. this.label11.Size = new System.Drawing.Size(98, 31);
  2251. this.label11.TabIndex = 1;
  2252. this.label11.Text = "铅 封 号";
  2253. this.label11.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2254. //
  2255. // label12
  2256. //
  2257. this.label12.Dock = System.Windows.Forms.DockStyle.Fill;
  2258. this.label12.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2259. this.label12.Location = new System.Drawing.Point(377, 82);
  2260. this.label12.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
  2261. this.label12.Name = "label12";
  2262. this.label12.Size = new System.Drawing.Size(98, 31);
  2263. this.label12.TabIndex = 1;
  2264. this.label12.Text = "生产日期";
  2265. this.label12.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2266. //
  2267. // label13
  2268. //
  2269. this.label13.Dock = System.Windows.Forms.DockStyle.Fill;
  2270. this.label13.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2271. this.label13.Location = new System.Drawing.Point(377, 46);
  2272. this.label13.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
  2273. this.label13.Name = "label13";
  2274. this.label13.Size = new System.Drawing.Size(98, 31);
  2275. this.label13.TabIndex = 1;
  2276. this.label13.Text = "块  数";
  2277. this.label13.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2278. //
  2279. // label14
  2280. //
  2281. this.label14.Dock = System.Windows.Forms.DockStyle.Fill;
  2282. this.label14.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2283. this.label14.Location = new System.Drawing.Point(377, 10);
  2284. this.label14.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
  2285. this.label14.Name = "label14";
  2286. this.label14.Size = new System.Drawing.Size(98, 31);
  2287. this.label14.TabIndex = 1;
  2288. this.label14.Text = "牌  号";
  2289. this.label14.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2290. //
  2291. // txtSEAL_NO
  2292. //
  2293. appearance3.BackColor = System.Drawing.Color.White;
  2294. appearance3.BackColor2 = System.Drawing.Color.White;
  2295. appearance3.BackColorDisabled = System.Drawing.Color.White;
  2296. appearance3.BackColorDisabled2 = System.Drawing.Color.White;
  2297. appearance3.ForeColor = System.Drawing.Color.Black;
  2298. appearance3.ForeColorDisabled = System.Drawing.Color.Black;
  2299. this.txtSEAL_NO.Appearance = appearance3;
  2300. this.txtSEAL_NO.BackColor = System.Drawing.Color.White;
  2301. this.txtSEAL_NO.Dock = System.Windows.Forms.DockStyle.Fill;
  2302. this.txtSEAL_NO.Font = new System.Drawing.Font("宋体", 13F);
  2303. this.txtSEAL_NO.Location = new System.Drawing.Point(478, 116);
  2304. this.txtSEAL_NO.Name = "txtSEAL_NO";
  2305. this.txtSEAL_NO.Size = new System.Drawing.Size(270, 27);
  2306. this.txtSEAL_NO.TabIndex = 7;
  2307. //
  2308. // txtPACKAGE_NO
  2309. //
  2310. appearance8.BackColor = System.Drawing.Color.White;
  2311. appearance8.BackColor2 = System.Drawing.Color.White;
  2312. appearance8.BackColorDisabled = System.Drawing.Color.White;
  2313. appearance8.BackColorDisabled2 = System.Drawing.Color.White;
  2314. appearance8.ForeColor = System.Drawing.Color.Black;
  2315. appearance8.ForeColorDisabled = System.Drawing.Color.Black;
  2316. this.txtPACKAGE_NO.Appearance = appearance8;
  2317. this.txtPACKAGE_NO.BackColor = System.Drawing.Color.White;
  2318. this.txtPACKAGE_NO.Dock = System.Windows.Forms.DockStyle.Fill;
  2319. this.txtPACKAGE_NO.Font = new System.Drawing.Font("宋体", 13F);
  2320. this.txtPACKAGE_NO.Location = new System.Drawing.Point(103, 116);
  2321. this.txtPACKAGE_NO.Name = "txtPACKAGE_NO";
  2322. this.txtPACKAGE_NO.Size = new System.Drawing.Size(269, 27);
  2323. this.txtPACKAGE_NO.TabIndex = 6;
  2324. //
  2325. // txtBATCH_NO
  2326. //
  2327. appearance9.BackColor = System.Drawing.Color.White;
  2328. appearance9.BackColor2 = System.Drawing.Color.White;
  2329. appearance9.BackColorDisabled = System.Drawing.Color.White;
  2330. appearance9.BackColorDisabled2 = System.Drawing.Color.White;
  2331. appearance9.ForeColor = System.Drawing.Color.Black;
  2332. appearance9.ForeColorDisabled = System.Drawing.Color.Black;
  2333. this.txtBATCH_NO.Appearance = appearance9;
  2334. this.txtBATCH_NO.BackColor = System.Drawing.Color.White;
  2335. this.txtBATCH_NO.Dock = System.Windows.Forms.DockStyle.Fill;
  2336. this.txtBATCH_NO.Font = new System.Drawing.Font("宋体", 13F);
  2337. this.txtBATCH_NO.Location = new System.Drawing.Point(103, 80);
  2338. this.txtBATCH_NO.Name = "txtBATCH_NO";
  2339. this.txtBATCH_NO.Size = new System.Drawing.Size(269, 27);
  2340. this.txtBATCH_NO.TabIndex = 4;
  2341. //
  2342. // label15
  2343. //
  2344. this.label15.Dock = System.Windows.Forms.DockStyle.Fill;
  2345. this.label15.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2346. this.label15.Location = new System.Drawing.Point(2, 154);
  2347. this.label15.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
  2348. this.label15.Name = "label15";
  2349. this.label15.Size = new System.Drawing.Size(98, 31);
  2350. this.label15.TabIndex = 1;
  2351. this.label15.Text = "桶  号";
  2352. this.label15.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2353. //
  2354. // txtBUCKET_NO
  2355. //
  2356. appearance11.BackColor = System.Drawing.Color.White;
  2357. appearance11.BackColor2 = System.Drawing.Color.White;
  2358. appearance11.BackColorDisabled = System.Drawing.Color.White;
  2359. appearance11.BackColorDisabled2 = System.Drawing.Color.White;
  2360. appearance11.ForeColor = System.Drawing.Color.Black;
  2361. appearance11.ForeColorDisabled = System.Drawing.Color.Black;
  2362. this.txtBUCKET_NO.Appearance = appearance11;
  2363. this.txtBUCKET_NO.BackColor = System.Drawing.Color.White;
  2364. this.txtBUCKET_NO.Dock = System.Windows.Forms.DockStyle.Fill;
  2365. this.txtBUCKET_NO.Font = new System.Drawing.Font("宋体", 13F);
  2366. this.txtBUCKET_NO.Location = new System.Drawing.Point(103, 152);
  2367. this.txtBUCKET_NO.Name = "txtBUCKET_NO";
  2368. this.txtBUCKET_NO.Size = new System.Drawing.Size(269, 27);
  2369. this.txtBUCKET_NO.TabIndex = 8;
  2370. //
  2371. // txtCOMBIN_NO
  2372. //
  2373. appearance2.BackColor = System.Drawing.Color.White;
  2374. appearance2.BackColor2 = System.Drawing.Color.White;
  2375. appearance2.BackColorDisabled = System.Drawing.Color.White;
  2376. appearance2.BackColorDisabled2 = System.Drawing.Color.White;
  2377. appearance2.ForeColor = System.Drawing.Color.Black;
  2378. appearance2.ForeColorDisabled = System.Drawing.Color.Black;
  2379. this.txtCOMBIN_NO.Appearance = appearance2;
  2380. this.txtCOMBIN_NO.BackColor = System.Drawing.Color.White;
  2381. this.txtCOMBIN_NO.Dock = System.Windows.Forms.DockStyle.Fill;
  2382. this.txtCOMBIN_NO.Font = new System.Drawing.Font("宋体", 13F);
  2383. this.txtCOMBIN_NO.Location = new System.Drawing.Point(478, 152);
  2384. this.txtCOMBIN_NO.Name = "txtCOMBIN_NO";
  2385. this.txtCOMBIN_NO.Size = new System.Drawing.Size(270, 27);
  2386. this.txtCOMBIN_NO.TabIndex = 9;
  2387. //
  2388. // label16
  2389. //
  2390. this.label16.Dock = System.Windows.Forms.DockStyle.Fill;
  2391. this.label16.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2392. this.label16.Location = new System.Drawing.Point(377, 154);
  2393. this.label16.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
  2394. this.label16.Name = "label16";
  2395. this.label16.Size = new System.Drawing.Size(98, 31);
  2396. this.label16.TabIndex = 1;
  2397. this.label16.Text = "组合包号";
  2398. this.label16.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2399. //
  2400. // label17
  2401. //
  2402. this.label17.Dock = System.Windows.Forms.DockStyle.Fill;
  2403. this.label17.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2404. this.label17.Location = new System.Drawing.Point(2, 190);
  2405. this.label17.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
  2406. this.label17.Name = "label17";
  2407. this.label17.Size = new System.Drawing.Size(98, 33);
  2408. this.label17.TabIndex = 3;
  2409. this.label17.Text = "备  注";
  2410. this.label17.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  2411. //
  2412. // txtMEMO
  2413. //
  2414. appearance7.BackColor = System.Drawing.Color.White;
  2415. appearance7.BackColor2 = System.Drawing.Color.White;
  2416. appearance7.BackColorDisabled = System.Drawing.Color.White;
  2417. appearance7.BackColorDisabled2 = System.Drawing.Color.White;
  2418. appearance7.ForeColor = System.Drawing.Color.Black;
  2419. appearance7.ForeColorDisabled = System.Drawing.Color.Black;
  2420. this.txtMEMO.Appearance = appearance7;
  2421. this.txtMEMO.BackColor = System.Drawing.Color.White;
  2422. this.tableLayoutPanel1.SetColumnSpan(this.txtMEMO, 3);
  2423. this.txtMEMO.Dock = System.Windows.Forms.DockStyle.Fill;
  2424. this.txtMEMO.Font = new System.Drawing.Font("宋体", 13F);
  2425. this.txtMEMO.Location = new System.Drawing.Point(103, 188);
  2426. this.txtMEMO.Multiline = true;
  2427. this.txtMEMO.Name = "txtMEMO";
  2428. this.txtMEMO.Size = new System.Drawing.Size(645, 32);
  2429. this.txtMEMO.TabIndex = 10;
  2430. //
  2431. // txtPRODUCT_DATE
  2432. //
  2433. this.txtPRODUCT_DATE.Dock = System.Windows.Forms.DockStyle.Fill;
  2434. this.txtPRODUCT_DATE.DropDownAlign = System.Windows.Forms.LeftRightAlignment.Right;
  2435. this.txtPRODUCT_DATE.Font = new System.Drawing.Font("宋体", 13F);
  2436. this.txtPRODUCT_DATE.Location = new System.Drawing.Point(478, 80);
  2437. this.txtPRODUCT_DATE.MaxDate = new System.DateTime(2998, 12, 31, 0, 0, 0, 0);
  2438. this.txtPRODUCT_DATE.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
  2439. this.txtPRODUCT_DATE.Name = "txtPRODUCT_DATE";
  2440. this.txtPRODUCT_DATE.Size = new System.Drawing.Size(270, 27);
  2441. this.txtPRODUCT_DATE.TabIndex = 11;
  2442. //
  2443. // panel10
  2444. //
  2445. this.panel10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2446. this.panel10.Controls.Add(this.tableLayoutPanel3);
  2447. this.panel10.Dock = System.Windows.Forms.DockStyle.Top;
  2448. this.panel10.Location = new System.Drawing.Point(0, 60);
  2449. this.panel10.Margin = new System.Windows.Forms.Padding(2);
  2450. this.panel10.Name = "panel10";
  2451. this.panel10.Size = new System.Drawing.Size(751, 40);
  2452. this.panel10.TabIndex = 2;
  2453. //
  2454. // tableLayoutPanel3
  2455. //
  2456. this.tableLayoutPanel3.ColumnCount = 5;
  2457. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
  2458. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  2459. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 90F));
  2460. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  2461. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 81F));
  2462. this.tableLayoutPanel3.Controls.Add(this.txtPageNum, 3, 0);
  2463. this.tableLayoutPanel3.Controls.Add(this.btnPage, 4, 0);
  2464. this.tableLayoutPanel3.Controls.Add(this.label3, 0, 0);
  2465. this.tableLayoutPanel3.Controls.Add(this.txtGroess, 1, 0);
  2466. this.tableLayoutPanel3.Controls.Add(this.label4, 2, 0);
  2467. this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
  2468. this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
  2469. this.tableLayoutPanel3.Name = "tableLayoutPanel3";
  2470. this.tableLayoutPanel3.RowCount = 1;
  2471. this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  2472. this.tableLayoutPanel3.Size = new System.Drawing.Size(749, 38);
  2473. this.tableLayoutPanel3.TabIndex = 0;
  2474. //
  2475. // txtPageNum
  2476. //
  2477. this.txtPageNum.Dock = System.Windows.Forms.DockStyle.Fill;
  2478. this.txtPageNum.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2479. this.txtPageNum.Location = new System.Drawing.Point(432, 3);
  2480. this.txtPageNum.Name = "txtPageNum";
  2481. this.txtPageNum.Size = new System.Drawing.Size(233, 29);
  2482. this.txtPageNum.TabIndex = 4;
  2483. //
  2484. // btnPage
  2485. //
  2486. this.btnPage.BackColor = System.Drawing.Color.DodgerBlue;
  2487. this.btnPage.Dock = System.Windows.Forms.DockStyle.Fill;
  2488. this.btnPage.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2489. this.btnPage.Font = new System.Drawing.Font("楷体", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)), true);
  2490. this.btnPage.ForeColor = System.Drawing.Color.White;
  2491. this.btnPage.Location = new System.Drawing.Point(671, 3);
  2492. this.btnPage.Name = "btnPage";
  2493. this.btnPage.Size = new System.Drawing.Size(75, 32);
  2494. this.btnPage.TabIndex = 8;
  2495. this.btnPage.Text = "换纸";
  2496. this.btnPage.UseVisualStyleBackColor = false;
  2497. this.btnPage.Click += new System.EventHandler(this.btnPage_Click);
  2498. //
  2499. // label3
  2500. //
  2501. this.label3.AutoSize = true;
  2502. this.label3.Dock = System.Windows.Forms.DockStyle.Fill;
  2503. this.label3.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2504. this.label3.Location = new System.Drawing.Point(3, 0);
  2505. this.label3.Name = "label3";
  2506. this.label3.Size = new System.Drawing.Size(94, 38);
  2507. this.label3.TabIndex = 15;
  2508. this.label3.Text = "毛重(kg)";
  2509. this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2510. //
  2511. // txtGroess
  2512. //
  2513. this.txtGroess.Dock = System.Windows.Forms.DockStyle.Fill;
  2514. this.txtGroess.Font = new System.Drawing.Font("宋体", 15F);
  2515. this.txtGroess.Location = new System.Drawing.Point(103, 3);
  2516. this.txtGroess.Name = "txtGroess";
  2517. this.txtGroess.ReadOnly = true;
  2518. this.txtGroess.Size = new System.Drawing.Size(233, 30);
  2519. this.txtGroess.TabIndex = 14;
  2520. //
  2521. // label4
  2522. //
  2523. this.label4.AutoSize = true;
  2524. this.label4.Dock = System.Windows.Forms.DockStyle.Fill;
  2525. this.label4.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2526. this.label4.Location = new System.Drawing.Point(342, 0);
  2527. this.label4.Name = "label4";
  2528. this.label4.Size = new System.Drawing.Size(84, 38);
  2529. this.label4.TabIndex = 16;
  2530. this.label4.Text = "纸张";
  2531. this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2532. //
  2533. // panel5
  2534. //
  2535. this.panel5.Controls.Add(this.tableLayoutPanel2);
  2536. this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
  2537. this.panel5.Location = new System.Drawing.Point(0, 0);
  2538. this.panel5.Margin = new System.Windows.Forms.Padding(2);
  2539. this.panel5.Name = "panel5";
  2540. this.panel5.Size = new System.Drawing.Size(751, 60);
  2541. this.panel5.TabIndex = 1;
  2542. //
  2543. // tableLayoutPanel2
  2544. //
  2545. this.tableLayoutPanel2.ColumnCount = 2;
  2546. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  2547. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  2548. this.tableLayoutPanel2.Controls.Add(this.ucStorageWeightKg2, 0, 0);
  2549. this.tableLayoutPanel2.Controls.Add(this.ucStorageWeightKg1, 0, 0);
  2550. this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  2551. this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
  2552. this.tableLayoutPanel2.Name = "tableLayoutPanel2";
  2553. this.tableLayoutPanel2.RowCount = 1;
  2554. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
  2555. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 60F));
  2556. this.tableLayoutPanel2.Size = new System.Drawing.Size(751, 60);
  2557. this.tableLayoutPanel2.TabIndex = 0;
  2558. //
  2559. // ucStorageWeightKg2
  2560. //
  2561. this.ucStorageWeightKg2.BackColor = System.Drawing.Color.Transparent;
  2562. this.ucStorageWeightKg2.Dock = System.Windows.Forms.DockStyle.Fill;
  2563. this.ucStorageWeightKg2.Location = new System.Drawing.Point(378, 3);
  2564. this.ucStorageWeightKg2.Name = "ucStorageWeightKg2";
  2565. this.ucStorageWeightKg2.Size = new System.Drawing.Size(370, 54);
  2566. this.ucStorageWeightKg2.TabIndex = 2;
  2567. //
  2568. // ucStorageWeightKg1
  2569. //
  2570. this.ucStorageWeightKg1.BackColor = System.Drawing.Color.Transparent;
  2571. this.ucStorageWeightKg1.Dock = System.Windows.Forms.DockStyle.Fill;
  2572. this.ucStorageWeightKg1.Location = new System.Drawing.Point(3, 3);
  2573. this.ucStorageWeightKg1.Name = "ucStorageWeightKg1";
  2574. this.ucStorageWeightKg1.Size = new System.Drawing.Size(369, 54);
  2575. this.ucStorageWeightKg1.TabIndex = 1;
  2576. //
  2577. // panel1
  2578. //
  2579. this.panel1.AutoScroll = true;
  2580. this.panel1.BackColor = System.Drawing.Color.Transparent;
  2581. this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2582. this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
  2583. this.panel1.Location = new System.Drawing.Point(3, 0);
  2584. this.panel1.Margin = new System.Windows.Forms.Padding(2);
  2585. this.panel1.Name = "panel1";
  2586. this.panel1.Size = new System.Drawing.Size(415, 839);
  2587. this.panel1.TabIndex = 4;
  2588. //
  2589. // panel2
  2590. //
  2591. this.panel2.BackColor = System.Drawing.Color.Transparent;
  2592. this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2593. this.panel2.Controls.Add(this.groupBox2);
  2594. this.panel2.Controls.Add(this.panel16);
  2595. this.panel2.Controls.Add(this.panel15);
  2596. this.panel2.Controls.Add(this.groupBox1);
  2597. this.panel2.Dock = System.Windows.Forms.DockStyle.Right;
  2598. this.panel2.Location = new System.Drawing.Point(1169, 0);
  2599. this.panel2.Margin = new System.Windows.Forms.Padding(2);
  2600. this.panel2.Name = "panel2";
  2601. this.panel2.Size = new System.Drawing.Size(300, 839);
  2602. this.panel2.TabIndex = 1;
  2603. //
  2604. // groupBox2
  2605. //
  2606. this.groupBox2.Controls.Add(this.txtMsgInfo);
  2607. this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
  2608. this.groupBox2.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2609. this.groupBox2.ForeColor = System.Drawing.Color.Blue;
  2610. this.groupBox2.Location = new System.Drawing.Point(0, 431);
  2611. this.groupBox2.Margin = new System.Windows.Forms.Padding(2);
  2612. this.groupBox2.Name = "groupBox2";
  2613. this.groupBox2.Padding = new System.Windows.Forms.Padding(2);
  2614. this.groupBox2.Size = new System.Drawing.Size(298, 406);
  2615. this.groupBox2.TabIndex = 7;
  2616. this.groupBox2.TabStop = false;
  2617. this.groupBox2.Text = "提示信息";
  2618. //
  2619. // txtMsgInfo
  2620. //
  2621. this.txtMsgInfo.BackColor = System.Drawing.Color.White;
  2622. this.txtMsgInfo.Dock = System.Windows.Forms.DockStyle.Fill;
  2623. this.txtMsgInfo.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2624. this.txtMsgInfo.Location = new System.Drawing.Point(2, 18);
  2625. this.txtMsgInfo.Multiline = true;
  2626. this.txtMsgInfo.Name = "txtMsgInfo";
  2627. this.txtMsgInfo.ReadOnly = true;
  2628. this.txtMsgInfo.Size = new System.Drawing.Size(294, 386);
  2629. this.txtMsgInfo.TabIndex = 39;
  2630. //
  2631. // panel16
  2632. //
  2633. this.panel16.Controls.Add(this.panel20);
  2634. this.panel16.Dock = System.Windows.Forms.DockStyle.Top;
  2635. this.panel16.Location = new System.Drawing.Point(0, 394);
  2636. this.panel16.Name = "panel16";
  2637. this.panel16.Size = new System.Drawing.Size(298, 37);
  2638. this.panel16.TabIndex = 6;
  2639. //
  2640. // panel20
  2641. //
  2642. this.panel20.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2643. this.panel20.Controls.Add(this.tableLayoutPanel4);
  2644. this.panel20.Dock = System.Windows.Forms.DockStyle.Fill;
  2645. this.panel20.Location = new System.Drawing.Point(0, 0);
  2646. this.panel20.Margin = new System.Windows.Forms.Padding(2);
  2647. this.panel20.Name = "panel20";
  2648. this.panel20.Size = new System.Drawing.Size(298, 37);
  2649. this.panel20.TabIndex = 6;
  2650. //
  2651. // tableLayoutPanel4
  2652. //
  2653. this.tableLayoutPanel4.ColumnCount = 2;
  2654. this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 110F));
  2655. this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  2656. this.tableLayoutPanel4.Controls.Add(this.txtTARE_WEIGHT, 1, 0);
  2657. this.tableLayoutPanel4.Controls.Add(this.label21, 0, 0);
  2658. this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
  2659. this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 0);
  2660. this.tableLayoutPanel4.Name = "tableLayoutPanel4";
  2661. this.tableLayoutPanel4.RowCount = 1;
  2662. this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  2663. this.tableLayoutPanel4.Size = new System.Drawing.Size(296, 35);
  2664. this.tableLayoutPanel4.TabIndex = 0;
  2665. //
  2666. // txtTARE_WEIGHT
  2667. //
  2668. this.txtTARE_WEIGHT.Dock = System.Windows.Forms.DockStyle.Fill;
  2669. this.txtTARE_WEIGHT.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2670. this.txtTARE_WEIGHT.Location = new System.Drawing.Point(113, 3);
  2671. this.txtTARE_WEIGHT.Name = "txtTARE_WEIGHT";
  2672. this.txtTARE_WEIGHT.Size = new System.Drawing.Size(180, 29);
  2673. this.txtTARE_WEIGHT.TabIndex = 3;
  2674. //
  2675. // label21
  2676. //
  2677. this.label21.AutoSize = true;
  2678. this.label21.Dock = System.Windows.Forms.DockStyle.Fill;
  2679. this.label21.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2680. this.label21.Location = new System.Drawing.Point(2, 0);
  2681. this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2682. this.label21.Name = "label21";
  2683. this.label21.Size = new System.Drawing.Size(106, 35);
  2684. this.label21.TabIndex = 2;
  2685. this.label21.Text = "包装重量(kg)";
  2686. this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2687. //
  2688. // panel15
  2689. //
  2690. this.panel15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2691. this.panel15.Controls.Add(this.btnGQ);
  2692. this.panel15.Controls.Add(this.btnStart);
  2693. this.panel15.Dock = System.Windows.Forms.DockStyle.Top;
  2694. this.panel15.Location = new System.Drawing.Point(0, 354);
  2695. this.panel15.Margin = new System.Windows.Forms.Padding(2);
  2696. this.panel15.Name = "panel15";
  2697. this.panel15.Size = new System.Drawing.Size(298, 40);
  2698. this.panel15.TabIndex = 5;
  2699. //
  2700. // btnGQ
  2701. //
  2702. this.btnGQ.BackColor = System.Drawing.Color.DodgerBlue;
  2703. this.btnGQ.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2704. this.btnGQ.Font = new System.Drawing.Font("楷体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)), true);
  2705. this.btnGQ.ForeColor = System.Drawing.Color.White;
  2706. this.btnGQ.Location = new System.Drawing.Point(128, 3);
  2707. this.btnGQ.Name = "btnGQ";
  2708. this.btnGQ.Size = new System.Drawing.Size(95, 32);
  2709. this.btnGQ.TabIndex = 7;
  2710. this.btnGQ.Text = "挂起";
  2711. this.btnGQ.UseVisualStyleBackColor = false;
  2712. this.btnGQ.Click += new System.EventHandler(this.btnGQ_Click);
  2713. //
  2714. // btnStart
  2715. //
  2716. this.btnStart.BackColor = System.Drawing.Color.DodgerBlue;
  2717. this.btnStart.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  2718. this.btnStart.Font = new System.Drawing.Font("楷体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)), true);
  2719. this.btnStart.ForeColor = System.Drawing.Color.White;
  2720. this.btnStart.Location = new System.Drawing.Point(5, 3);
  2721. this.btnStart.Name = "btnStart";
  2722. this.btnStart.Size = new System.Drawing.Size(95, 32);
  2723. this.btnStart.TabIndex = 6;
  2724. this.btnStart.Text = "自动派位";
  2725. this.btnStart.UseVisualStyleBackColor = false;
  2726. this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
  2727. //
  2728. // groupBox1
  2729. //
  2730. this.groupBox1.Controls.Add(this.ultraGridPW);
  2731. this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
  2732. this.groupBox1.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2733. this.groupBox1.ForeColor = System.Drawing.Color.Blue;
  2734. this.groupBox1.Location = new System.Drawing.Point(0, 0);
  2735. this.groupBox1.Margin = new System.Windows.Forms.Padding(2);
  2736. this.groupBox1.Name = "groupBox1";
  2737. this.groupBox1.Padding = new System.Windows.Forms.Padding(2);
  2738. this.groupBox1.Size = new System.Drawing.Size(298, 354);
  2739. this.groupBox1.TabIndex = 0;
  2740. this.groupBox1.TabStop = false;
  2741. this.groupBox1.Text = "派位";
  2742. //
  2743. // ultraGridPW
  2744. //
  2745. this.ultraGridPW.DataMember = "已接管计量点";
  2746. this.ultraGridPW.DataSource = this.dataSet1;
  2747. ultraGridColumn99.Header.VisiblePosition = 0;
  2748. ultraGridColumn99.Hidden = true;
  2749. ultraGridColumn100.Header.VisiblePosition = 1;
  2750. ultraGridColumn101.Header.VisiblePosition = 2;
  2751. ultraGridBand4.Columns.AddRange(new object[] {
  2752. ultraGridColumn99,
  2753. ultraGridColumn100,
  2754. ultraGridColumn101});
  2755. ultraGridBand4.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
  2756. this.ultraGridPW.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
  2757. this.ultraGridPW.DisplayLayout.DefaultSelectedBackColor = System.Drawing.Color.Empty;
  2758. this.ultraGridPW.DisplayLayout.DefaultSelectedForeColor = System.Drawing.Color.Empty;
  2759. this.ultraGridPW.DisplayLayout.Override.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Button3D;
  2760. appearance16.TextVAlignAsString = "Middle";
  2761. this.ultraGridPW.DisplayLayout.Override.CellAppearance = appearance16;
  2762. this.ultraGridPW.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
  2763. appearance17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
  2764. appearance17.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
  2765. this.ultraGridPW.DisplayLayout.Override.HeaderAppearance = appearance17;
  2766. this.ultraGridPW.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  2767. this.ultraGridPW.DisplayLayout.Override.MaxSelectedRows = 1;
  2768. this.ultraGridPW.DisplayLayout.Override.MinRowHeight = 21;
  2769. appearance18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
  2770. appearance18.TextVAlignAsString = "Middle";
  2771. this.ultraGridPW.DisplayLayout.Override.RowSelectorAppearance = appearance18;
  2772. this.ultraGridPW.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  2773. this.ultraGridPW.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
  2774. this.ultraGridPW.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
  2775. this.ultraGridPW.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
  2776. this.ultraGridPW.Dock = System.Windows.Forms.DockStyle.Fill;
  2777. this.ultraGridPW.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2778. this.ultraGridPW.Location = new System.Drawing.Point(2, 18);
  2779. this.ultraGridPW.Name = "ultraGridPW";
  2780. this.ultraGridPW.Size = new System.Drawing.Size(294, 334);
  2781. this.ultraGridPW.TabIndex = 8;
  2782. //
  2783. // plImgShow
  2784. //
  2785. this.plImgShow.Controls.Add(this.pictureShow);
  2786. this.plImgShow.Location = new System.Drawing.Point(257, 119);
  2787. this.plImgShow.Margin = new System.Windows.Forms.Padding(2);
  2788. this.plImgShow.Name = "plImgShow";
  2789. this.plImgShow.Size = new System.Drawing.Size(179, 640);
  2790. this.plImgShow.TabIndex = 43;
  2791. this.plImgShow.Visible = false;
  2792. //
  2793. // pictureShow
  2794. //
  2795. this.pictureShow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
  2796. this.pictureShow.Dock = System.Windows.Forms.DockStyle.Fill;
  2797. this.pictureShow.Location = new System.Drawing.Point(0, 0);
  2798. this.pictureShow.Margin = new System.Windows.Forms.Padding(2);
  2799. this.pictureShow.Name = "pictureShow";
  2800. this.pictureShow.Size = new System.Drawing.Size(179, 640);
  2801. this.pictureShow.TabIndex = 1;
  2802. this.pictureShow.TabStop = false;
  2803. this.pictureShow.DoubleClick += new System.EventHandler(this.pictureShow_DoubleClick);
  2804. //
  2805. // frmMainBF
  2806. //
  2807. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  2808. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2809. this.ClientSize = new System.Drawing.Size(1472, 842);
  2810. this.Controls.Add(this.plImgShow);
  2811. this.Controls.Add(this.ultraGroupBox1);
  2812. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  2813. this.Name = "frmMainBF";
  2814. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
  2815. this.Load += new System.EventHandler(this.frmMain_Load);
  2816. this.ultraTabPageControl1.ResumeLayout(false);
  2817. ((System.ComponentModel.ISupportInitialize)(this.ultraGridSj)).EndInit();
  2818. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
  2819. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  2820. this.ultraTabPageControl3.ResumeLayout(false);
  2821. ((System.ComponentModel.ISupportInitialize)(this.ultraGridJl)).EndInit();
  2822. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  2823. ((System.ComponentModel.ISupportInitialize)(this.dtCalibration)).EndInit();
  2824. ((System.ComponentModel.ISupportInitialize)(this.dtJGPointInfo)).EndInit();
  2825. ((System.ComponentModel.ISupportInitialize)(this.dtBranch)).EndInit();
  2826. ((System.ComponentModel.ISupportInitialize)(this.dtPreTrackScale)).EndInit();
  2827. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  2828. this.ultraGroupBox1.ResumeLayout(false);
  2829. this.panel3.ResumeLayout(false);
  2830. ((System.ComponentModel.ISupportInitialize)(this.uTab)).EndInit();
  2831. this.uTab.ResumeLayout(false);
  2832. this.panel14.ResumeLayout(false);
  2833. ((System.ComponentModel.ISupportInitialize)(this.txtGrossWgt)).EndInit();
  2834. this.panel11.ResumeLayout(false);
  2835. this.tableLayoutPanel1.ResumeLayout(false);
  2836. this.tableLayoutPanel1.PerformLayout();
  2837. ((System.ComponentModel.ISupportInitialize)(this.txtBLOCK_NUM)).EndInit();
  2838. ((System.ComponentModel.ISupportInitialize)(this.cmbStandard)).EndInit();
  2839. ((System.ComponentModel.ISupportInitialize)(this.cmbGrade)).EndInit();
  2840. ((System.ComponentModel.ISupportInitialize)(this.cmbMatterNo)).EndInit();
  2841. ((System.ComponentModel.ISupportInitialize)(this.txtSEAL_NO)).EndInit();
  2842. ((System.ComponentModel.ISupportInitialize)(this.txtPACKAGE_NO)).EndInit();
  2843. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_NO)).EndInit();
  2844. ((System.ComponentModel.ISupportInitialize)(this.txtBUCKET_NO)).EndInit();
  2845. ((System.ComponentModel.ISupportInitialize)(this.txtCOMBIN_NO)).EndInit();
  2846. ((System.ComponentModel.ISupportInitialize)(this.txtMEMO)).EndInit();
  2847. this.panel10.ResumeLayout(false);
  2848. this.tableLayoutPanel3.ResumeLayout(false);
  2849. this.tableLayoutPanel3.PerformLayout();
  2850. ((System.ComponentModel.ISupportInitialize)(this.txtPageNum)).EndInit();
  2851. this.panel5.ResumeLayout(false);
  2852. this.tableLayoutPanel2.ResumeLayout(false);
  2853. this.panel2.ResumeLayout(false);
  2854. this.groupBox2.ResumeLayout(false);
  2855. this.groupBox2.PerformLayout();
  2856. this.panel16.ResumeLayout(false);
  2857. this.panel20.ResumeLayout(false);
  2858. this.tableLayoutPanel4.ResumeLayout(false);
  2859. this.tableLayoutPanel4.PerformLayout();
  2860. ((System.ComponentModel.ISupportInitialize)(this.txtTARE_WEIGHT)).EndInit();
  2861. this.panel15.ResumeLayout(false);
  2862. this.groupBox1.ResumeLayout(false);
  2863. ((System.ComponentModel.ISupportInitialize)(this.ultraGridPW)).EndInit();
  2864. this.plImgShow.ResumeLayout(false);
  2865. ((System.ComponentModel.ISupportInitialize)(this.pictureShow)).EndInit();
  2866. this.ResumeLayout(false);
  2867. }
  2868. #endregion
  2869. private System.Data.DataSet dataSet1;
  2870. private System.Data.DataTable dtPreTrackScale;
  2871. private System.Data.DataColumn dataColumn70;
  2872. private System.Data.DataColumn dataColumn71;
  2873. private System.Data.DataColumn dataColumn72;
  2874. private System.Data.DataColumn dataColumn73;
  2875. private System.Data.DataColumn dataColumn74;
  2876. private System.Data.DataColumn dataColumn75;
  2877. private System.Data.DataColumn dataColumn76;
  2878. private System.Data.DataColumn dataColumn77;
  2879. private System.Data.DataColumn dataColumn78;
  2880. private System.Data.DataColumn dataColumn79;
  2881. private System.Data.DataColumn dataColumn80;
  2882. private System.Data.DataColumn dataColumn81;
  2883. private System.Data.DataColumn dataColumn82;
  2884. private System.Data.DataColumn dataColumn83;
  2885. private System.Data.DataColumn dataColumn84;
  2886. private System.Data.DataColumn dataColumn85;
  2887. private System.Data.DataColumn dataColumn86;
  2888. private System.Data.DataColumn dataColumn87;
  2889. private System.Data.DataColumn dataColumn88;
  2890. private System.Data.DataColumn dataColumn89;
  2891. private System.Data.DataColumn dataColumn90;
  2892. private System.Data.DataColumn dataColumn91;
  2893. private System.Data.DataColumn dataColumn92;
  2894. private System.Data.DataColumn dataColumn93;
  2895. private System.Data.DataColumn dataColumn94;
  2896. private System.Data.DataColumn dataColumn95;
  2897. private System.Data.DataColumn dataColumn96;
  2898. private System.Data.DataColumn dataColumn97;
  2899. private System.Data.DataColumn dataColumn98;
  2900. private System.Data.DataColumn dataColumn99;
  2901. private System.Data.DataColumn dataColumn100;
  2902. private System.Data.DataColumn dataColumn101;
  2903. private System.Data.DataColumn dataColumn102;
  2904. private System.Data.DataColumn dataColumn103;
  2905. private System.Data.DataColumn dataColumn104;
  2906. private System.Data.DataColumn dataColumn105;
  2907. private System.Data.DataColumn dataColumn106;
  2908. private System.Data.DataColumn dataColumn107;
  2909. private System.Data.DataColumn dataColumn108;
  2910. private System.Data.DataColumn dataColumn109;
  2911. private System.Data.DataColumn dataColumn110;
  2912. private System.Data.DataColumn dataColumn111;
  2913. private System.Data.DataColumn dataColumn112;
  2914. private System.Data.DataColumn dataColumn113;
  2915. private System.Data.DataColumn dataColumn114;
  2916. private System.Data.DataColumn dataColumn115;
  2917. private System.Data.DataColumn dataColumn116;
  2918. private System.Data.DataColumn dataColumn117;
  2919. private System.Data.DataColumn dataColumn118;
  2920. private System.Data.DataColumn dataColumn119;
  2921. private System.Data.DataColumn dataColumn120;
  2922. private System.Data.DataColumn dataColumn121;
  2923. private System.Data.DataColumn dataColumn122;
  2924. private System.Data.DataColumn dataColumn123;
  2925. private System.Data.DataColumn dataColumn124;
  2926. private System.Data.DataColumn dataColumn125;
  2927. private System.Data.DataTable dtCalibration;
  2928. private System.Data.DataColumn dataColumn126;
  2929. private System.Data.DataColumn dataColumn127;
  2930. private System.Data.DataColumn dataColumn128;
  2931. private System.Data.DataColumn dataColumn129;
  2932. private System.Data.DataColumn dataColumn130;
  2933. private System.Data.DataColumn dataColumn131;
  2934. private System.Data.DataColumn dataColumn132;
  2935. private System.Data.DataColumn dataColumn133;
  2936. private System.Data.DataColumn dataColumn134;
  2937. private System.Data.DataColumn dataColumn135;
  2938. private System.Data.DataColumn dataColumn136;
  2939. private System.Data.DataColumn dataColumn137;
  2940. private System.Data.DataColumn dataColumn138;
  2941. private System.Data.DataColumn dataColumn139;
  2942. private System.Data.DataColumn dataColumn140;
  2943. private System.Data.DataTable dtJGPointInfo;
  2944. private System.Data.DataColumn dataColumn158;
  2945. private System.Data.DataColumn dataColumn159;
  2946. private System.Data.DataSet dataSet2;
  2947. private System.Data.DataTable dataTable1;
  2948. private System.Data.DataColumn dataColumn1;
  2949. private System.Data.DataColumn dataColumn2;
  2950. private System.Data.DataColumn dataColumn3;
  2951. private System.Data.DataColumn dataColumn4;
  2952. private System.Data.DataColumn dataColumn5;
  2953. private System.Data.DataColumn dataColumn6;
  2954. private System.Data.DataColumn dataColumn7;
  2955. private System.Data.DataColumn dataColumn8;
  2956. private System.Data.DataColumn dataColumn9;
  2957. private System.Data.DataColumn dataColumn10;
  2958. private System.Data.DataColumn dataColumn11;
  2959. private System.Data.DataColumn dataColumn12;
  2960. private System.Data.DataColumn dataColumn13;
  2961. private System.Data.DataColumn dataColumn14;
  2962. private System.Data.DataColumn dataColumn15;
  2963. private System.Data.DataColumn dataColumn16;
  2964. private System.Data.DataColumn dataColumn17;
  2965. private System.Data.DataColumn dataColumn18;
  2966. private System.Data.DataColumn dataColumn19;
  2967. private System.Data.DataColumn dataColumn20;
  2968. private System.Data.DataColumn dataColumn21;
  2969. private System.Data.DataColumn dataColumn22;
  2970. private System.Data.DataColumn dataColumn23;
  2971. private System.Data.DataColumn dataColumn24;
  2972. private System.Data.DataColumn dataColumn25;
  2973. private System.Data.DataColumn dataColumn26;
  2974. private System.Data.DataColumn dataColumn27;
  2975. private System.Data.DataColumn dataColumn28;
  2976. private System.Data.DataColumn dataColumn29;
  2977. private System.Data.DataColumn dataColumn30;
  2978. private System.Data.DataColumn dataColumn31;
  2979. private System.Data.DataColumn dataColumn32;
  2980. private System.Data.DataColumn dataColumn33;
  2981. private System.Data.DataColumn dataColumn34;
  2982. private System.Data.DataColumn dataColumn35;
  2983. private System.Data.DataColumn dataColumn36;
  2984. private System.Data.DataColumn dataColumn37;
  2985. private System.Data.DataColumn dataColumn38;
  2986. private System.Data.DataColumn dataColumn39;
  2987. private System.Data.DataColumn dataColumn40;
  2988. private System.Data.DataColumn dataColumn41;
  2989. private System.Data.DataColumn dataColumn42;
  2990. private System.Data.DataColumn dataColumn43;
  2991. private System.Data.DataColumn dataColumn44;
  2992. private System.Data.DataColumn dataColumn45;
  2993. private System.Data.DataColumn dataColumn46;
  2994. private System.Data.DataColumn dataColumn47;
  2995. private System.Data.DataColumn dataColumn48;
  2996. private System.Data.DataColumn dataColumn49;
  2997. private System.Data.DataColumn dataColumn50;
  2998. private System.Data.DataColumn dataColumn51;
  2999. private System.Data.DataColumn dataColumn52;
  3000. private System.Data.DataColumn dataColumn53;
  3001. private System.Data.DataColumn dataColumn54;
  3002. private System.Data.DataColumn dataColumn55;
  3003. private System.Data.DataColumn dataColumn56;
  3004. private System.Data.DataColumn dataColumn57;
  3005. private System.Data.DataColumn dataColumn58;
  3006. private System.Data.DataColumn dataColumn59;
  3007. private System.Data.DataColumn dataColumn60;
  3008. private System.Data.DataColumn dataColumn61;
  3009. private System.Data.DataColumn dataColumn62;
  3010. private System.Data.DataColumn dataColumn63;
  3011. private System.Data.DataColumn dataColumn64;
  3012. private System.Data.DataColumn dataColumn65;
  3013. private System.Data.DataColumn dataColumn66;
  3014. private System.Data.DataColumn dataColumn67;
  3015. private System.Data.DataColumn dataColumn68;
  3016. private System.Windows.Forms.Timer timer1;
  3017. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  3018. private System.Windows.Forms.Panel panel3;
  3019. private Infragistics.Win.UltraWinTabControl.UltraTabControl uTab;
  3020. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  3021. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  3022. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridSj;
  3023. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
  3024. private System.Windows.Forms.Panel panel14;
  3025. private System.Windows.Forms.Button btnSave;
  3026. private System.Windows.Forms.Button btnCheckBalance;
  3027. private System.Windows.Forms.Button btnOpenVoice;
  3028. private System.Windows.Forms.Panel panel10;
  3029. private System.Windows.Forms.Label label4;
  3030. private System.Windows.Forms.Label label3;
  3031. private System.Windows.Forms.TextBox txtGroess;
  3032. private System.Windows.Forms.Panel panel5;
  3033. private System.Windows.Forms.Panel panel1;
  3034. private System.Windows.Forms.Panel panel2;
  3035. private System.Windows.Forms.GroupBox groupBox2;
  3036. private System.Windows.Forms.TextBox txtMsgInfo;
  3037. private System.Windows.Forms.Panel panel16;
  3038. private System.Windows.Forms.Panel panel20;
  3039. private System.Windows.Forms.Label label21;
  3040. private System.Windows.Forms.Panel panel15;
  3041. private System.Windows.Forms.Button btnStart;
  3042. private System.Windows.Forms.GroupBox groupBox1;
  3043. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridPW;
  3044. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridJl;
  3045. private System.Windows.Forms.Panel panel11;
  3046. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  3047. private System.Windows.Forms.Label label7;
  3048. private System.Windows.Forms.Label label8;
  3049. private System.Windows.Forms.Label label9;
  3050. private System.Windows.Forms.Label label10;
  3051. private System.Windows.Forms.Label label11;
  3052. private System.Windows.Forms.Label label12;
  3053. private System.Windows.Forms.Label label13;
  3054. private System.Windows.Forms.Label label14;
  3055. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSEAL_NO;
  3056. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPACKAGE_NO;
  3057. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_NO;
  3058. private System.Windows.Forms.Label label15;
  3059. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBUCKET_NO;
  3060. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtCOMBIN_NO;
  3061. private System.Windows.Forms.Label label16;
  3062. private System.Windows.Forms.Label label17;
  3063. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtMEMO;
  3064. private System.Windows.Forms.DateTimePicker txtPRODUCT_DATE;
  3065. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
  3066. private MeterModuleLibrary.ucStorageWeightKg ucStorageWeightKg2;
  3067. private MeterModuleLibrary.ucStorageWeightKg ucStorageWeightKg1;
  3068. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
  3069. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbStandard;
  3070. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbGrade;
  3071. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbMatterNo;
  3072. private System.Windows.Forms.NumericUpDown txtTARE_WEIGHT;
  3073. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
  3074. private System.Data.DataColumn dataColumn69;
  3075. private System.Windows.Forms.Button btnPage;
  3076. private System.Windows.Forms.NumericUpDown txtPageNum;
  3077. private System.Windows.Forms.Panel plImgShow;
  3078. private System.Windows.Forms.PictureBox pictureShow;
  3079. private System.Windows.Forms.Button btnGQ;
  3080. private System.Windows.Forms.NumericUpDown txtBLOCK_NUM;
  3081. private System.Data.DataTable dtBranch;
  3082. private System.Data.DataColumn dataColumn141;
  3083. private System.Data.DataColumn dataColumn142;
  3084. private System.Data.DataColumn dataColumn143;
  3085. private System.Data.DataColumn dataColumn144;
  3086. private System.Data.DataColumn dataColumn145;
  3087. private System.Data.DataColumn dataColumn146;
  3088. private System.Data.DataColumn dataColumn147;
  3089. private System.Data.DataColumn dataColumn148;
  3090. private System.Data.DataColumn dataColumn149;
  3091. private System.Data.DataColumn dataColumn150;
  3092. private System.Data.DataColumn dataColumn151;
  3093. private System.Data.DataColumn dataColumn152;
  3094. private System.Data.DataColumn dataColumn153;
  3095. private System.Data.DataColumn dataColumn154;
  3096. private System.Windows.Forms.NumericUpDown txtGrossWgt;
  3097. private System.Data.DataColumn dataColumn155;
  3098. private System.Data.DataColumn dataColumn156;
  3099. private System.Data.DataColumn dataColumn157;
  3100. }
  3101. }