| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108 |
- namespace StorageMeterSystem
- {
- partial class frmMainBF
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要修改
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("计量实绩", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("actualNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("predictionNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("noticeNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("carNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("trailerNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("matterNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("matterName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("contractNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("batchNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("customerSupplierNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("customerSupplierName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("forwardingUnitNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("forwardingUnitName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("receivingUintNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("receivingUintName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("materialNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("materialName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("specNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("specName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("loadPointNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("loadPointName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("sampleNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("sampleVoucher");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("carrierUnitNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("carrierUnitName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("meterTypeNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("meterTypeName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("meterProcessNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("meterProcessEditionNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("actualFirst1No");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossWeight");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossManNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossManName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpot1No");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpot1Name");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossClass");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossGroup");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossMode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netClass");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("actualFirst2No");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareWeight");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareManNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareManName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpot2No");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpot2Name");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareClass");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareGroup");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareMode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netWeight");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("meterNum");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netManNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netManName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netSpot3No");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netSpot3Name");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netGroup");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netMode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("valueFlag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("uploadFlag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("checkManNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("checkManName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("checkTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("uploadManNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("uploadManName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("uploadTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("addWeight");
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("校秤记录", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn69 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationMainNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn70 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("spotTypeNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("spotTypeName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationNum");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn75 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationTypeNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn76 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationTypeName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn77 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationActNum");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn78 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("valueFlag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn79 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseContrastSpotNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn80 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseContrastSpotName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn81 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSuccContSpotNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn82 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSuccConSpotName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn83 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationMainTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn84 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Relation1");
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Relation1", 0);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn85 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationBranchNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn86 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationMainNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn87 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn88 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn89 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("spotTypeNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn90 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("spotTypeName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn91 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationTypeNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn92 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationTypeName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn93 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrationWeight");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn94 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("valueFlag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn95 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("calibrContrastBranchNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn96 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createManNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn97 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createManName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn98 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createTime");
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("已接管计量点", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn99 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn100 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn101 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("validFlag");
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGridSj = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet2 = new System.Data.DataSet();
- this.dataTable1 = new System.Data.DataTable();
- this.dataColumn1 = new System.Data.DataColumn();
- this.dataColumn2 = new System.Data.DataColumn();
- this.dataColumn3 = new System.Data.DataColumn();
- this.dataColumn4 = new System.Data.DataColumn();
- this.dataColumn5 = new System.Data.DataColumn();
- this.dataColumn6 = new System.Data.DataColumn();
- this.dataColumn7 = new System.Data.DataColumn();
- this.dataColumn8 = new System.Data.DataColumn();
- this.dataColumn9 = new System.Data.DataColumn();
- this.dataColumn10 = new System.Data.DataColumn();
- this.dataColumn11 = new System.Data.DataColumn();
- this.dataColumn12 = new System.Data.DataColumn();
- this.dataColumn13 = new System.Data.DataColumn();
- this.dataColumn14 = new System.Data.DataColumn();
- this.dataColumn15 = new System.Data.DataColumn();
- this.dataColumn16 = new System.Data.DataColumn();
- this.dataColumn17 = new System.Data.DataColumn();
- this.dataColumn18 = new System.Data.DataColumn();
- this.dataColumn19 = new System.Data.DataColumn();
- this.dataColumn20 = new System.Data.DataColumn();
- this.dataColumn21 = new System.Data.DataColumn();
- this.dataColumn22 = new System.Data.DataColumn();
- this.dataColumn23 = new System.Data.DataColumn();
- this.dataColumn24 = new System.Data.DataColumn();
- this.dataColumn25 = new System.Data.DataColumn();
- this.dataColumn26 = new System.Data.DataColumn();
- this.dataColumn27 = new System.Data.DataColumn();
- this.dataColumn28 = new System.Data.DataColumn();
- this.dataColumn29 = new System.Data.DataColumn();
- this.dataColumn30 = new System.Data.DataColumn();
- this.dataColumn31 = new System.Data.DataColumn();
- this.dataColumn32 = new System.Data.DataColumn();
- this.dataColumn33 = new System.Data.DataColumn();
- this.dataColumn34 = new System.Data.DataColumn();
- this.dataColumn35 = new System.Data.DataColumn();
- this.dataColumn36 = new System.Data.DataColumn();
- this.dataColumn37 = new System.Data.DataColumn();
- this.dataColumn38 = new System.Data.DataColumn();
- this.dataColumn39 = new System.Data.DataColumn();
- this.dataColumn40 = new System.Data.DataColumn();
- this.dataColumn41 = new System.Data.DataColumn();
- this.dataColumn42 = new System.Data.DataColumn();
- this.dataColumn43 = new System.Data.DataColumn();
- this.dataColumn44 = new System.Data.DataColumn();
- this.dataColumn45 = new System.Data.DataColumn();
- this.dataColumn46 = new System.Data.DataColumn();
- this.dataColumn47 = new System.Data.DataColumn();
- this.dataColumn48 = new System.Data.DataColumn();
- this.dataColumn49 = new System.Data.DataColumn();
- this.dataColumn50 = new System.Data.DataColumn();
- this.dataColumn51 = new System.Data.DataColumn();
- this.dataColumn52 = new System.Data.DataColumn();
- this.dataColumn53 = new System.Data.DataColumn();
- this.dataColumn54 = new System.Data.DataColumn();
- this.dataColumn55 = new System.Data.DataColumn();
- this.dataColumn56 = new System.Data.DataColumn();
- this.dataColumn57 = new System.Data.DataColumn();
- this.dataColumn58 = new System.Data.DataColumn();
- this.dataColumn59 = new System.Data.DataColumn();
- this.dataColumn60 = new System.Data.DataColumn();
- this.dataColumn61 = new System.Data.DataColumn();
- this.dataColumn62 = new System.Data.DataColumn();
- this.dataColumn63 = new System.Data.DataColumn();
- this.dataColumn64 = new System.Data.DataColumn();
- this.dataColumn65 = new System.Data.DataColumn();
- this.dataColumn66 = new System.Data.DataColumn();
- this.dataColumn67 = new System.Data.DataColumn();
- this.dataColumn68 = new System.Data.DataColumn();
- this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGridJl = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet1 = new System.Data.DataSet();
- this.dtCalibration = new System.Data.DataTable();
- this.dataColumn126 = new System.Data.DataColumn();
- this.dataColumn127 = new System.Data.DataColumn();
- this.dataColumn128 = new System.Data.DataColumn();
- this.dataColumn129 = new System.Data.DataColumn();
- this.dataColumn130 = new System.Data.DataColumn();
- this.dataColumn131 = new System.Data.DataColumn();
- this.dataColumn132 = new System.Data.DataColumn();
- this.dataColumn133 = new System.Data.DataColumn();
- this.dataColumn134 = new System.Data.DataColumn();
- this.dataColumn135 = new System.Data.DataColumn();
- this.dataColumn136 = new System.Data.DataColumn();
- this.dataColumn137 = new System.Data.DataColumn();
- this.dataColumn138 = new System.Data.DataColumn();
- this.dataColumn139 = new System.Data.DataColumn();
- this.dataColumn140 = new System.Data.DataColumn();
- this.dtJGPointInfo = new System.Data.DataTable();
- this.dataColumn155 = new System.Data.DataColumn();
- this.dataColumn156 = new System.Data.DataColumn();
- this.dataColumn157 = new System.Data.DataColumn();
- this.dtBranch = new System.Data.DataTable();
- this.dataColumn141 = new System.Data.DataColumn();
- this.dataColumn142 = new System.Data.DataColumn();
- this.dataColumn143 = new System.Data.DataColumn();
- this.dataColumn144 = new System.Data.DataColumn();
- this.dataColumn145 = new System.Data.DataColumn();
- this.dataColumn146 = new System.Data.DataColumn();
- this.dataColumn147 = new System.Data.DataColumn();
- this.dataColumn148 = new System.Data.DataColumn();
- this.dataColumn149 = new System.Data.DataColumn();
- this.dataColumn150 = new System.Data.DataColumn();
- this.dataColumn151 = new System.Data.DataColumn();
- this.dataColumn152 = new System.Data.DataColumn();
- this.dataColumn153 = new System.Data.DataColumn();
- this.dataColumn154 = new System.Data.DataColumn();
- this.dtPreTrackScale = new System.Data.DataTable();
- this.dataColumn70 = new System.Data.DataColumn();
- this.dataColumn71 = new System.Data.DataColumn();
- this.dataColumn72 = new System.Data.DataColumn();
- this.dataColumn73 = new System.Data.DataColumn();
- this.dataColumn74 = new System.Data.DataColumn();
- this.dataColumn75 = new System.Data.DataColumn();
- this.dataColumn76 = new System.Data.DataColumn();
- this.dataColumn77 = new System.Data.DataColumn();
- this.dataColumn78 = new System.Data.DataColumn();
- this.dataColumn79 = new System.Data.DataColumn();
- this.dataColumn80 = new System.Data.DataColumn();
- this.dataColumn81 = new System.Data.DataColumn();
- this.dataColumn82 = new System.Data.DataColumn();
- this.dataColumn83 = new System.Data.DataColumn();
- this.dataColumn84 = new System.Data.DataColumn();
- this.dataColumn85 = new System.Data.DataColumn();
- this.dataColumn86 = new System.Data.DataColumn();
- this.dataColumn87 = new System.Data.DataColumn();
- this.dataColumn88 = new System.Data.DataColumn();
- this.dataColumn89 = new System.Data.DataColumn();
- this.dataColumn90 = new System.Data.DataColumn();
- this.dataColumn91 = new System.Data.DataColumn();
- this.dataColumn92 = new System.Data.DataColumn();
- this.dataColumn93 = new System.Data.DataColumn();
- this.dataColumn94 = new System.Data.DataColumn();
- this.dataColumn95 = new System.Data.DataColumn();
- this.dataColumn96 = new System.Data.DataColumn();
- this.dataColumn97 = new System.Data.DataColumn();
- this.dataColumn98 = new System.Data.DataColumn();
- this.dataColumn99 = new System.Data.DataColumn();
- this.dataColumn100 = new System.Data.DataColumn();
- this.dataColumn101 = new System.Data.DataColumn();
- this.dataColumn102 = new System.Data.DataColumn();
- this.dataColumn103 = new System.Data.DataColumn();
- this.dataColumn104 = new System.Data.DataColumn();
- this.dataColumn105 = new System.Data.DataColumn();
- this.dataColumn106 = new System.Data.DataColumn();
- this.dataColumn107 = new System.Data.DataColumn();
- this.dataColumn108 = new System.Data.DataColumn();
- this.dataColumn109 = new System.Data.DataColumn();
- this.dataColumn110 = new System.Data.DataColumn();
- this.dataColumn111 = new System.Data.DataColumn();
- this.dataColumn112 = new System.Data.DataColumn();
- this.dataColumn113 = new System.Data.DataColumn();
- this.dataColumn114 = new System.Data.DataColumn();
- this.dataColumn115 = new System.Data.DataColumn();
- this.dataColumn116 = new System.Data.DataColumn();
- this.dataColumn117 = new System.Data.DataColumn();
- this.dataColumn118 = new System.Data.DataColumn();
- this.dataColumn119 = new System.Data.DataColumn();
- this.dataColumn120 = new System.Data.DataColumn();
- this.dataColumn121 = new System.Data.DataColumn();
- this.dataColumn122 = new System.Data.DataColumn();
- this.dataColumn123 = new System.Data.DataColumn();
- this.dataColumn124 = new System.Data.DataColumn();
- this.dataColumn125 = new System.Data.DataColumn();
- this.dataColumn158 = new System.Data.DataColumn();
- this.dataColumn159 = new System.Data.DataColumn();
- this.dataColumn69 = new System.Data.DataColumn();
- this.timer1 = new System.Windows.Forms.Timer(this.components);
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.panel3 = new System.Windows.Forms.Panel();
- this.uTab = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.panel14 = new System.Windows.Forms.Panel();
- this.txtGrossWgt = new System.Windows.Forms.NumericUpDown();
- this.btnSave = new System.Windows.Forms.Button();
- this.btnCheckBalance = new System.Windows.Forms.Button();
- this.btnOpenVoice = new System.Windows.Forms.Button();
- this.panel11 = new System.Windows.Forms.Panel();
- this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
- this.txtBLOCK_NUM = new System.Windows.Forms.NumericUpDown();
- this.cmbStandard = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.cmbGrade = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.cmbMatterNo = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label7 = new System.Windows.Forms.Label();
- this.label8 = new System.Windows.Forms.Label();
- this.label9 = new System.Windows.Forms.Label();
- this.label10 = new System.Windows.Forms.Label();
- this.label11 = new System.Windows.Forms.Label();
- this.label12 = new System.Windows.Forms.Label();
- this.label13 = new System.Windows.Forms.Label();
- this.label14 = new System.Windows.Forms.Label();
- this.txtSEAL_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtPACKAGE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtBATCH_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label15 = new System.Windows.Forms.Label();
- this.txtBUCKET_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtCOMBIN_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label16 = new System.Windows.Forms.Label();
- this.label17 = new System.Windows.Forms.Label();
- this.txtMEMO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtPRODUCT_DATE = new System.Windows.Forms.DateTimePicker();
- this.panel10 = new System.Windows.Forms.Panel();
- this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
- this.txtPageNum = new System.Windows.Forms.NumericUpDown();
- this.btnPage = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.txtGroess = new System.Windows.Forms.TextBox();
- this.label4 = new System.Windows.Forms.Label();
- this.panel5 = new System.Windows.Forms.Panel();
- this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
- this.ucStorageWeightKg2 = new MeterModuleLibrary.ucStorageWeightKg();
- this.ucStorageWeightKg1 = new MeterModuleLibrary.ucStorageWeightKg();
- this.panel1 = new System.Windows.Forms.Panel();
- this.panel2 = new System.Windows.Forms.Panel();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.txtMsgInfo = new System.Windows.Forms.TextBox();
- this.panel16 = new System.Windows.Forms.Panel();
- this.panel20 = new System.Windows.Forms.Panel();
- this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
- this.txtTARE_WEIGHT = new System.Windows.Forms.NumericUpDown();
- this.label21 = new System.Windows.Forms.Label();
- this.panel15 = new System.Windows.Forms.Panel();
- this.btnGQ = new System.Windows.Forms.Button();
- this.btnStart = new System.Windows.Forms.Button();
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.ultraGridPW = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.plImgShow = new System.Windows.Forms.Panel();
- this.pictureShow = new System.Windows.Forms.PictureBox();
- this.ultraTabPageControl1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridSj)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- this.ultraTabPageControl3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridJl)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtCalibration)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtJGPointInfo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtBranch)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtPreTrackScale)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- this.panel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.uTab)).BeginInit();
- this.uTab.SuspendLayout();
- this.panel14.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtGrossWgt)).BeginInit();
- this.panel11.SuspendLayout();
- this.tableLayoutPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtBLOCK_NUM)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbStandard)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbGrade)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbMatterNo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSEAL_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPACKAGE_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBUCKET_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCOMBIN_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtMEMO)).BeginInit();
- this.panel10.SuspendLayout();
- this.tableLayoutPanel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtPageNum)).BeginInit();
- this.panel5.SuspendLayout();
- this.tableLayoutPanel2.SuspendLayout();
- this.panel2.SuspendLayout();
- this.groupBox2.SuspendLayout();
- this.panel16.SuspendLayout();
- this.panel20.SuspendLayout();
- this.tableLayoutPanel4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtTARE_WEIGHT)).BeginInit();
- this.panel15.SuspendLayout();
- this.groupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridPW)).BeginInit();
- this.plImgShow.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureShow)).BeginInit();
- this.SuspendLayout();
- //
- // ultraTabPageControl1
- //
- this.ultraTabPageControl1.Controls.Add(this.ultraGridSj);
- this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 25);
- this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(2);
- this.ultraTabPageControl1.Name = "ultraTabPageControl1";
- this.ultraTabPageControl1.Size = new System.Drawing.Size(749, 450);
- //
- // ultraGridSj
- //
- this.ultraGridSj.DataMember = "计量实绩";
- this.ultraGridSj.DataSource = this.dataSet2;
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn3.Header.VisiblePosition = 2;
- ultraGridColumn3.Hidden = true;
- ultraGridColumn4.Header.VisiblePosition = 3;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn5.Header.VisiblePosition = 4;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn6.Header.VisiblePosition = 5;
- ultraGridColumn6.Hidden = true;
- ultraGridColumn7.Header.VisiblePosition = 6;
- ultraGridColumn7.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn8.Header.VisiblePosition = 7;
- ultraGridColumn8.Hidden = true;
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn9.Header.VisiblePosition = 8;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn10.Header.VisiblePosition = 9;
- ultraGridColumn10.Hidden = true;
- ultraGridColumn10.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn11.Header.VisiblePosition = 10;
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn12.Header.VisiblePosition = 11;
- ultraGridColumn12.Hidden = true;
- ultraGridColumn12.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn13.Header.VisiblePosition = 12;
- ultraGridColumn13.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn14.Header.VisiblePosition = 13;
- ultraGridColumn14.Hidden = true;
- ultraGridColumn14.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn15.Header.VisiblePosition = 14;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn16.Header.VisiblePosition = 15;
- ultraGridColumn16.Hidden = true;
- ultraGridColumn16.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn17.Header.VisiblePosition = 16;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn18.Header.VisiblePosition = 17;
- ultraGridColumn18.Hidden = true;
- ultraGridColumn18.RowLayoutColumnInfo.OriginX = 28;
- ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn18.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn19.Header.VisiblePosition = 18;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn20.Header.VisiblePosition = 19;
- ultraGridColumn20.Hidden = true;
- ultraGridColumn20.RowLayoutColumnInfo.OriginX = 32;
- ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn21.Header.VisiblePosition = 20;
- ultraGridColumn21.Hidden = true;
- ultraGridColumn21.RowLayoutColumnInfo.OriginX = 34;
- ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn22.Header.VisiblePosition = 21;
- ultraGridColumn22.Hidden = true;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 36;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn23.Header.VisiblePosition = 22;
- ultraGridColumn23.Hidden = true;
- ultraGridColumn23.RowLayoutColumnInfo.OriginX = 38;
- ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn24.Header.VisiblePosition = 23;
- ultraGridColumn24.Hidden = true;
- ultraGridColumn24.RowLayoutColumnInfo.OriginX = 40;
- ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn25.Header.VisiblePosition = 24;
- ultraGridColumn25.Hidden = true;
- ultraGridColumn25.RowLayoutColumnInfo.OriginX = 42;
- ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn26.Header.VisiblePosition = 25;
- ultraGridColumn26.Hidden = true;
- ultraGridColumn26.RowLayoutColumnInfo.OriginX = 44;
- ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn27.Header.VisiblePosition = 26;
- ultraGridColumn27.Hidden = true;
- ultraGridColumn27.RowLayoutColumnInfo.OriginX = 46;
- ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn28.Header.VisiblePosition = 27;
- ultraGridColumn28.Hidden = true;
- ultraGridColumn28.RowLayoutColumnInfo.OriginX = 48;
- ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn29.Header.VisiblePosition = 28;
- ultraGridColumn29.Hidden = true;
- ultraGridColumn30.Header.VisiblePosition = 29;
- ultraGridColumn30.Hidden = true;
- ultraGridColumn31.Header.VisiblePosition = 30;
- ultraGridColumn31.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn32.Header.VisiblePosition = 31;
- ultraGridColumn32.Hidden = true;
- ultraGridColumn33.Header.VisiblePosition = 32;
- ultraGridColumn33.Hidden = true;
- ultraGridColumn34.Header.VisiblePosition = 33;
- ultraGridColumn34.Hidden = true;
- ultraGridColumn35.Header.VisiblePosition = 34;
- ultraGridColumn35.Hidden = true;
- ultraGridColumn36.Header.VisiblePosition = 35;
- ultraGridColumn36.Hidden = true;
- ultraGridColumn37.Header.VisiblePosition = 36;
- ultraGridColumn37.Hidden = true;
- ultraGridColumn38.Header.VisiblePosition = 37;
- ultraGridColumn38.Hidden = true;
- ultraGridColumn39.Header.VisiblePosition = 38;
- ultraGridColumn39.Hidden = true;
- ultraGridColumn40.Header.VisiblePosition = 39;
- ultraGridColumn40.Hidden = true;
- ultraGridColumn41.Header.VisiblePosition = 40;
- ultraGridColumn41.Hidden = true;
- ultraGridColumn42.Header.VisiblePosition = 41;
- ultraGridColumn42.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn43.Header.VisiblePosition = 42;
- ultraGridColumn43.Hidden = true;
- ultraGridColumn44.Header.VisiblePosition = 43;
- ultraGridColumn44.Hidden = true;
- ultraGridColumn45.Header.VisiblePosition = 44;
- ultraGridColumn45.Hidden = true;
- ultraGridColumn46.Header.VisiblePosition = 45;
- ultraGridColumn46.Hidden = true;
- ultraGridColumn47.Header.VisiblePosition = 46;
- ultraGridColumn47.Hidden = true;
- ultraGridColumn48.Header.VisiblePosition = 47;
- ultraGridColumn48.Hidden = true;
- ultraGridColumn49.Header.VisiblePosition = 48;
- ultraGridColumn49.Hidden = true;
- ultraGridColumn50.Header.VisiblePosition = 49;
- ultraGridColumn50.Hidden = true;
- ultraGridColumn51.Header.VisiblePosition = 50;
- ultraGridColumn51.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn51.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn51.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn52.Header.VisiblePosition = 51;
- ultraGridColumn52.Hidden = true;
- ultraGridColumn53.Header.VisiblePosition = 52;
- ultraGridColumn53.Hidden = true;
- ultraGridColumn54.Header.VisiblePosition = 53;
- ultraGridColumn54.Hidden = true;
- ultraGridColumn55.Header.VisiblePosition = 54;
- ultraGridColumn55.Hidden = true;
- ultraGridColumn56.Header.VisiblePosition = 55;
- ultraGridColumn56.Hidden = true;
- ultraGridColumn57.Header.VisiblePosition = 56;
- ultraGridColumn57.Hidden = true;
- ultraGridColumn58.Header.VisiblePosition = 57;
- ultraGridColumn58.Hidden = true;
- ultraGridColumn59.Header.VisiblePosition = 58;
- ultraGridColumn59.Hidden = true;
- ultraGridColumn60.Header.VisiblePosition = 59;
- ultraGridColumn60.Hidden = true;
- ultraGridColumn61.Header.VisiblePosition = 60;
- ultraGridColumn61.Hidden = true;
- ultraGridColumn62.Header.VisiblePosition = 61;
- ultraGridColumn62.Hidden = true;
- ultraGridColumn63.Header.VisiblePosition = 62;
- ultraGridColumn63.Hidden = true;
- ultraGridColumn64.Header.VisiblePosition = 63;
- ultraGridColumn64.Hidden = true;
- ultraGridColumn65.Header.VisiblePosition = 64;
- ultraGridColumn65.Hidden = true;
- ultraGridColumn66.Header.VisiblePosition = 65;
- ultraGridColumn66.Hidden = true;
- ultraGridColumn67.Header.VisiblePosition = 66;
- ultraGridColumn67.Hidden = true;
- ultraGridColumn68.Header.VisiblePosition = 67;
- ultraGridColumn68.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn68.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn68.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn68.RowLayoutColumnInfo.SpanY = 2;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8,
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15,
- ultraGridColumn16,
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19,
- ultraGridColumn20,
- ultraGridColumn21,
- ultraGridColumn22,
- ultraGridColumn23,
- ultraGridColumn24,
- ultraGridColumn25,
- ultraGridColumn26,
- ultraGridColumn27,
- ultraGridColumn28,
- ultraGridColumn29,
- ultraGridColumn30,
- ultraGridColumn31,
- ultraGridColumn32,
- ultraGridColumn33,
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38,
- ultraGridColumn39,
- ultraGridColumn40,
- ultraGridColumn41,
- ultraGridColumn42,
- ultraGridColumn43,
- ultraGridColumn44,
- ultraGridColumn45,
- ultraGridColumn46,
- ultraGridColumn47,
- ultraGridColumn48,
- ultraGridColumn49,
- ultraGridColumn50,
- ultraGridColumn51,
- ultraGridColumn52,
- ultraGridColumn53,
- ultraGridColumn54,
- ultraGridColumn55,
- ultraGridColumn56,
- ultraGridColumn57,
- ultraGridColumn58,
- ultraGridColumn59,
- ultraGridColumn60,
- ultraGridColumn61,
- ultraGridColumn62,
- ultraGridColumn63,
- ultraGridColumn64,
- ultraGridColumn65,
- ultraGridColumn66,
- ultraGridColumn67,
- ultraGridColumn68});
- ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
- this.ultraGridSj.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ultraGridSj.DisplayLayout.DefaultSelectedBackColor = System.Drawing.Color.Empty;
- this.ultraGridSj.DisplayLayout.DefaultSelectedForeColor = System.Drawing.Color.Empty;
- this.ultraGridSj.DisplayLayout.Override.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Button3D;
- appearance13.TextVAlignAsString = "Middle";
- this.ultraGridSj.DisplayLayout.Override.CellAppearance = appearance13;
- this.ultraGridSj.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
- appearance14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- appearance14.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- this.ultraGridSj.DisplayLayout.Override.HeaderAppearance = appearance14;
- this.ultraGridSj.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- this.ultraGridSj.DisplayLayout.Override.MaxSelectedRows = 1;
- this.ultraGridSj.DisplayLayout.Override.MinRowHeight = 21;
- appearance15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- appearance15.TextVAlignAsString = "Middle";
- this.ultraGridSj.DisplayLayout.Override.RowSelectorAppearance = appearance15;
- this.ultraGridSj.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ultraGridSj.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.ultraGridSj.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- this.ultraGridSj.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
- this.ultraGridSj.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGridSj.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGridSj.Location = new System.Drawing.Point(0, 0);
- this.ultraGridSj.Name = "ultraGridSj";
- this.ultraGridSj.Size = new System.Drawing.Size(749, 450);
- this.ultraGridSj.TabIndex = 5;
- //
- // dataSet2
- //
- this.dataSet2.DataSetName = "NewDataSet";
- this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable1});
- //
- // dataTable1
- //
- this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn1,
- this.dataColumn2,
- this.dataColumn3,
- this.dataColumn4,
- this.dataColumn5,
- this.dataColumn6,
- this.dataColumn7,
- this.dataColumn8,
- this.dataColumn9,
- this.dataColumn10,
- this.dataColumn11,
- this.dataColumn12,
- this.dataColumn13,
- this.dataColumn14,
- this.dataColumn15,
- this.dataColumn16,
- this.dataColumn17,
- this.dataColumn18,
- this.dataColumn19,
- this.dataColumn20,
- this.dataColumn21,
- this.dataColumn22,
- this.dataColumn23,
- this.dataColumn24,
- this.dataColumn25,
- this.dataColumn26,
- this.dataColumn27,
- this.dataColumn28,
- this.dataColumn29,
- this.dataColumn30,
- this.dataColumn31,
- this.dataColumn32,
- this.dataColumn33,
- this.dataColumn34,
- this.dataColumn35,
- this.dataColumn36,
- this.dataColumn37,
- this.dataColumn38,
- this.dataColumn39,
- this.dataColumn40,
- this.dataColumn41,
- this.dataColumn42,
- this.dataColumn43,
- this.dataColumn44,
- this.dataColumn45,
- this.dataColumn46,
- this.dataColumn47,
- this.dataColumn48,
- this.dataColumn49,
- this.dataColumn50,
- this.dataColumn51,
- this.dataColumn52,
- this.dataColumn53,
- this.dataColumn54,
- this.dataColumn55,
- this.dataColumn56,
- this.dataColumn57,
- this.dataColumn58,
- this.dataColumn59,
- this.dataColumn60,
- this.dataColumn61,
- this.dataColumn62,
- this.dataColumn63,
- this.dataColumn64,
- this.dataColumn65,
- this.dataColumn66,
- this.dataColumn67,
- this.dataColumn68});
- this.dataTable1.TableName = "计量实绩";
- //
- // dataColumn1
- //
- this.dataColumn1.Caption = "结净编号";
- this.dataColumn1.ColumnName = "actualNo";
- //
- // dataColumn2
- //
- this.dataColumn2.Caption = "预报编号";
- this.dataColumn2.ColumnName = "predictionNo";
- //
- // dataColumn3
- //
- this.dataColumn3.Caption = "通知单号";
- this.dataColumn3.ColumnName = "noticeNo";
- //
- // dataColumn4
- //
- this.dataColumn4.Caption = "车号";
- this.dataColumn4.ColumnName = "carNo";
- //
- // dataColumn5
- //
- this.dataColumn5.Caption = "挂号";
- this.dataColumn5.ColumnName = "trailerNo";
- //
- // dataColumn6
- //
- this.dataColumn6.Caption = "物料编号";
- this.dataColumn6.ColumnName = "matterNo";
- //
- // dataColumn7
- //
- this.dataColumn7.Caption = "物料名称";
- this.dataColumn7.ColumnName = "matterName";
- //
- // dataColumn8
- //
- this.dataColumn8.Caption = "合同号";
- this.dataColumn8.ColumnName = "contractNo";
- //
- // dataColumn9
- //
- this.dataColumn9.Caption = "批次号";
- this.dataColumn9.ColumnName = "batchNo";
- //
- // dataColumn10
- //
- this.dataColumn10.Caption = "供应商编号";
- this.dataColumn10.ColumnName = "customerSupplierNo";
- //
- // dataColumn11
- //
- this.dataColumn11.Caption = "供应商名称";
- this.dataColumn11.ColumnName = "customerSupplierName";
- //
- // dataColumn12
- //
- this.dataColumn12.Caption = "发货单位编号";
- this.dataColumn12.ColumnName = "forwardingUnitNo";
- //
- // dataColumn13
- //
- this.dataColumn13.Caption = "发货单位名称";
- this.dataColumn13.ColumnName = "forwardingUnitName";
- //
- // dataColumn14
- //
- this.dataColumn14.Caption = "收货单位编号";
- this.dataColumn14.ColumnName = "receivingUintNo";
- //
- // dataColumn15
- //
- this.dataColumn15.Caption = "收货单位名称";
- this.dataColumn15.ColumnName = "receivingUintName";
- //
- // dataColumn16
- //
- this.dataColumn16.Caption = "材质编号";
- this.dataColumn16.ColumnName = "materialNo";
- //
- // dataColumn17
- //
- this.dataColumn17.Caption = "材质名称";
- this.dataColumn17.ColumnName = "materialName";
- //
- // dataColumn18
- //
- this.dataColumn18.Caption = "规格编号";
- this.dataColumn18.ColumnName = "specNo";
- //
- // dataColumn19
- //
- this.dataColumn19.Caption = "规格名称";
- this.dataColumn19.ColumnName = "specName";
- //
- // dataColumn20
- //
- this.dataColumn20.Caption = "卸货地点编号";
- this.dataColumn20.ColumnName = "loadPointNo";
- //
- // dataColumn21
- //
- this.dataColumn21.Caption = "卸货地点名称";
- this.dataColumn21.ColumnName = "loadPointName";
- //
- // dataColumn22
- //
- this.dataColumn22.Caption = "取样编号";
- this.dataColumn22.ColumnName = "sampleNo";
- //
- // dataColumn23
- //
- this.dataColumn23.Caption = "取样凭证";
- this.dataColumn23.ColumnName = "sampleVoucher";
- //
- // dataColumn24
- //
- this.dataColumn24.Caption = "承运单位编号";
- this.dataColumn24.ColumnName = "carrierUnitNo";
- //
- // dataColumn25
- //
- this.dataColumn25.Caption = "承运单位名称";
- this.dataColumn25.ColumnName = "carrierUnitName";
- //
- // dataColumn26
- //
- this.dataColumn26.Caption = "计量类型编号";
- this.dataColumn26.ColumnName = "meterTypeNo";
- //
- // dataColumn27
- //
- this.dataColumn27.Caption = "计量类型名称";
- this.dataColumn27.ColumnName = "meterTypeName";
- //
- // dataColumn28
- //
- this.dataColumn28.Caption = "计量流程编号";
- this.dataColumn28.ColumnName = "meterProcessNo";
- //
- // dataColumn29
- //
- this.dataColumn29.Caption = "计量流程版本号";
- this.dataColumn29.ColumnName = "meterProcessEditionNo";
- //
- // dataColumn30
- //
- this.dataColumn30.Caption = "毛重计量作业编号";
- this.dataColumn30.ColumnName = "actualFirst1No";
- //
- // dataColumn31
- //
- this.dataColumn31.Caption = "毛重";
- this.dataColumn31.ColumnName = "grossWeight";
- //
- // dataColumn32
- //
- this.dataColumn32.Caption = "毛重计量员编号";
- this.dataColumn32.ColumnName = "grossManNo";
- //
- // dataColumn33
- //
- this.dataColumn33.Caption = "毛重计量员姓名";
- this.dataColumn33.ColumnName = "grossManName";
- //
- // dataColumn34
- //
- this.dataColumn34.Caption = "毛重计量时间";
- this.dataColumn34.ColumnName = "grossTime";
- //
- // dataColumn35
- //
- this.dataColumn35.Caption = "毛重计量点编号";
- this.dataColumn35.ColumnName = "baseSpot1No";
- //
- // dataColumn36
- //
- this.dataColumn36.Caption = "毛重计量点名称";
- this.dataColumn36.ColumnName = "baseSpot1Name";
- //
- // dataColumn37
- //
- this.dataColumn37.Caption = "毛重班次";
- this.dataColumn37.ColumnName = "grossClass";
- //
- // dataColumn38
- //
- this.dataColumn38.Caption = "毛重班组";
- this.dataColumn38.ColumnName = "grossGroup";
- //
- // dataColumn39
- //
- this.dataColumn39.Caption = "毛重计量方式";
- this.dataColumn39.ColumnName = "grossMode";
- //
- // dataColumn40
- //
- this.dataColumn40.Caption = "净重班次";
- this.dataColumn40.ColumnName = "netClass";
- //
- // dataColumn41
- //
- this.dataColumn41.Caption = "皮重计量作业编号";
- this.dataColumn41.ColumnName = "actualFirst2No";
- //
- // dataColumn42
- //
- this.dataColumn42.Caption = "皮重";
- this.dataColumn42.ColumnName = "tareWeight";
- //
- // dataColumn43
- //
- this.dataColumn43.Caption = "皮重计量员编号";
- this.dataColumn43.ColumnName = "tareManNo";
- //
- // dataColumn44
- //
- this.dataColumn44.Caption = "皮重计量员姓名";
- this.dataColumn44.ColumnName = "tareManName";
- //
- // dataColumn45
- //
- this.dataColumn45.Caption = "皮重计量时间";
- this.dataColumn45.ColumnName = "tareTime";
- //
- // dataColumn46
- //
- this.dataColumn46.Caption = "皮重计量点编号";
- this.dataColumn46.ColumnName = "baseSpot2No";
- //
- // dataColumn47
- //
- this.dataColumn47.Caption = "皮重计量点名称";
- this.dataColumn47.ColumnName = "baseSpot2Name";
- //
- // dataColumn48
- //
- this.dataColumn48.Caption = "皮重班次";
- this.dataColumn48.ColumnName = "tareClass";
- //
- // dataColumn49
- //
- this.dataColumn49.Caption = "皮重班组";
- this.dataColumn49.ColumnName = "tareGroup";
- //
- // dataColumn50
- //
- this.dataColumn50.Caption = "皮重计量方式";
- this.dataColumn50.ColumnName = "tareMode";
- //
- // dataColumn51
- //
- this.dataColumn51.Caption = "净重";
- this.dataColumn51.ColumnName = "netWeight";
- //
- // dataColumn52
- //
- this.dataColumn52.Caption = "计量数量";
- this.dataColumn52.ColumnName = "meterNum";
- //
- // dataColumn53
- //
- this.dataColumn53.Caption = "净重计量员编号";
- this.dataColumn53.ColumnName = "netManNo";
- //
- // dataColumn54
- //
- this.dataColumn54.Caption = "净重计量员姓名";
- this.dataColumn54.ColumnName = "netManName";
- //
- // dataColumn55
- //
- this.dataColumn55.Caption = "净重计量时间";
- this.dataColumn55.ColumnName = "netTime";
- //
- // dataColumn56
- //
- this.dataColumn56.Caption = "净重计量点编号";
- this.dataColumn56.ColumnName = "netSpot3No";
- //
- // dataColumn57
- //
- this.dataColumn57.Caption = "净重计量点名称";
- this.dataColumn57.ColumnName = "netSpot3Name";
- //
- // dataColumn58
- //
- this.dataColumn58.Caption = "净重班组";
- this.dataColumn58.ColumnName = "netGroup";
- //
- // dataColumn59
- //
- this.dataColumn59.Caption = "结净方式";
- this.dataColumn59.ColumnName = "netMode";
- //
- // dataColumn60
- //
- this.dataColumn60.Caption = "状态";
- this.dataColumn60.ColumnName = "valueFlag";
- //
- // dataColumn61
- //
- this.dataColumn61.Caption = "上传状态";
- this.dataColumn61.ColumnName = "uploadFlag";
- //
- // dataColumn62
- //
- this.dataColumn62.Caption = "审核人编号";
- this.dataColumn62.ColumnName = "checkManNo";
- //
- // dataColumn63
- //
- this.dataColumn63.Caption = "审核人姓名";
- this.dataColumn63.ColumnName = "checkManName";
- //
- // dataColumn64
- //
- this.dataColumn64.Caption = "审核时间";
- this.dataColumn64.ColumnName = "checkTime";
- //
- // dataColumn65
- //
- this.dataColumn65.Caption = "上传人编号";
- this.dataColumn65.ColumnName = "uploadManNo";
- //
- // dataColumn66
- //
- this.dataColumn66.Caption = "上传人姓名";
- this.dataColumn66.ColumnName = "uploadManName";
- //
- // dataColumn67
- //
- this.dataColumn67.Caption = "上传时间";
- this.dataColumn67.ColumnName = "uploadTime";
- //
- // dataColumn68
- //
- this.dataColumn68.Caption = "附加重量";
- this.dataColumn68.ColumnName = "addWeight";
- //
- // ultraTabPageControl3
- //
- this.ultraTabPageControl3.Controls.Add(this.ultraGridJl);
- this.ultraTabPageControl3.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl3.Margin = new System.Windows.Forms.Padding(2);
- this.ultraTabPageControl3.Name = "ultraTabPageControl3";
- this.ultraTabPageControl3.Size = new System.Drawing.Size(749, 450);
- //
- // ultraGridJl
- //
- this.ultraGridJl.DataMember = "校秤记录";
- this.ultraGridJl.DataSource = this.dataSet1;
- ultraGridColumn69.Header.VisiblePosition = 0;
- ultraGridColumn69.Hidden = true;
- ultraGridColumn70.Header.VisiblePosition = 1;
- ultraGridColumn70.Hidden = true;
- ultraGridColumn71.Header.VisiblePosition = 2;
- ultraGridColumn71.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn71.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn71.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn71.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn72.Header.VisiblePosition = 3;
- ultraGridColumn72.Hidden = true;
- ultraGridColumn73.Header.VisiblePosition = 4;
- ultraGridColumn73.Hidden = true;
- ultraGridColumn73.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn73.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn73.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn73.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn74.Header.VisiblePosition = 5;
- ultraGridColumn74.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn74.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn74.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn74.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn75.Header.VisiblePosition = 6;
- ultraGridColumn75.Hidden = true;
- ultraGridColumn76.Header.VisiblePosition = 7;
- ultraGridColumn76.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn76.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn76.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn76.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn77.Header.VisiblePosition = 8;
- ultraGridColumn77.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn77.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn77.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(126, 0);
- ultraGridColumn77.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn77.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn78.Header.VisiblePosition = 9;
- ultraGridColumn78.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn78.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn78.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn78.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn79.Header.VisiblePosition = 10;
- ultraGridColumn79.Hidden = true;
- ultraGridColumn79.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn79.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn79.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn79.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn80.Header.VisiblePosition = 11;
- ultraGridColumn80.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn80.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn80.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(126, 0);
- ultraGridColumn80.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn80.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn81.Header.VisiblePosition = 12;
- ultraGridColumn81.Hidden = true;
- ultraGridColumn81.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn81.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn81.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn81.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn82.Header.VisiblePosition = 13;
- ultraGridColumn82.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn82.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn82.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(126, 0);
- ultraGridColumn82.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn82.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn83.Header.VisiblePosition = 14;
- ultraGridColumn83.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn83.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn83.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn83.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn84.Header.VisiblePosition = 15;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn69,
- ultraGridColumn70,
- ultraGridColumn71,
- ultraGridColumn72,
- ultraGridColumn73,
- ultraGridColumn74,
- ultraGridColumn75,
- ultraGridColumn76,
- ultraGridColumn77,
- ultraGridColumn78,
- ultraGridColumn79,
- ultraGridColumn80,
- ultraGridColumn81,
- ultraGridColumn82,
- ultraGridColumn83,
- ultraGridColumn84});
- ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
- ultraGridColumn85.Header.VisiblePosition = 0;
- ultraGridColumn85.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn85.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn85.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn85.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn86.Header.VisiblePosition = 1;
- ultraGridColumn86.Hidden = true;
- ultraGridColumn87.Header.VisiblePosition = 2;
- ultraGridColumn87.Hidden = true;
- ultraGridColumn88.Header.VisiblePosition = 3;
- ultraGridColumn88.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn88.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn88.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn88.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn89.Header.VisiblePosition = 4;
- ultraGridColumn89.Hidden = true;
- ultraGridColumn90.Header.VisiblePosition = 5;
- ultraGridColumn90.Hidden = true;
- ultraGridColumn91.Header.VisiblePosition = 6;
- ultraGridColumn91.Hidden = true;
- ultraGridColumn92.Header.VisiblePosition = 7;
- ultraGridColumn92.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn92.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn92.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn92.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn93.Header.VisiblePosition = 8;
- ultraGridColumn93.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn93.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn93.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn93.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn94.Header.VisiblePosition = 9;
- ultraGridColumn94.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn94.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn94.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn94.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn95.Header.VisiblePosition = 10;
- ultraGridColumn95.Hidden = true;
- ultraGridColumn95.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn95.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn95.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn95.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn96.Header.VisiblePosition = 11;
- ultraGridColumn96.Hidden = true;
- ultraGridColumn97.Header.VisiblePosition = 12;
- ultraGridColumn97.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn97.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn97.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn97.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn98.Header.VisiblePosition = 13;
- ultraGridColumn98.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn98.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn98.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn98.RowLayoutColumnInfo.SpanY = 2;
- ultraGridBand3.Columns.AddRange(new object[] {
- ultraGridColumn85,
- ultraGridColumn86,
- ultraGridColumn87,
- ultraGridColumn88,
- ultraGridColumn89,
- ultraGridColumn90,
- ultraGridColumn91,
- ultraGridColumn92,
- ultraGridColumn93,
- ultraGridColumn94,
- ultraGridColumn95,
- ultraGridColumn96,
- ultraGridColumn97,
- ultraGridColumn98});
- ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
- this.ultraGridJl.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraGridJl.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.ultraGridJl.DisplayLayout.DefaultSelectedBackColor = System.Drawing.Color.Empty;
- this.ultraGridJl.DisplayLayout.DefaultSelectedForeColor = System.Drawing.Color.Empty;
- this.ultraGridJl.DisplayLayout.Override.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Button3D;
- appearance21.TextVAlignAsString = "Middle";
- this.ultraGridJl.DisplayLayout.Override.CellAppearance = appearance21;
- this.ultraGridJl.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
- appearance4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- appearance4.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- this.ultraGridJl.DisplayLayout.Override.HeaderAppearance = appearance4;
- this.ultraGridJl.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- this.ultraGridJl.DisplayLayout.Override.MaxSelectedRows = 1;
- this.ultraGridJl.DisplayLayout.Override.MinRowHeight = 21;
- appearance22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- appearance22.TextVAlignAsString = "Middle";
- this.ultraGridJl.DisplayLayout.Override.RowSelectorAppearance = appearance22;
- this.ultraGridJl.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ultraGridJl.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.ultraGridJl.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- this.ultraGridJl.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
- this.ultraGridJl.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGridJl.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGridJl.Location = new System.Drawing.Point(0, 0);
- this.ultraGridJl.Name = "ultraGridJl";
- this.ultraGridJl.Size = new System.Drawing.Size(749, 450);
- this.ultraGridJl.TabIndex = 6;
- //
- // dataSet1
- //
- this.dataSet1.DataSetName = "NewDataSet";
- this.dataSet1.Relations.AddRange(new System.Data.DataRelation[] {
- new System.Data.DataRelation("Relation1", "校秤记录", "校秤子表", new string[] {
- "calibrationMainNo"}, new string[] {
- "calibrationMainNo"}, false)});
- this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
- this.dtCalibration,
- this.dtJGPointInfo,
- this.dtBranch,
- this.dtPreTrackScale});
- //
- // dtCalibration
- //
- this.dtCalibration.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn126,
- this.dataColumn127,
- this.dataColumn128,
- this.dataColumn129,
- this.dataColumn130,
- this.dataColumn131,
- this.dataColumn132,
- this.dataColumn133,
- this.dataColumn134,
- this.dataColumn135,
- this.dataColumn136,
- this.dataColumn137,
- this.dataColumn138,
- this.dataColumn139,
- this.dataColumn140});
- this.dtCalibration.Constraints.AddRange(new System.Data.Constraint[] {
- new System.Data.UniqueConstraint("Constraint1", new string[] {
- "calibrationMainNo"}, false)});
- this.dtCalibration.TableName = "校秤记录";
- //
- // dataColumn126
- //
- this.dataColumn126.Caption = "校秤编号";
- this.dataColumn126.ColumnName = "calibrationMainNo";
- //
- // dataColumn127
- //
- this.dataColumn127.Caption = "计量点编号";
- this.dataColumn127.ColumnName = "baseSpotNo";
- //
- // dataColumn128
- //
- this.dataColumn128.Caption = "计量点名称";
- this.dataColumn128.ColumnName = "baseSpotName";
- //
- // dataColumn129
- //
- this.dataColumn129.Caption = "计量点类型编号";
- this.dataColumn129.ColumnName = "spotTypeNo";
- //
- // dataColumn130
- //
- this.dataColumn130.Caption = "计量点类型名称";
- this.dataColumn130.ColumnName = "spotTypeName";
- //
- // dataColumn131
- //
- this.dataColumn131.Caption = "校秤有效次数";
- this.dataColumn131.ColumnName = "calibrationNum";
- //
- // dataColumn132
- //
- this.dataColumn132.Caption = "校秤类型编号";
- this.dataColumn132.ColumnName = "calibrationTypeNo";
- //
- // dataColumn133
- //
- this.dataColumn133.Caption = "校秤类型名";
- this.dataColumn133.ColumnName = "calibrationTypeName";
- //
- // dataColumn134
- //
- this.dataColumn134.Caption = "校秤有效次数";
- this.dataColumn134.ColumnName = "calibrationActNum";
- //
- // dataColumn135
- //
- this.dataColumn135.Caption = "状态";
- this.dataColumn135.ColumnName = "valueFlag";
- //
- // dataColumn136
- //
- this.dataColumn136.Caption = "校秤对比计量点编号";
- this.dataColumn136.ColumnName = "baseContrastSpotNo";
- //
- // dataColumn137
- //
- this.dataColumn137.Caption = "校秤对比计量点";
- this.dataColumn137.ColumnName = "baseContrastSpotName";
- //
- // dataColumn138
- //
- this.dataColumn138.Caption = "校秤成功对比点编号";
- this.dataColumn138.ColumnName = "baseSuccContSpotNo";
- //
- // dataColumn139
- //
- this.dataColumn139.Caption = "校秤成功对比点";
- this.dataColumn139.ColumnName = "baseSuccConSpotName";
- //
- // dataColumn140
- //
- this.dataColumn140.Caption = "校秤时间";
- this.dataColumn140.ColumnName = "calibrationMainTime";
- //
- // dtJGPointInfo
- //
- this.dtJGPointInfo.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn155,
- this.dataColumn156,
- this.dataColumn157});
- this.dtJGPointInfo.TableName = "已接管计量点";
- //
- // dataColumn155
- //
- this.dataColumn155.ColumnName = "baseSpotNo";
- //
- // dataColumn156
- //
- this.dataColumn156.Caption = "计量点";
- this.dataColumn156.ColumnName = "baseSpotName";
- //
- // dataColumn157
- //
- this.dataColumn157.Caption = "接管状态";
- this.dataColumn157.ColumnName = "validFlag";
- //
- // dtBranch
- //
- this.dtBranch.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn141,
- this.dataColumn142,
- this.dataColumn143,
- this.dataColumn144,
- this.dataColumn145,
- this.dataColumn146,
- this.dataColumn147,
- this.dataColumn148,
- this.dataColumn149,
- this.dataColumn150,
- this.dataColumn151,
- this.dataColumn152,
- this.dataColumn153,
- this.dataColumn154});
- this.dtBranch.Constraints.AddRange(new System.Data.Constraint[] {
- new System.Data.ForeignKeyConstraint("Relation1", "校秤记录", new string[] {
- "calibrationMainNo"}, new string[] {
- "calibrationMainNo"}, System.Data.AcceptRejectRule.None, System.Data.Rule.Cascade, System.Data.Rule.Cascade)});
- this.dtBranch.TableName = "校秤子表";
- //
- // dataColumn141
- //
- this.dataColumn141.Caption = "编号";
- this.dataColumn141.ColumnName = "calibrationBranchNo";
- //
- // dataColumn142
- //
- this.dataColumn142.ColumnName = "calibrationMainNo";
- //
- // dataColumn143
- //
- this.dataColumn143.ColumnName = "baseSpotNo";
- //
- // dataColumn144
- //
- this.dataColumn144.Caption = "计量点";
- this.dataColumn144.ColumnName = "baseSpotName";
- //
- // dataColumn145
- //
- this.dataColumn145.ColumnName = "spotTypeNo";
- //
- // dataColumn146
- //
- this.dataColumn146.Caption = "计量点类型";
- this.dataColumn146.ColumnName = "spotTypeName";
- //
- // dataColumn147
- //
- this.dataColumn147.ColumnName = "calibrationTypeNo";
- //
- // dataColumn148
- //
- this.dataColumn148.Caption = "校秤类型";
- this.dataColumn148.ColumnName = "calibrationTypeName";
- //
- // dataColumn149
- //
- this.dataColumn149.Caption = "校秤重量";
- this.dataColumn149.ColumnName = "calibrationWeight";
- //
- // dataColumn150
- //
- this.dataColumn150.Caption = "状态";
- this.dataColumn150.ColumnName = "valueFlag";
- //
- // dataColumn151
- //
- this.dataColumn151.Caption = "比对校秤计量编号";
- this.dataColumn151.ColumnName = "calibrContrastBranchNo";
- //
- // dataColumn152
- //
- this.dataColumn152.ColumnName = "createManNo";
- //
- // dataColumn153
- //
- this.dataColumn153.Caption = "计量员";
- this.dataColumn153.ColumnName = "createManName";
- //
- // dataColumn154
- //
- this.dataColumn154.Caption = "校秤时间";
- this.dataColumn154.ColumnName = "createTime";
- //
- // dtPreTrackScale
- //
- this.dtPreTrackScale.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn70,
- this.dataColumn71,
- this.dataColumn72,
- this.dataColumn73,
- this.dataColumn74,
- this.dataColumn75,
- this.dataColumn76,
- this.dataColumn77,
- this.dataColumn78,
- this.dataColumn79,
- this.dataColumn80,
- this.dataColumn81,
- this.dataColumn82,
- this.dataColumn83,
- this.dataColumn84,
- this.dataColumn85,
- this.dataColumn86,
- this.dataColumn87,
- this.dataColumn88,
- this.dataColumn89,
- this.dataColumn90,
- this.dataColumn91,
- this.dataColumn92,
- this.dataColumn93,
- this.dataColumn94,
- this.dataColumn95,
- this.dataColumn96,
- this.dataColumn97,
- this.dataColumn98,
- this.dataColumn99,
- this.dataColumn100,
- this.dataColumn101,
- this.dataColumn102,
- this.dataColumn103,
- this.dataColumn104,
- this.dataColumn105,
- this.dataColumn106,
- this.dataColumn107,
- this.dataColumn108,
- this.dataColumn109,
- this.dataColumn110,
- this.dataColumn111,
- this.dataColumn112,
- this.dataColumn113,
- this.dataColumn114,
- this.dataColumn115,
- this.dataColumn116,
- this.dataColumn117,
- this.dataColumn118,
- this.dataColumn119,
- this.dataColumn120,
- this.dataColumn121,
- this.dataColumn122,
- this.dataColumn123,
- this.dataColumn124,
- this.dataColumn125});
- this.dtPreTrackScale.TableName = "计量预报";
- //
- // dataColumn70
- //
- this.dataColumn70.Caption = "预报编号";
- this.dataColumn70.ColumnName = "predictionNo";
- //
- // dataColumn71
- //
- this.dataColumn71.Caption = "通知单号";
- this.dataColumn71.ColumnName = "noticeNo";
- //
- // dataColumn72
- //
- this.dataColumn72.Caption = "车号";
- this.dataColumn72.ColumnName = "carNo";
- //
- // dataColumn73
- //
- this.dataColumn73.Caption = "挂号";
- this.dataColumn73.ColumnName = "trailerNo";
- //
- // dataColumn74
- //
- this.dataColumn74.Caption = "物料编号";
- this.dataColumn74.ColumnName = "matterNo";
- //
- // dataColumn75
- //
- this.dataColumn75.Caption = "物料名称";
- this.dataColumn75.ColumnName = "matterName";
- //
- // dataColumn76
- //
- this.dataColumn76.Caption = "合同号";
- this.dataColumn76.ColumnName = "contractNo";
- //
- // dataColumn77
- //
- this.dataColumn77.Caption = "批次号";
- this.dataColumn77.ColumnName = "batchNo";
- //
- // dataColumn78
- //
- this.dataColumn78.Caption = "供应商编号";
- this.dataColumn78.ColumnName = "customerSupplierNo";
- //
- // dataColumn79
- //
- this.dataColumn79.Caption = "供应商名称";
- this.dataColumn79.ColumnName = "customerSupplierName";
- //
- // dataColumn80
- //
- this.dataColumn80.Caption = "原产地";
- this.dataColumn80.ColumnName = "sourceArea";
- //
- // dataColumn81
- //
- this.dataColumn81.Caption = "发货单位编号";
- this.dataColumn81.ColumnName = "forwardingUnitNo";
- //
- // dataColumn82
- //
- this.dataColumn82.Caption = "发货单位名称";
- this.dataColumn82.ColumnName = "forwardingUnitName";
- //
- // dataColumn83
- //
- this.dataColumn83.Caption = "收货单位编号";
- this.dataColumn83.ColumnName = "receivingUintNo";
- //
- // dataColumn84
- //
- this.dataColumn84.Caption = "收货单位名称";
- this.dataColumn84.ColumnName = "receivingUintName";
- //
- // dataColumn85
- //
- this.dataColumn85.Caption = "材质编号";
- this.dataColumn85.ColumnName = "materialNo";
- //
- // dataColumn86
- //
- this.dataColumn86.Caption = "材质名称";
- this.dataColumn86.ColumnName = "materialName";
- //
- // dataColumn87
- //
- this.dataColumn87.Caption = "规格编号";
- this.dataColumn87.ColumnName = "specNo";
- //
- // dataColumn88
- //
- this.dataColumn88.Caption = "规格名称";
- this.dataColumn88.ColumnName = "specName";
- //
- // dataColumn89
- //
- this.dataColumn89.Caption = "发运毛重";
- this.dataColumn89.ColumnName = "shipmentGrossWeight";
- //
- // dataColumn90
- //
- this.dataColumn90.Caption = "发运净重";
- this.dataColumn90.ColumnName = "shipmentNetWeight";
- //
- // dataColumn91
- //
- this.dataColumn91.Caption = "发运数量";
- this.dataColumn91.ColumnName = "shipmentNum";
- //
- // dataColumn92
- //
- this.dataColumn92.Caption = "附加重量总和";
- this.dataColumn92.ColumnName = "addWeightSum";
- //
- // dataColumn93
- //
- this.dataColumn93.Caption = "绑定卡号";
- this.dataColumn93.ColumnName = "bindCardNo";
- //
- // dataColumn94
- //
- this.dataColumn94.Caption = "卸货地点编号";
- this.dataColumn94.ColumnName = "loadPointNo";
- //
- // dataColumn95
- //
- this.dataColumn95.Caption = "卸货地点名称";
- this.dataColumn95.ColumnName = "loadPointName";
- //
- // dataColumn96
- //
- this.dataColumn96.Caption = "取样编号";
- this.dataColumn96.ColumnName = "sampleNo";
- //
- // dataColumn97
- //
- this.dataColumn97.Caption = "取样凭证";
- this.dataColumn97.ColumnName = "sampleVoucher";
- //
- // dataColumn98
- //
- this.dataColumn98.Caption = "承运单位编号";
- this.dataColumn98.ColumnName = "carrierUnitNo";
- //
- // dataColumn99
- //
- this.dataColumn99.Caption = "承运单位名称";
- this.dataColumn99.ColumnName = "carrierUnitName";
- //
- // dataColumn100
- //
- this.dataColumn100.Caption = "预报类型";
- this.dataColumn100.ColumnName = "predictionType";
- //
- // dataColumn101
- //
- this.dataColumn101.Caption = "预报组合";
- this.dataColumn101.ColumnName = "predictionCombination";
- //
- // dataColumn102
- //
- this.dataColumn102.Caption = "计量类型编号";
- this.dataColumn102.ColumnName = "meterTypeNo";
- //
- // dataColumn103
- //
- this.dataColumn103.Caption = "计量类型名称";
- this.dataColumn103.ColumnName = "meterTypeName";
- //
- // dataColumn104
- //
- this.dataColumn104.Caption = "可用类型";
- this.dataColumn104.ColumnName = "usedType";
- //
- // dataColumn105
- //
- this.dataColumn105.Caption = "有效开始时间";
- this.dataColumn105.ColumnName = "effectiveStartTime";
- //
- // dataColumn106
- //
- this.dataColumn106.Caption = "有效结束时间";
- this.dataColumn106.ColumnName = "effectiveEndTime";
- //
- // dataColumn107
- //
- this.dataColumn107.Caption = "有效总量";
- this.dataColumn107.ColumnName = "effectiveWeight";
- //
- // dataColumn108
- //
- this.dataColumn108.Caption = "有效次数";
- this.dataColumn108.ColumnName = "effectiveNum";
- //
- // dataColumn109
- //
- this.dataColumn109.Caption = "检斤重量";
- this.dataColumn109.ColumnName = "meterWeight";
- //
- // dataColumn110
- //
- this.dataColumn110.Caption = "检斤次数";
- this.dataColumn110.ColumnName = "meterNum";
- //
- // dataColumn111
- //
- this.dataColumn111.Caption = "火车车号";
- this.dataColumn111.ColumnName = "railwayNo";
- //
- // dataColumn112
- //
- this.dataColumn112.Caption = "计量流程编号";
- this.dataColumn112.ColumnName = "meterProcessNo";
- //
- // dataColumn113
- //
- this.dataColumn113.Caption = "计量流程版本号";
- this.dataColumn113.ColumnName = "meterProcessEditionNo";
- //
- // dataColumn114
- //
- this.dataColumn114.Caption = "备注";
- this.dataColumn114.ColumnName = "memo";
- //
- // dataColumn115
- //
- this.dataColumn115.Caption = "状态";
- this.dataColumn115.ColumnName = "valueFlag";
- //
- // dataColumn116
- //
- this.dataColumn116.Caption = "使用时间";
- this.dataColumn116.ColumnName = "usedTime";
- //
- // dataColumn117
- //
- this.dataColumn117.Caption = "创建人编号";
- this.dataColumn117.ColumnName = "createManNo";
- //
- // dataColumn118
- //
- this.dataColumn118.Caption = "创建人姓名";
- this.dataColumn118.ColumnName = "createManName";
- //
- // dataColumn119
- //
- this.dataColumn119.Caption = "创建时间";
- this.dataColumn119.ColumnName = "createTime";
- //
- // dataColumn120
- //
- this.dataColumn120.Caption = "修改人编号";
- this.dataColumn120.ColumnName = "updateManNo";
- //
- // dataColumn121
- //
- this.dataColumn121.Caption = "修改人姓名";
- this.dataColumn121.ColumnName = "updateManName";
- //
- // dataColumn122
- //
- this.dataColumn122.Caption = "修改时间";
- this.dataColumn122.ColumnName = "updateTime";
- //
- // dataColumn123
- //
- this.dataColumn123.Caption = "删除人编号";
- this.dataColumn123.ColumnName = "deleteManNo";
- //
- // dataColumn124
- //
- this.dataColumn124.Caption = "删除人姓名";
- this.dataColumn124.ColumnName = "deleteManName";
- //
- // dataColumn125
- //
- this.dataColumn125.Caption = "删除时间";
- this.dataColumn125.ColumnName = "deleteTime";
- //
- // dataColumn158
- //
- this.dataColumn158.ColumnName = "baseSpotNo";
- //
- // dataColumn159
- //
- this.dataColumn159.Caption = "计量点";
- this.dataColumn159.ColumnName = "baseSpotName";
- //
- // dataColumn69
- //
- this.dataColumn69.Caption = "状态";
- this.dataColumn69.ColumnName = "validFlag";
- //
- // timer1
- //
- this.timer1.Interval = 500;
- this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.Controls.Add(this.panel3);
- this.ultraGroupBox1.Controls.Add(this.panel1);
- this.ultraGroupBox1.Controls.Add(this.panel2);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(2);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(1472, 842);
- this.ultraGroupBox1.TabIndex = 3;
- this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // panel3
- //
- this.panel3.AutoScroll = true;
- this.panel3.BackColor = System.Drawing.Color.Transparent;
- this.panel3.Controls.Add(this.uTab);
- this.panel3.Controls.Add(this.panel14);
- this.panel3.Controls.Add(this.panel11);
- this.panel3.Controls.Add(this.panel10);
- this.panel3.Controls.Add(this.panel5);
- this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel3.Location = new System.Drawing.Point(418, 0);
- this.panel3.Margin = new System.Windows.Forms.Padding(2);
- this.panel3.MinimumSize = new System.Drawing.Size(518, 632);
- this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(751, 839);
- this.panel3.TabIndex = 5;
- //
- // uTab
- //
- this.uTab.Controls.Add(this.ultraTabSharedControlsPage1);
- this.uTab.Controls.Add(this.ultraTabPageControl1);
- this.uTab.Controls.Add(this.ultraTabPageControl3);
- this.uTab.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uTab.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uTab.Location = new System.Drawing.Point(0, 363);
- this.uTab.Margin = new System.Windows.Forms.Padding(2);
- this.uTab.Name = "uTab";
- this.uTab.SharedControlsPage = this.ultraTabSharedControlsPage1;
- this.uTab.Size = new System.Drawing.Size(751, 476);
- this.uTab.TabIndex = 5;
- ultraTab1.TabPage = this.ultraTabPageControl1;
- ultraTab1.Text = "计量实绩";
- ultraTab3.TabPage = this.ultraTabPageControl3;
- ultraTab3.Text = "校秤记录";
- this.uTab.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab1,
- ultraTab3});
- this.uTab.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
- //
- // ultraTabSharedControlsPage1
- //
- this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(2);
- this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
- this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(749, 450);
- //
- // panel14
- //
- this.panel14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel14.Controls.Add(this.txtGrossWgt);
- this.panel14.Controls.Add(this.btnSave);
- this.panel14.Controls.Add(this.btnCheckBalance);
- this.panel14.Controls.Add(this.btnOpenVoice);
- this.panel14.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel14.Location = new System.Drawing.Point(0, 323);
- this.panel14.Margin = new System.Windows.Forms.Padding(2);
- this.panel14.Name = "panel14";
- this.panel14.Size = new System.Drawing.Size(751, 40);
- this.panel14.TabIndex = 4;
- //
- // txtGrossWgt
- //
- this.txtGrossWgt.Dock = System.Windows.Forms.DockStyle.Right;
- this.txtGrossWgt.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtGrossWgt.Location = new System.Drawing.Point(569, 0);
- this.txtGrossWgt.Name = "txtGrossWgt";
- this.txtGrossWgt.Size = new System.Drawing.Size(180, 29);
- this.txtGrossWgt.TabIndex = 10;
- //
- // btnSave
- //
- this.btnSave.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnSave.Font = new System.Drawing.Font("楷体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)), true);
- this.btnSave.ForeColor = System.Drawing.Color.White;
- this.btnSave.Location = new System.Drawing.Point(338, 3);
- this.btnSave.Name = "btnSave";
- this.btnSave.Size = new System.Drawing.Size(92, 32);
- this.btnSave.TabIndex = 9;
- this.btnSave.Text = "保存";
- this.btnSave.UseVisualStyleBackColor = false;
- this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
- //
- // btnCheckBalance
- //
- this.btnCheckBalance.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnCheckBalance.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnCheckBalance.Font = new System.Drawing.Font("楷体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)), true);
- this.btnCheckBalance.ForeColor = System.Drawing.Color.White;
- this.btnCheckBalance.Location = new System.Drawing.Point(117, 3);
- this.btnCheckBalance.Name = "btnCheckBalance";
- this.btnCheckBalance.Size = new System.Drawing.Size(92, 32);
- this.btnCheckBalance.TabIndex = 7;
- this.btnCheckBalance.Text = "校秤";
- this.btnCheckBalance.UseVisualStyleBackColor = false;
- this.btnCheckBalance.Click += new System.EventHandler(this.btnCheckBalance_Click);
- //
- // btnOpenVoice
- //
- this.btnOpenVoice.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnOpenVoice.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnOpenVoice.Font = new System.Drawing.Font("楷体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)), true);
- this.btnOpenVoice.ForeColor = System.Drawing.Color.White;
- this.btnOpenVoice.Location = new System.Drawing.Point(7, 3);
- this.btnOpenVoice.Name = "btnOpenVoice";
- this.btnOpenVoice.Size = new System.Drawing.Size(92, 32);
- this.btnOpenVoice.TabIndex = 6;
- this.btnOpenVoice.Text = "打开对讲";
- this.btnOpenVoice.UseVisualStyleBackColor = false;
- this.btnOpenVoice.Click += new System.EventHandler(this.btnOpenVoice_Click);
- //
- // panel11
- //
- this.panel11.Controls.Add(this.tableLayoutPanel1);
- this.panel11.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel11.Location = new System.Drawing.Point(0, 100);
- this.panel11.Margin = new System.Windows.Forms.Padding(2);
- this.panel11.Name = "panel11";
- this.panel11.Size = new System.Drawing.Size(751, 223);
- this.panel11.TabIndex = 3;
- //
- // tableLayoutPanel1
- //
- this.tableLayoutPanel1.ColumnCount = 4;
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel1.Controls.Add(this.txtBLOCK_NUM, 3, 1);
- this.tableLayoutPanel1.Controls.Add(this.cmbStandard, 1, 1);
- this.tableLayoutPanel1.Controls.Add(this.cmbGrade, 3, 0);
- this.tableLayoutPanel1.Controls.Add(this.cmbMatterNo, 1, 0);
- this.tableLayoutPanel1.Controls.Add(this.label7, 0, 3);
- this.tableLayoutPanel1.Controls.Add(this.label8, 0, 2);
- this.tableLayoutPanel1.Controls.Add(this.label9, 0, 1);
- this.tableLayoutPanel1.Controls.Add(this.label10, 0, 0);
- this.tableLayoutPanel1.Controls.Add(this.label11, 2, 3);
- this.tableLayoutPanel1.Controls.Add(this.label12, 2, 2);
- this.tableLayoutPanel1.Controls.Add(this.label13, 2, 1);
- this.tableLayoutPanel1.Controls.Add(this.label14, 2, 0);
- this.tableLayoutPanel1.Controls.Add(this.txtSEAL_NO, 3, 3);
- this.tableLayoutPanel1.Controls.Add(this.txtPACKAGE_NO, 1, 3);
- this.tableLayoutPanel1.Controls.Add(this.txtBATCH_NO, 1, 2);
- this.tableLayoutPanel1.Controls.Add(this.label15, 0, 4);
- this.tableLayoutPanel1.Controls.Add(this.txtBUCKET_NO, 1, 4);
- this.tableLayoutPanel1.Controls.Add(this.txtCOMBIN_NO, 3, 4);
- this.tableLayoutPanel1.Controls.Add(this.label16, 2, 4);
- this.tableLayoutPanel1.Controls.Add(this.label17, 0, 5);
- this.tableLayoutPanel1.Controls.Add(this.txtMEMO, 1, 5);
- this.tableLayoutPanel1.Controls.Add(this.txtPRODUCT_DATE, 3, 2);
- this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
- this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
- this.tableLayoutPanel1.Name = "tableLayoutPanel1";
- this.tableLayoutPanel1.Padding = new System.Windows.Forms.Padding(0, 5, 0, 0);
- this.tableLayoutPanel1.RowCount = 6;
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.66F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.66F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.66F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.66F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.66F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.7F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
- this.tableLayoutPanel1.Size = new System.Drawing.Size(751, 223);
- this.tableLayoutPanel1.TabIndex = 5;
- //
- // txtBLOCK_NUM
- //
- this.txtBLOCK_NUM.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtBLOCK_NUM.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtBLOCK_NUM.Location = new System.Drawing.Point(478, 44);
- this.txtBLOCK_NUM.Name = "txtBLOCK_NUM";
- this.txtBLOCK_NUM.Size = new System.Drawing.Size(270, 29);
- this.txtBLOCK_NUM.TabIndex = 5;
- //
- // cmbStandard
- //
- this.cmbStandard.Dock = System.Windows.Forms.DockStyle.Fill;
- this.cmbStandard.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbStandard.Location = new System.Drawing.Point(102, 43);
- this.cmbStandard.Margin = new System.Windows.Forms.Padding(2);
- this.cmbStandard.Name = "cmbStandard";
- this.cmbStandard.Size = new System.Drawing.Size(271, 28);
- this.cmbStandard.TabIndex = 94;
- //
- // cmbGrade
- //
- this.cmbGrade.Dock = System.Windows.Forms.DockStyle.Fill;
- this.cmbGrade.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbGrade.Location = new System.Drawing.Point(477, 7);
- this.cmbGrade.Margin = new System.Windows.Forms.Padding(2);
- this.cmbGrade.Name = "cmbGrade";
- this.cmbGrade.Size = new System.Drawing.Size(272, 28);
- this.cmbGrade.TabIndex = 94;
- //
- // cmbMatterNo
- //
- this.cmbMatterNo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.cmbMatterNo.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmbMatterNo.Location = new System.Drawing.Point(102, 7);
- this.cmbMatterNo.Margin = new System.Windows.Forms.Padding(2);
- this.cmbMatterNo.Name = "cmbMatterNo";
- this.cmbMatterNo.Size = new System.Drawing.Size(271, 28);
- this.cmbMatterNo.TabIndex = 94;
- //
- // label7
- //
- this.label7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label7.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label7.Location = new System.Drawing.Point(2, 118);
- this.label7.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(98, 31);
- this.label7.TabIndex = 1;
- this.label7.Text = "包 号";
- this.label7.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label8
- //
- this.label8.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label8.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label8.Location = new System.Drawing.Point(2, 82);
- this.label8.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(98, 31);
- this.label8.TabIndex = 1;
- this.label8.Text = "批 号";
- this.label8.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label9
- //
- this.label9.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label9.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label9.Location = new System.Drawing.Point(2, 46);
- this.label9.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(98, 31);
- this.label9.TabIndex = 1;
- this.label9.Text = "标 准";
- this.label9.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label10
- //
- this.label10.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label10.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label10.Location = new System.Drawing.Point(2, 10);
- this.label10.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(98, 31);
- this.label10.TabIndex = 1;
- this.label10.Text = "产品名称";
- this.label10.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label11
- //
- this.label11.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label11.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label11.Location = new System.Drawing.Point(377, 118);
- this.label11.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(98, 31);
- this.label11.TabIndex = 1;
- this.label11.Text = "铅 封 号";
- this.label11.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label12
- //
- this.label12.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label12.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label12.Location = new System.Drawing.Point(377, 82);
- this.label12.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(98, 31);
- this.label12.TabIndex = 1;
- this.label12.Text = "生产日期";
- this.label12.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label13
- //
- this.label13.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label13.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label13.Location = new System.Drawing.Point(377, 46);
- this.label13.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(98, 31);
- this.label13.TabIndex = 1;
- this.label13.Text = "块 数";
- this.label13.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label14
- //
- this.label14.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label14.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label14.Location = new System.Drawing.Point(377, 10);
- this.label14.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(98, 31);
- this.label14.TabIndex = 1;
- this.label14.Text = "牌 号";
- this.label14.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // txtSEAL_NO
- //
- appearance3.BackColor = System.Drawing.Color.White;
- appearance3.BackColor2 = System.Drawing.Color.White;
- appearance3.BackColorDisabled = System.Drawing.Color.White;
- appearance3.BackColorDisabled2 = System.Drawing.Color.White;
- appearance3.ForeColor = System.Drawing.Color.Black;
- appearance3.ForeColorDisabled = System.Drawing.Color.Black;
- this.txtSEAL_NO.Appearance = appearance3;
- this.txtSEAL_NO.BackColor = System.Drawing.Color.White;
- this.txtSEAL_NO.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtSEAL_NO.Font = new System.Drawing.Font("宋体", 13F);
- this.txtSEAL_NO.Location = new System.Drawing.Point(478, 116);
- this.txtSEAL_NO.Name = "txtSEAL_NO";
- this.txtSEAL_NO.Size = new System.Drawing.Size(270, 27);
- this.txtSEAL_NO.TabIndex = 7;
- //
- // txtPACKAGE_NO
- //
- appearance8.BackColor = System.Drawing.Color.White;
- appearance8.BackColor2 = System.Drawing.Color.White;
- appearance8.BackColorDisabled = System.Drawing.Color.White;
- appearance8.BackColorDisabled2 = System.Drawing.Color.White;
- appearance8.ForeColor = System.Drawing.Color.Black;
- appearance8.ForeColorDisabled = System.Drawing.Color.Black;
- this.txtPACKAGE_NO.Appearance = appearance8;
- this.txtPACKAGE_NO.BackColor = System.Drawing.Color.White;
- this.txtPACKAGE_NO.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtPACKAGE_NO.Font = new System.Drawing.Font("宋体", 13F);
- this.txtPACKAGE_NO.Location = new System.Drawing.Point(103, 116);
- this.txtPACKAGE_NO.Name = "txtPACKAGE_NO";
- this.txtPACKAGE_NO.Size = new System.Drawing.Size(269, 27);
- this.txtPACKAGE_NO.TabIndex = 6;
- //
- // txtBATCH_NO
- //
- appearance9.BackColor = System.Drawing.Color.White;
- appearance9.BackColor2 = System.Drawing.Color.White;
- appearance9.BackColorDisabled = System.Drawing.Color.White;
- appearance9.BackColorDisabled2 = System.Drawing.Color.White;
- appearance9.ForeColor = System.Drawing.Color.Black;
- appearance9.ForeColorDisabled = System.Drawing.Color.Black;
- this.txtBATCH_NO.Appearance = appearance9;
- this.txtBATCH_NO.BackColor = System.Drawing.Color.White;
- this.txtBATCH_NO.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtBATCH_NO.Font = new System.Drawing.Font("宋体", 13F);
- this.txtBATCH_NO.Location = new System.Drawing.Point(103, 80);
- this.txtBATCH_NO.Name = "txtBATCH_NO";
- this.txtBATCH_NO.Size = new System.Drawing.Size(269, 27);
- this.txtBATCH_NO.TabIndex = 4;
- //
- // label15
- //
- this.label15.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label15.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label15.Location = new System.Drawing.Point(2, 154);
- this.label15.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(98, 31);
- this.label15.TabIndex = 1;
- this.label15.Text = "桶 号";
- this.label15.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // txtBUCKET_NO
- //
- appearance11.BackColor = System.Drawing.Color.White;
- appearance11.BackColor2 = System.Drawing.Color.White;
- appearance11.BackColorDisabled = System.Drawing.Color.White;
- appearance11.BackColorDisabled2 = System.Drawing.Color.White;
- appearance11.ForeColor = System.Drawing.Color.Black;
- appearance11.ForeColorDisabled = System.Drawing.Color.Black;
- this.txtBUCKET_NO.Appearance = appearance11;
- this.txtBUCKET_NO.BackColor = System.Drawing.Color.White;
- this.txtBUCKET_NO.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtBUCKET_NO.Font = new System.Drawing.Font("宋体", 13F);
- this.txtBUCKET_NO.Location = new System.Drawing.Point(103, 152);
- this.txtBUCKET_NO.Name = "txtBUCKET_NO";
- this.txtBUCKET_NO.Size = new System.Drawing.Size(269, 27);
- this.txtBUCKET_NO.TabIndex = 8;
- //
- // txtCOMBIN_NO
- //
- appearance2.BackColor = System.Drawing.Color.White;
- appearance2.BackColor2 = System.Drawing.Color.White;
- appearance2.BackColorDisabled = System.Drawing.Color.White;
- appearance2.BackColorDisabled2 = System.Drawing.Color.White;
- appearance2.ForeColor = System.Drawing.Color.Black;
- appearance2.ForeColorDisabled = System.Drawing.Color.Black;
- this.txtCOMBIN_NO.Appearance = appearance2;
- this.txtCOMBIN_NO.BackColor = System.Drawing.Color.White;
- this.txtCOMBIN_NO.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtCOMBIN_NO.Font = new System.Drawing.Font("宋体", 13F);
- this.txtCOMBIN_NO.Location = new System.Drawing.Point(478, 152);
- this.txtCOMBIN_NO.Name = "txtCOMBIN_NO";
- this.txtCOMBIN_NO.Size = new System.Drawing.Size(270, 27);
- this.txtCOMBIN_NO.TabIndex = 9;
- //
- // label16
- //
- this.label16.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label16.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label16.Location = new System.Drawing.Point(377, 154);
- this.label16.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(98, 31);
- this.label16.TabIndex = 1;
- this.label16.Text = "组合包号";
- this.label16.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label17
- //
- this.label17.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label17.Font = new System.Drawing.Font("楷体", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label17.Location = new System.Drawing.Point(2, 190);
- this.label17.Margin = new System.Windows.Forms.Padding(2, 5, 0, 0);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(98, 33);
- this.label17.TabIndex = 3;
- this.label17.Text = "备 注";
- this.label17.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // txtMEMO
- //
- appearance7.BackColor = System.Drawing.Color.White;
- appearance7.BackColor2 = System.Drawing.Color.White;
- appearance7.BackColorDisabled = System.Drawing.Color.White;
- appearance7.BackColorDisabled2 = System.Drawing.Color.White;
- appearance7.ForeColor = System.Drawing.Color.Black;
- appearance7.ForeColorDisabled = System.Drawing.Color.Black;
- this.txtMEMO.Appearance = appearance7;
- this.txtMEMO.BackColor = System.Drawing.Color.White;
- this.tableLayoutPanel1.SetColumnSpan(this.txtMEMO, 3);
- this.txtMEMO.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtMEMO.Font = new System.Drawing.Font("宋体", 13F);
- this.txtMEMO.Location = new System.Drawing.Point(103, 188);
- this.txtMEMO.Multiline = true;
- this.txtMEMO.Name = "txtMEMO";
- this.txtMEMO.Size = new System.Drawing.Size(645, 32);
- this.txtMEMO.TabIndex = 10;
- //
- // txtPRODUCT_DATE
- //
- this.txtPRODUCT_DATE.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtPRODUCT_DATE.DropDownAlign = System.Windows.Forms.LeftRightAlignment.Right;
- this.txtPRODUCT_DATE.Font = new System.Drawing.Font("宋体", 13F);
- this.txtPRODUCT_DATE.Location = new System.Drawing.Point(478, 80);
- this.txtPRODUCT_DATE.MaxDate = new System.DateTime(2998, 12, 31, 0, 0, 0, 0);
- this.txtPRODUCT_DATE.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
- this.txtPRODUCT_DATE.Name = "txtPRODUCT_DATE";
- this.txtPRODUCT_DATE.Size = new System.Drawing.Size(270, 27);
- this.txtPRODUCT_DATE.TabIndex = 11;
- //
- // panel10
- //
- this.panel10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel10.Controls.Add(this.tableLayoutPanel3);
- this.panel10.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel10.Location = new System.Drawing.Point(0, 60);
- this.panel10.Margin = new System.Windows.Forms.Padding(2);
- this.panel10.Name = "panel10";
- this.panel10.Size = new System.Drawing.Size(751, 40);
- this.panel10.TabIndex = 2;
- //
- // tableLayoutPanel3
- //
- this.tableLayoutPanel3.ColumnCount = 5;
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 90F));
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 81F));
- this.tableLayoutPanel3.Controls.Add(this.txtPageNum, 3, 0);
- this.tableLayoutPanel3.Controls.Add(this.btnPage, 4, 0);
- this.tableLayoutPanel3.Controls.Add(this.label3, 0, 0);
- this.tableLayoutPanel3.Controls.Add(this.txtGroess, 1, 0);
- this.tableLayoutPanel3.Controls.Add(this.label4, 2, 0);
- this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
- this.tableLayoutPanel3.Name = "tableLayoutPanel3";
- this.tableLayoutPanel3.RowCount = 1;
- this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayoutPanel3.Size = new System.Drawing.Size(749, 38);
- this.tableLayoutPanel3.TabIndex = 0;
- //
- // txtPageNum
- //
- this.txtPageNum.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtPageNum.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtPageNum.Location = new System.Drawing.Point(432, 3);
- this.txtPageNum.Name = "txtPageNum";
- this.txtPageNum.Size = new System.Drawing.Size(233, 29);
- this.txtPageNum.TabIndex = 4;
- //
- // btnPage
- //
- this.btnPage.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnPage.Dock = System.Windows.Forms.DockStyle.Fill;
- this.btnPage.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnPage.Font = new System.Drawing.Font("楷体", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)), true);
- this.btnPage.ForeColor = System.Drawing.Color.White;
- this.btnPage.Location = new System.Drawing.Point(671, 3);
- this.btnPage.Name = "btnPage";
- this.btnPage.Size = new System.Drawing.Size(75, 32);
- this.btnPage.TabIndex = 8;
- this.btnPage.Text = "换纸";
- this.btnPage.UseVisualStyleBackColor = false;
- this.btnPage.Click += new System.EventHandler(this.btnPage_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label3.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label3.Location = new System.Drawing.Point(3, 0);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(94, 38);
- this.label3.TabIndex = 15;
- this.label3.Text = "毛重(kg)";
- this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // txtGroess
- //
- this.txtGroess.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtGroess.Font = new System.Drawing.Font("宋体", 15F);
- this.txtGroess.Location = new System.Drawing.Point(103, 3);
- this.txtGroess.Name = "txtGroess";
- this.txtGroess.ReadOnly = true;
- this.txtGroess.Size = new System.Drawing.Size(233, 30);
- this.txtGroess.TabIndex = 14;
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label4.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label4.Location = new System.Drawing.Point(342, 0);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(84, 38);
- this.label4.TabIndex = 16;
- this.label4.Text = "纸张";
- this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // panel5
- //
- this.panel5.Controls.Add(this.tableLayoutPanel2);
- this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel5.Location = new System.Drawing.Point(0, 0);
- this.panel5.Margin = new System.Windows.Forms.Padding(2);
- this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(751, 60);
- this.panel5.TabIndex = 1;
- //
- // tableLayoutPanel2
- //
- this.tableLayoutPanel2.ColumnCount = 2;
- this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel2.Controls.Add(this.ucStorageWeightKg2, 0, 0);
- this.tableLayoutPanel2.Controls.Add(this.ucStorageWeightKg1, 0, 0);
- this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
- this.tableLayoutPanel2.Name = "tableLayoutPanel2";
- this.tableLayoutPanel2.RowCount = 1;
- this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 60F));
- this.tableLayoutPanel2.Size = new System.Drawing.Size(751, 60);
- this.tableLayoutPanel2.TabIndex = 0;
- //
- // ucStorageWeightKg2
- //
- this.ucStorageWeightKg2.BackColor = System.Drawing.Color.Transparent;
- this.ucStorageWeightKg2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ucStorageWeightKg2.Location = new System.Drawing.Point(378, 3);
- this.ucStorageWeightKg2.Name = "ucStorageWeightKg2";
- this.ucStorageWeightKg2.Size = new System.Drawing.Size(370, 54);
- this.ucStorageWeightKg2.TabIndex = 2;
- //
- // ucStorageWeightKg1
- //
- this.ucStorageWeightKg1.BackColor = System.Drawing.Color.Transparent;
- this.ucStorageWeightKg1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ucStorageWeightKg1.Location = new System.Drawing.Point(3, 3);
- this.ucStorageWeightKg1.Name = "ucStorageWeightKg1";
- this.ucStorageWeightKg1.Size = new System.Drawing.Size(369, 54);
- this.ucStorageWeightKg1.TabIndex = 1;
- //
- // panel1
- //
- this.panel1.AutoScroll = true;
- this.panel1.BackColor = System.Drawing.Color.Transparent;
- this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
- this.panel1.Location = new System.Drawing.Point(3, 0);
- this.panel1.Margin = new System.Windows.Forms.Padding(2);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(415, 839);
- this.panel1.TabIndex = 4;
- //
- // panel2
- //
- this.panel2.BackColor = System.Drawing.Color.Transparent;
- this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel2.Controls.Add(this.groupBox2);
- this.panel2.Controls.Add(this.panel16);
- this.panel2.Controls.Add(this.panel15);
- this.panel2.Controls.Add(this.groupBox1);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Right;
- this.panel2.Location = new System.Drawing.Point(1169, 0);
- this.panel2.Margin = new System.Windows.Forms.Padding(2);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(300, 839);
- this.panel2.TabIndex = 1;
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.txtMsgInfo);
- this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.groupBox2.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox2.ForeColor = System.Drawing.Color.Blue;
- this.groupBox2.Location = new System.Drawing.Point(0, 431);
- this.groupBox2.Margin = new System.Windows.Forms.Padding(2);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Padding = new System.Windows.Forms.Padding(2);
- this.groupBox2.Size = new System.Drawing.Size(298, 406);
- this.groupBox2.TabIndex = 7;
- this.groupBox2.TabStop = false;
- this.groupBox2.Text = "提示信息";
- //
- // txtMsgInfo
- //
- this.txtMsgInfo.BackColor = System.Drawing.Color.White;
- this.txtMsgInfo.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtMsgInfo.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtMsgInfo.Location = new System.Drawing.Point(2, 18);
- this.txtMsgInfo.Multiline = true;
- this.txtMsgInfo.Name = "txtMsgInfo";
- this.txtMsgInfo.ReadOnly = true;
- this.txtMsgInfo.Size = new System.Drawing.Size(294, 386);
- this.txtMsgInfo.TabIndex = 39;
- //
- // panel16
- //
- this.panel16.Controls.Add(this.panel20);
- this.panel16.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel16.Location = new System.Drawing.Point(0, 394);
- this.panel16.Name = "panel16";
- this.panel16.Size = new System.Drawing.Size(298, 37);
- this.panel16.TabIndex = 6;
- //
- // panel20
- //
- this.panel20.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel20.Controls.Add(this.tableLayoutPanel4);
- this.panel20.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel20.Location = new System.Drawing.Point(0, 0);
- this.panel20.Margin = new System.Windows.Forms.Padding(2);
- this.panel20.Name = "panel20";
- this.panel20.Size = new System.Drawing.Size(298, 37);
- this.panel20.TabIndex = 6;
- //
- // tableLayoutPanel4
- //
- this.tableLayoutPanel4.ColumnCount = 2;
- this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 110F));
- this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayoutPanel4.Controls.Add(this.txtTARE_WEIGHT, 1, 0);
- this.tableLayoutPanel4.Controls.Add(this.label21, 0, 0);
- this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 0);
- this.tableLayoutPanel4.Name = "tableLayoutPanel4";
- this.tableLayoutPanel4.RowCount = 1;
- this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayoutPanel4.Size = new System.Drawing.Size(296, 35);
- this.tableLayoutPanel4.TabIndex = 0;
- //
- // txtTARE_WEIGHT
- //
- this.txtTARE_WEIGHT.Dock = System.Windows.Forms.DockStyle.Fill;
- this.txtTARE_WEIGHT.Font = new System.Drawing.Font("宋体", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtTARE_WEIGHT.Location = new System.Drawing.Point(113, 3);
- this.txtTARE_WEIGHT.Name = "txtTARE_WEIGHT";
- this.txtTARE_WEIGHT.Size = new System.Drawing.Size(180, 29);
- this.txtTARE_WEIGHT.TabIndex = 3;
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label21.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label21.Location = new System.Drawing.Point(2, 0);
- this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(106, 35);
- this.label21.TabIndex = 2;
- this.label21.Text = "包装重量(kg)";
- this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // panel15
- //
- this.panel15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel15.Controls.Add(this.btnGQ);
- this.panel15.Controls.Add(this.btnStart);
- this.panel15.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel15.Location = new System.Drawing.Point(0, 354);
- this.panel15.Margin = new System.Windows.Forms.Padding(2);
- this.panel15.Name = "panel15";
- this.panel15.Size = new System.Drawing.Size(298, 40);
- this.panel15.TabIndex = 5;
- //
- // btnGQ
- //
- this.btnGQ.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnGQ.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnGQ.Font = new System.Drawing.Font("楷体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)), true);
- this.btnGQ.ForeColor = System.Drawing.Color.White;
- this.btnGQ.Location = new System.Drawing.Point(128, 3);
- this.btnGQ.Name = "btnGQ";
- this.btnGQ.Size = new System.Drawing.Size(95, 32);
- this.btnGQ.TabIndex = 7;
- this.btnGQ.Text = "挂起";
- this.btnGQ.UseVisualStyleBackColor = false;
- this.btnGQ.Click += new System.EventHandler(this.btnGQ_Click);
- //
- // btnStart
- //
- this.btnStart.BackColor = System.Drawing.Color.DodgerBlue;
- this.btnStart.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.btnStart.Font = new System.Drawing.Font("楷体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)), true);
- this.btnStart.ForeColor = System.Drawing.Color.White;
- this.btnStart.Location = new System.Drawing.Point(5, 3);
- this.btnStart.Name = "btnStart";
- this.btnStart.Size = new System.Drawing.Size(95, 32);
- this.btnStart.TabIndex = 6;
- this.btnStart.Text = "自动派位";
- this.btnStart.UseVisualStyleBackColor = false;
- this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
- //
- // groupBox1
- //
- this.groupBox1.Controls.Add(this.ultraGridPW);
- this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.groupBox1.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox1.ForeColor = System.Drawing.Color.Blue;
- this.groupBox1.Location = new System.Drawing.Point(0, 0);
- this.groupBox1.Margin = new System.Windows.Forms.Padding(2);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Padding = new System.Windows.Forms.Padding(2);
- this.groupBox1.Size = new System.Drawing.Size(298, 354);
- this.groupBox1.TabIndex = 0;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "派位";
- //
- // ultraGridPW
- //
- this.ultraGridPW.DataMember = "已接管计量点";
- this.ultraGridPW.DataSource = this.dataSet1;
- ultraGridColumn99.Header.VisiblePosition = 0;
- ultraGridColumn99.Hidden = true;
- ultraGridColumn100.Header.VisiblePosition = 1;
- ultraGridColumn101.Header.VisiblePosition = 2;
- ultraGridBand4.Columns.AddRange(new object[] {
- ultraGridColumn99,
- ultraGridColumn100,
- ultraGridColumn101});
- ultraGridBand4.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
- this.ultraGridPW.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
- this.ultraGridPW.DisplayLayout.DefaultSelectedBackColor = System.Drawing.Color.Empty;
- this.ultraGridPW.DisplayLayout.DefaultSelectedForeColor = System.Drawing.Color.Empty;
- this.ultraGridPW.DisplayLayout.Override.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Button3D;
- appearance16.TextVAlignAsString = "Middle";
- this.ultraGridPW.DisplayLayout.Override.CellAppearance = appearance16;
- this.ultraGridPW.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
- appearance17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- appearance17.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- this.ultraGridPW.DisplayLayout.Override.HeaderAppearance = appearance17;
- this.ultraGridPW.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- this.ultraGridPW.DisplayLayout.Override.MaxSelectedRows = 1;
- this.ultraGridPW.DisplayLayout.Override.MinRowHeight = 21;
- appearance18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
- appearance18.TextVAlignAsString = "Middle";
- this.ultraGridPW.DisplayLayout.Override.RowSelectorAppearance = appearance18;
- this.ultraGridPW.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ultraGridPW.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.ultraGridPW.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- this.ultraGridPW.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
- this.ultraGridPW.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGridPW.Font = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGridPW.Location = new System.Drawing.Point(2, 18);
- this.ultraGridPW.Name = "ultraGridPW";
- this.ultraGridPW.Size = new System.Drawing.Size(294, 334);
- this.ultraGridPW.TabIndex = 8;
- //
- // plImgShow
- //
- this.plImgShow.Controls.Add(this.pictureShow);
- this.plImgShow.Location = new System.Drawing.Point(257, 119);
- this.plImgShow.Margin = new System.Windows.Forms.Padding(2);
- this.plImgShow.Name = "plImgShow";
- this.plImgShow.Size = new System.Drawing.Size(179, 640);
- this.plImgShow.TabIndex = 43;
- this.plImgShow.Visible = false;
- //
- // pictureShow
- //
- this.pictureShow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- this.pictureShow.Dock = System.Windows.Forms.DockStyle.Fill;
- this.pictureShow.Location = new System.Drawing.Point(0, 0);
- this.pictureShow.Margin = new System.Windows.Forms.Padding(2);
- this.pictureShow.Name = "pictureShow";
- this.pictureShow.Size = new System.Drawing.Size(179, 640);
- this.pictureShow.TabIndex = 1;
- this.pictureShow.TabStop = false;
- this.pictureShow.DoubleClick += new System.EventHandler(this.pictureShow_DoubleClick);
- //
- // frmMainBF
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1472, 842);
- this.Controls.Add(this.plImgShow);
- this.Controls.Add(this.ultraGroupBox1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Name = "frmMainBF";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
- this.Load += new System.EventHandler(this.frmMain_Load);
- this.ultraTabPageControl1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridSj)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- this.ultraTabPageControl3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridJl)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtCalibration)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtJGPointInfo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtBranch)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtPreTrackScale)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- this.panel3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.uTab)).EndInit();
- this.uTab.ResumeLayout(false);
- this.panel14.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.txtGrossWgt)).EndInit();
- this.panel11.ResumeLayout(false);
- this.tableLayoutPanel1.ResumeLayout(false);
- this.tableLayoutPanel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtBLOCK_NUM)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbStandard)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbGrade)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbMatterNo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSEAL_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPACKAGE_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBUCKET_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCOMBIN_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtMEMO)).EndInit();
- this.panel10.ResumeLayout(false);
- this.tableLayoutPanel3.ResumeLayout(false);
- this.tableLayoutPanel3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtPageNum)).EndInit();
- this.panel5.ResumeLayout(false);
- this.tableLayoutPanel2.ResumeLayout(false);
- this.panel2.ResumeLayout(false);
- this.groupBox2.ResumeLayout(false);
- this.groupBox2.PerformLayout();
- this.panel16.ResumeLayout(false);
- this.panel20.ResumeLayout(false);
- this.tableLayoutPanel4.ResumeLayout(false);
- this.tableLayoutPanel4.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtTARE_WEIGHT)).EndInit();
- this.panel15.ResumeLayout(false);
- this.groupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGridPW)).EndInit();
- this.plImgShow.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.pictureShow)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Data.DataSet dataSet1;
- private System.Data.DataTable dtPreTrackScale;
- private System.Data.DataColumn dataColumn70;
- private System.Data.DataColumn dataColumn71;
- private System.Data.DataColumn dataColumn72;
- private System.Data.DataColumn dataColumn73;
- private System.Data.DataColumn dataColumn74;
- private System.Data.DataColumn dataColumn75;
- private System.Data.DataColumn dataColumn76;
- private System.Data.DataColumn dataColumn77;
- private System.Data.DataColumn dataColumn78;
- private System.Data.DataColumn dataColumn79;
- private System.Data.DataColumn dataColumn80;
- private System.Data.DataColumn dataColumn81;
- private System.Data.DataColumn dataColumn82;
- private System.Data.DataColumn dataColumn83;
- private System.Data.DataColumn dataColumn84;
- private System.Data.DataColumn dataColumn85;
- private System.Data.DataColumn dataColumn86;
- private System.Data.DataColumn dataColumn87;
- private System.Data.DataColumn dataColumn88;
- private System.Data.DataColumn dataColumn89;
- private System.Data.DataColumn dataColumn90;
- private System.Data.DataColumn dataColumn91;
- private System.Data.DataColumn dataColumn92;
- private System.Data.DataColumn dataColumn93;
- private System.Data.DataColumn dataColumn94;
- private System.Data.DataColumn dataColumn95;
- private System.Data.DataColumn dataColumn96;
- private System.Data.DataColumn dataColumn97;
- private System.Data.DataColumn dataColumn98;
- private System.Data.DataColumn dataColumn99;
- private System.Data.DataColumn dataColumn100;
- private System.Data.DataColumn dataColumn101;
- private System.Data.DataColumn dataColumn102;
- private System.Data.DataColumn dataColumn103;
- private System.Data.DataColumn dataColumn104;
- private System.Data.DataColumn dataColumn105;
- private System.Data.DataColumn dataColumn106;
- private System.Data.DataColumn dataColumn107;
- private System.Data.DataColumn dataColumn108;
- private System.Data.DataColumn dataColumn109;
- private System.Data.DataColumn dataColumn110;
- private System.Data.DataColumn dataColumn111;
- private System.Data.DataColumn dataColumn112;
- private System.Data.DataColumn dataColumn113;
- private System.Data.DataColumn dataColumn114;
- private System.Data.DataColumn dataColumn115;
- private System.Data.DataColumn dataColumn116;
- private System.Data.DataColumn dataColumn117;
- private System.Data.DataColumn dataColumn118;
- private System.Data.DataColumn dataColumn119;
- private System.Data.DataColumn dataColumn120;
- private System.Data.DataColumn dataColumn121;
- private System.Data.DataColumn dataColumn122;
- private System.Data.DataColumn dataColumn123;
- private System.Data.DataColumn dataColumn124;
- private System.Data.DataColumn dataColumn125;
- private System.Data.DataTable dtCalibration;
- private System.Data.DataColumn dataColumn126;
- private System.Data.DataColumn dataColumn127;
- private System.Data.DataColumn dataColumn128;
- private System.Data.DataColumn dataColumn129;
- private System.Data.DataColumn dataColumn130;
- private System.Data.DataColumn dataColumn131;
- private System.Data.DataColumn dataColumn132;
- private System.Data.DataColumn dataColumn133;
- private System.Data.DataColumn dataColumn134;
- private System.Data.DataColumn dataColumn135;
- private System.Data.DataColumn dataColumn136;
- private System.Data.DataColumn dataColumn137;
- private System.Data.DataColumn dataColumn138;
- private System.Data.DataColumn dataColumn139;
- private System.Data.DataColumn dataColumn140;
- private System.Data.DataTable dtJGPointInfo;
- private System.Data.DataColumn dataColumn158;
- private System.Data.DataColumn dataColumn159;
- private System.Data.DataSet dataSet2;
- private System.Data.DataTable dataTable1;
- private System.Data.DataColumn dataColumn1;
- private System.Data.DataColumn dataColumn2;
- private System.Data.DataColumn dataColumn3;
- private System.Data.DataColumn dataColumn4;
- private System.Data.DataColumn dataColumn5;
- private System.Data.DataColumn dataColumn6;
- private System.Data.DataColumn dataColumn7;
- private System.Data.DataColumn dataColumn8;
- private System.Data.DataColumn dataColumn9;
- private System.Data.DataColumn dataColumn10;
- private System.Data.DataColumn dataColumn11;
- private System.Data.DataColumn dataColumn12;
- private System.Data.DataColumn dataColumn13;
- private System.Data.DataColumn dataColumn14;
- private System.Data.DataColumn dataColumn15;
- private System.Data.DataColumn dataColumn16;
- private System.Data.DataColumn dataColumn17;
- private System.Data.DataColumn dataColumn18;
- private System.Data.DataColumn dataColumn19;
- private System.Data.DataColumn dataColumn20;
- private System.Data.DataColumn dataColumn21;
- private System.Data.DataColumn dataColumn22;
- private System.Data.DataColumn dataColumn23;
- private System.Data.DataColumn dataColumn24;
- private System.Data.DataColumn dataColumn25;
- private System.Data.DataColumn dataColumn26;
- private System.Data.DataColumn dataColumn27;
- private System.Data.DataColumn dataColumn28;
- private System.Data.DataColumn dataColumn29;
- private System.Data.DataColumn dataColumn30;
- private System.Data.DataColumn dataColumn31;
- private System.Data.DataColumn dataColumn32;
- private System.Data.DataColumn dataColumn33;
- private System.Data.DataColumn dataColumn34;
- private System.Data.DataColumn dataColumn35;
- private System.Data.DataColumn dataColumn36;
- private System.Data.DataColumn dataColumn37;
- private System.Data.DataColumn dataColumn38;
- private System.Data.DataColumn dataColumn39;
- private System.Data.DataColumn dataColumn40;
- private System.Data.DataColumn dataColumn41;
- private System.Data.DataColumn dataColumn42;
- private System.Data.DataColumn dataColumn43;
- private System.Data.DataColumn dataColumn44;
- private System.Data.DataColumn dataColumn45;
- private System.Data.DataColumn dataColumn46;
- private System.Data.DataColumn dataColumn47;
- private System.Data.DataColumn dataColumn48;
- private System.Data.DataColumn dataColumn49;
- private System.Data.DataColumn dataColumn50;
- private System.Data.DataColumn dataColumn51;
- private System.Data.DataColumn dataColumn52;
- private System.Data.DataColumn dataColumn53;
- private System.Data.DataColumn dataColumn54;
- private System.Data.DataColumn dataColumn55;
- private System.Data.DataColumn dataColumn56;
- private System.Data.DataColumn dataColumn57;
- private System.Data.DataColumn dataColumn58;
- private System.Data.DataColumn dataColumn59;
- private System.Data.DataColumn dataColumn60;
- private System.Data.DataColumn dataColumn61;
- private System.Data.DataColumn dataColumn62;
- private System.Data.DataColumn dataColumn63;
- private System.Data.DataColumn dataColumn64;
- private System.Data.DataColumn dataColumn65;
- private System.Data.DataColumn dataColumn66;
- private System.Data.DataColumn dataColumn67;
- private System.Data.DataColumn dataColumn68;
- private System.Windows.Forms.Timer timer1;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private System.Windows.Forms.Panel panel3;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl uTab;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridSj;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
- private System.Windows.Forms.Panel panel14;
- private System.Windows.Forms.Button btnSave;
- private System.Windows.Forms.Button btnCheckBalance;
- private System.Windows.Forms.Button btnOpenVoice;
- private System.Windows.Forms.Panel panel10;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.TextBox txtGroess;
- private System.Windows.Forms.Panel panel5;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Panel panel2;
- private System.Windows.Forms.GroupBox groupBox2;
- private System.Windows.Forms.TextBox txtMsgInfo;
- private System.Windows.Forms.Panel panel16;
- private System.Windows.Forms.Panel panel20;
- private System.Windows.Forms.Label label21;
- private System.Windows.Forms.Panel panel15;
- private System.Windows.Forms.Button btnStart;
- private System.Windows.Forms.GroupBox groupBox1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridPW;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGridJl;
- private System.Windows.Forms.Panel panel11;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Label label12;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.Label label14;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSEAL_NO;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPACKAGE_NO;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_NO;
- private System.Windows.Forms.Label label15;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBUCKET_NO;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtCOMBIN_NO;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.Label label17;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtMEMO;
- private System.Windows.Forms.DateTimePicker txtPRODUCT_DATE;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
- private MeterModuleLibrary.ucStorageWeightKg ucStorageWeightKg2;
- private MeterModuleLibrary.ucStorageWeightKg ucStorageWeightKg1;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbStandard;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbGrade;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbMatterNo;
- private System.Windows.Forms.NumericUpDown txtTARE_WEIGHT;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
- private System.Data.DataColumn dataColumn69;
- private System.Windows.Forms.Button btnPage;
- private System.Windows.Forms.NumericUpDown txtPageNum;
- private System.Windows.Forms.Panel plImgShow;
- private System.Windows.Forms.PictureBox pictureShow;
- private System.Windows.Forms.Button btnGQ;
- private System.Windows.Forms.NumericUpDown txtBLOCK_NUM;
- private System.Data.DataTable dtBranch;
- private System.Data.DataColumn dataColumn141;
- private System.Data.DataColumn dataColumn142;
- private System.Data.DataColumn dataColumn143;
- private System.Data.DataColumn dataColumn144;
- private System.Data.DataColumn dataColumn145;
- private System.Data.DataColumn dataColumn146;
- private System.Data.DataColumn dataColumn147;
- private System.Data.DataColumn dataColumn148;
- private System.Data.DataColumn dataColumn149;
- private System.Data.DataColumn dataColumn150;
- private System.Data.DataColumn dataColumn151;
- private System.Data.DataColumn dataColumn152;
- private System.Data.DataColumn dataColumn153;
- private System.Data.DataColumn dataColumn154;
- private System.Windows.Forms.NumericUpDown txtGrossWgt;
- private System.Data.DataColumn dataColumn155;
- private System.Data.DataColumn dataColumn156;
- private System.Data.DataColumn dataColumn157;
- }
- }
|