| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435 |
- namespace Core.StlMes.Client.ZGMil.Result
- {
- partial class FrmGetBatchAndSamples
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table3", -1);
- Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance169 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance170 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance171 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance172 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance173 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance174 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance175 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance176 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance177 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance178 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance179 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance180 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance181 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance182 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table4", -1);
- Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table5", -1);
- Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance108 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance207 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
- Infragistics.Win.Appearance appearance208 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance209 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance210 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance211 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance212 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance213 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance214 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance215 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance216 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance217 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance218 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance219 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance220 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance221 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance222 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance223 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance224 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance225 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance226 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance227 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance228 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance229 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance230 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance231 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance232 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.Appearance appearance233 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance234 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance235 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance236 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance237 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance238 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance239 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance240 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance241 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand6 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table9", -1);
- Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand7 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table8", -1);
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance168 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance167 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance183 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand8 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table10", -1);
- Infragistics.Win.Appearance appearance184 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance185 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance186 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance187 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance188 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance189 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance190 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance191 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance192 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance193 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance194 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance195 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand9 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table11", -1);
- Infragistics.Win.Appearance appearance196 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance197 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance198 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance199 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance200 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance201 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance202 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance203 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance204 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance205 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance206 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand10 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table7", -1);
- Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance162 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance163 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance164 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance165 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance166 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance161 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand11 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table6", -1);
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab6 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab7 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.panel4 = new System.Windows.Forms.Panel();
- this.panel5 = new System.Windows.Forms.Panel();
- this.panel7 = new System.Windows.Forms.Panel();
- this.panel8 = new System.Windows.Forms.Panel();
- this.panel10 = new System.Windows.Forms.Panel();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.ultraGroupBox5 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet1 = new System.Data.DataSet();
- this.dataTable1 = new System.Data.DataTable();
- this.dataTable2 = new System.Data.DataTable();
- this.dataTable3 = new System.Data.DataTable();
- this.dataTable4 = new System.Data.DataTable();
- this.dataTable5 = new System.Data.DataTable();
- this.panel11 = new System.Windows.Forms.Panel();
- this.txtBATCH_MIN = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel47 = new Infragistics.Win.Misc.UltraLabel();
- this.txtPIPE_NUM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
- this.btnCancel = new System.Windows.Forms.Button();
- this.btnAuto = new System.Windows.Forms.Button();
- this.btnConfirm = new System.Windows.Forms.Button();
- this.ultraEND_PIPE_NO = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraSTART_PIPE_NO = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
- this.splitContainer2 = new System.Windows.Forms.SplitContainer();
- this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraGroupBox6 = new Infragistics.Win.Misc.UltraGroupBox();
- this.btnFindSampleReq = new System.Windows.Forms.Button();
- this.ultraGrid5 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.panel9 = new System.Windows.Forms.Panel();
- this.ultraGX = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
- this.CHKISVALID = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
- this.panel6 = new System.Windows.Forms.Panel();
- this.ultraTextEditor22 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
- this.txtBATCH_MAX = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.txtCONSIGN_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
- this.txtCONSIGN_TIME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtSTEEL_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.txtPRODUCT_STD = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
- this.txtSTEEL_GRADE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtHEAT_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.txtCHECK_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.panel13 = new System.Windows.Forms.Panel();
- this.panel14 = new System.Windows.Forms.Panel();
- this.panel15 = new System.Windows.Forms.Panel();
- this.panel16 = new System.Windows.Forms.Panel();
- this.panel17 = new System.Windows.Forms.Panel();
- this.splitContainer3 = new System.Windows.Forms.SplitContainer();
- this.ultraGroupBox7 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid9 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet2 = new System.Data.DataSet();
- this.dataTable6 = new System.Data.DataTable();
- this.dataTable7 = new System.Data.DataTable();
- this.dataTable8 = new System.Data.DataTable();
- this.dataTable9 = new System.Data.DataTable();
- this.dataTable10 = new System.Data.DataTable();
- this.dataTable11 = new System.Data.DataTable();
- this.panel18 = new System.Windows.Forms.Panel();
- this.CHKISALL_LOG = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.btnDeleteSample_LOG = new System.Windows.Forms.Button();
- this.ultraPOSITION_LOG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel21 = new Infragistics.Win.Misc.UltraLabel();
- this.btnAddSample_LOG = new System.Windows.Forms.Button();
- this.ultraPIPE_NO_LOG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel22 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraBATCH_NO_LOG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraGroupBox8 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid8 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.panel19 = new System.Windows.Forms.Panel();
- this.txtBATCH_MIN_LOG = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel46 = new Infragistics.Win.Misc.UltraLabel();
- this.txtPIPE_NUM_LOG = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel24 = new Infragistics.Win.Misc.UltraLabel();
- this.btnCancel_LOG = new System.Windows.Forms.Button();
- this.btnAuto_LOG = new System.Windows.Forms.Button();
- this.btnConfirm_LOG = new System.Windows.Forms.Button();
- this.ultraEND_PIPE_NO_LOG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel25 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraSTART_PIPE_NO_LOG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel26 = new Infragistics.Win.Misc.UltraLabel();
- this.splitContainer4 = new System.Windows.Forms.SplitContainer();
- this.ultraGroupBox9 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid10 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraGroupBox13 = new Infragistics.Win.Misc.UltraGroupBox();
- this.CHKISAllSampleReq_LOG = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.btnFindSampleReq_LOG = new System.Windows.Forms.Button();
- this.ultraGrid11 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraGroupBox10 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid7 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.panel20 = new System.Windows.Forms.Panel();
- this.ultraGX_LOG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel27 = new Infragistics.Win.Misc.UltraLabel();
- this.CHKISVALID_LOG = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultraGroupBox11 = new Infragistics.Win.Misc.UltraGroupBox();
- this.panel21 = new System.Windows.Forms.Panel();
- this.ultraTextEditor4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtSAMPLE_CLASS = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel43 = new Infragistics.Win.Misc.UltraLabel();
- this.txtSAMPLE_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel44 = new Infragistics.Win.Misc.UltraLabel();
- this.txtSAMPLE_TIME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel45 = new Infragistics.Win.Misc.UltraLabel();
- this.txtBATCH_CLASS = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel42 = new Infragistics.Win.Misc.UltraLabel();
- this.txtBATCH_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel41 = new Infragistics.Win.Misc.UltraLabel();
- this.txtBATCH_TIME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel40 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel28 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor7 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel29 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel30 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel31 = new Infragistics.Win.Misc.UltraLabel();
- this.txtBATCH_MAX_LOG = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel32 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor9 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel33 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor10 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor11 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel34 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel35 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor12 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel36 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor13 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor14 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel37 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel38 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor15 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel39 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraGroupBox12 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid6 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.panel1 = new System.Windows.Forms.Panel();
- this.panel3 = new System.Windows.Forms.Panel();
- this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.panel2 = new System.Windows.Forms.Panel();
- this.chkLOT_NO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.chkJUDGE_STOVE_NO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txtQueryJUDGE_STOVE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtQueryLOT_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
- this.dateEnd = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.chkCONSIGN_TIME = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.dateBegin = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.ultraTabSharedControlsPage2 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraTabControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.btnSampleSeq = new System.Windows.Forms.Button();
- this.ultraTabPageControl1.SuspendLayout();
- this.panel4.SuspendLayout();
- this.panel5.SuspendLayout();
- this.panel7.SuspendLayout();
- this.panel8.SuspendLayout();
- this.panel10.SuspendLayout();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).BeginInit();
- this.ultraGroupBox5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
- this.panel11.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MIN)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPIPE_NUM)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraEND_PIPE_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraSTART_PIPE_NO)).BeginInit();
- this.splitContainer2.Panel1.SuspendLayout();
- this.splitContainer2.Panel2.SuspendLayout();
- this.splitContainer2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
- this.ultraGroupBox4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).BeginInit();
- this.ultraGroupBox6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
- this.ultraGroupBox3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
- this.panel9.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.CHKISVALID)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
- this.ultraGroupBox2.SuspendLayout();
- this.panel6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCONSIGN_NAME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCONSIGN_TIME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSTEEL_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPRODUCT_STD)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSTEEL_GRADE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtHEAT_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCHECK_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
- this.ultraTabPageControl3.SuspendLayout();
- this.panel13.SuspendLayout();
- this.panel14.SuspendLayout();
- this.panel15.SuspendLayout();
- this.panel16.SuspendLayout();
- this.panel17.SuspendLayout();
- this.splitContainer3.Panel1.SuspendLayout();
- this.splitContainer3.Panel2.SuspendLayout();
- this.splitContainer3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox7)).BeginInit();
- this.ultraGroupBox7.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid9)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable8)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable9)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable10)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable11)).BeginInit();
- this.panel18.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.CHKISALL_LOG)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraPOSITION_LOG)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraPIPE_NO_LOG)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraBATCH_NO_LOG)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox8)).BeginInit();
- this.ultraGroupBox8.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid8)).BeginInit();
- this.panel19.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MIN_LOG)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPIPE_NUM_LOG)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraEND_PIPE_NO_LOG)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraSTART_PIPE_NO_LOG)).BeginInit();
- this.splitContainer4.Panel1.SuspendLayout();
- this.splitContainer4.Panel2.SuspendLayout();
- this.splitContainer4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox9)).BeginInit();
- this.ultraGroupBox9.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid10)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox13)).BeginInit();
- this.ultraGroupBox13.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.CHKISAllSampleReq_LOG)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid11)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox10)).BeginInit();
- this.ultraGroupBox10.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).BeginInit();
- this.panel20.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGX_LOG)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.CHKISVALID_LOG)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox11)).BeginInit();
- this.ultraGroupBox11.SuspendLayout();
- this.panel21.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSAMPLE_CLASS)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSAMPLE_NAME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSAMPLE_TIME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_CLASS)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_NAME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_TIME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MAX_LOG)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox12)).BeginInit();
- this.ultraGroupBox12.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid6)).BeginInit();
- this.panel1.SuspendLayout();
- this.panel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
- this.ultraTabControl1.SuspendLayout();
- this.panel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chkLOT_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkJUDGE_STOVE_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtQueryJUDGE_STOVE_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtQueryLOT_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dateEnd)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkCONSIGN_TIME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dateBegin)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).BeginInit();
- this.SuspendLayout();
- //
- // ultraTabPageControl1
- //
- this.ultraTabPageControl1.Controls.Add(this.panel4);
- this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl1.Name = "ultraTabPageControl1";
- this.ultraTabPageControl1.Size = new System.Drawing.Size(1322, 438);
- //
- // panel4
- //
- this.panel4.Controls.Add(this.panel5);
- this.panel4.Controls.Add(this.ultraGroupBox1);
- this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel4.Location = new System.Drawing.Point(0, 0);
- this.panel4.Name = "panel4";
- this.panel4.Size = new System.Drawing.Size(1322, 438);
- this.panel4.TabIndex = 21;
- //
- // panel5
- //
- this.panel5.Controls.Add(this.panel7);
- this.panel5.Controls.Add(this.ultraGroupBox2);
- this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel5.Location = new System.Drawing.Point(180, 0);
- this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(1142, 438);
- this.panel5.TabIndex = 20;
- //
- // panel7
- //
- this.panel7.Controls.Add(this.panel8);
- this.panel7.Controls.Add(this.ultraGroupBox3);
- this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel7.Location = new System.Drawing.Point(0, 106);
- this.panel7.Name = "panel7";
- this.panel7.Size = new System.Drawing.Size(1142, 332);
- this.panel7.TabIndex = 1;
- //
- // panel8
- //
- this.panel8.Controls.Add(this.panel10);
- this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel8.Location = new System.Drawing.Point(143, 0);
- this.panel8.Name = "panel8";
- this.panel8.Size = new System.Drawing.Size(999, 332);
- this.panel8.TabIndex = 21;
- //
- // panel10
- //
- this.panel10.Controls.Add(this.splitContainer1);
- this.panel10.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel10.Location = new System.Drawing.Point(0, 0);
- this.panel10.Name = "panel10";
- this.panel10.Size = new System.Drawing.Size(999, 332);
- this.panel10.TabIndex = 22;
- //
- // splitContainer1
- //
- this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.Location = new System.Drawing.Point(0, 0);
- this.splitContainer1.Name = "splitContainer1";
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.Controls.Add(this.ultraGroupBox5);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
- this.splitContainer1.Size = new System.Drawing.Size(999, 332);
- this.splitContainer1.SplitterDistance = 280;
- this.splitContainer1.SplitterWidth = 1;
- this.splitContainer1.TabIndex = 0;
- //
- // ultraGroupBox5
- //
- this.ultraGroupBox5.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraGroupBox5.Controls.Add(this.ultraGrid3);
- this.ultraGroupBox5.Controls.Add(this.panel11);
- this.ultraGroupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox5.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox5.Name = "ultraGroupBox5";
- this.ultraGroupBox5.Size = new System.Drawing.Size(280, 332);
- this.ultraGroupBox5.TabIndex = 23;
- this.ultraGroupBox5.Text = "性能批号";
- //
- // ultraGrid3
- //
- this.ultraGrid3.DataMember = "Table3";
- this.ultraGrid3.DataSource = this.dataSet1;
- appearance63.BackColor = System.Drawing.SystemColors.Window;
- appearance63.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid3.DisplayLayout.Appearance = appearance63;
- ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ultraGrid3.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance92.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance92.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance92.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance92.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.GroupByBox.Appearance = appearance92;
- appearance169.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid3.DisplayLayout.GroupByBox.BandLabelAppearance = appearance169;
- this.ultraGrid3.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance170.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance170.BackColor2 = System.Drawing.SystemColors.Control;
- appearance170.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance170.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid3.DisplayLayout.GroupByBox.PromptAppearance = appearance170;
- this.ultraGrid3.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid3.DisplayLayout.MaxRowScrollRegions = 1;
- appearance171.BackColor = System.Drawing.SystemColors.Window;
- appearance171.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid3.DisplayLayout.Override.ActiveCellAppearance = appearance171;
- appearance172.BackColor = System.Drawing.SystemColors.Highlight;
- appearance172.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance172;
- this.ultraGrid3.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid3.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid3.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid3.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance173.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance173;
- appearance174.BorderColor = System.Drawing.Color.Silver;
- appearance174.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance174;
- this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid3.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid3.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance175.BackColor = System.Drawing.SystemColors.Control;
- appearance175.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance175.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance175.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance175.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.Override.GroupByRowAppearance = appearance175;
- appearance176.TextHAlignAsString = "Left";
- this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance176;
- this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid3.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance177.BackColor = System.Drawing.SystemColors.Window;
- appearance177.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance177;
- this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance178.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid3.DisplayLayout.Override.TemplateAddRowAppearance = appearance178;
- this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid3.Location = new System.Drawing.Point(1, 107);
- this.ultraGrid3.Name = "ultraGrid3";
- this.ultraGrid3.Size = new System.Drawing.Size(278, 224);
- this.ultraGrid3.TabIndex = 28;
- this.ultraGrid3.Text = "性能批号队列";
- this.ultraGrid3.AfterRowActivate += new System.EventHandler(this.ultraGrid3_AfterRowActivate);
- //
- // dataSet1
- //
- this.dataSet1.DataSetName = "NewDataSet";
- this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable1,
- this.dataTable2,
- this.dataTable3,
- this.dataTable4,
- this.dataTable5});
- //
- // dataTable1
- //
- this.dataTable1.TableName = "Table1";
- //
- // dataTable2
- //
- this.dataTable2.TableName = "Table2";
- //
- // dataTable3
- //
- this.dataTable3.TableName = "Table3";
- //
- // dataTable4
- //
- this.dataTable4.TableName = "Table4";
- //
- // dataTable5
- //
- this.dataTable5.TableName = "Table5";
- //
- // panel11
- //
- this.panel11.Controls.Add(this.txtBATCH_MIN);
- this.panel11.Controls.Add(this.ultraLabel47);
- this.panel11.Controls.Add(this.txtPIPE_NUM);
- this.panel11.Controls.Add(this.ultraLabel12);
- this.panel11.Controls.Add(this.btnCancel);
- this.panel11.Controls.Add(this.btnAuto);
- this.panel11.Controls.Add(this.btnConfirm);
- this.panel11.Controls.Add(this.ultraEND_PIPE_NO);
- this.panel11.Controls.Add(this.ultraLabel15);
- this.panel11.Controls.Add(this.ultraSTART_PIPE_NO);
- this.panel11.Controls.Add(this.ultraLabel18);
- this.panel11.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel11.Location = new System.Drawing.Point(1, 18);
- this.panel11.Name = "panel11";
- this.panel11.Size = new System.Drawing.Size(278, 89);
- this.panel11.TabIndex = 23;
- //
- // txtBATCH_MIN
- //
- this.txtBATCH_MIN.Location = new System.Drawing.Point(202, 9);
- this.txtBATCH_MIN.MaxLength = 100;
- this.txtBATCH_MIN.Name = "txtBATCH_MIN";
- this.txtBATCH_MIN.ReadOnly = true;
- this.txtBATCH_MIN.Size = new System.Drawing.Size(70, 21);
- this.txtBATCH_MIN.TabIndex = 225;
- //
- // ultraLabel47
- //
- appearance179.TextHAlignAsString = "Right";
- appearance179.TextVAlignAsString = "Middle";
- this.ultraLabel47.Appearance = appearance179;
- this.ultraLabel47.AutoSize = true;
- this.ultraLabel47.Location = new System.Drawing.Point(144, 12);
- this.ultraLabel47.Name = "ultraLabel47";
- this.ultraLabel47.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel47.TabIndex = 226;
- this.ultraLabel47.Text = "批数参考";
- //
- // txtPIPE_NUM
- //
- this.txtPIPE_NUM.Location = new System.Drawing.Point(70, 9);
- this.txtPIPE_NUM.MaxLength = 100;
- this.txtPIPE_NUM.Name = "txtPIPE_NUM";
- this.txtPIPE_NUM.ReadOnly = true;
- this.txtPIPE_NUM.Size = new System.Drawing.Size(70, 21);
- this.txtPIPE_NUM.TabIndex = 221;
- //
- // ultraLabel12
- //
- appearance180.TextHAlignAsString = "Right";
- appearance180.TextVAlignAsString = "Middle";
- this.ultraLabel12.Appearance = appearance180;
- this.ultraLabel12.AutoSize = true;
- this.ultraLabel12.Location = new System.Drawing.Point(12, 12);
- this.ultraLabel12.Name = "ultraLabel12";
- this.ultraLabel12.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel12.TabIndex = 222;
- this.ultraLabel12.Text = "有效管数";
- //
- // btnCancel
- //
- this.btnCancel.Location = new System.Drawing.Point(191, 61);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(75, 23);
- this.btnCancel.TabIndex = 220;
- this.btnCancel.Text = "取消此批";
- this.btnCancel.UseVisualStyleBackColor = true;
- this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
- //
- // btnAuto
- //
- this.btnAuto.Location = new System.Drawing.Point(108, 61);
- this.btnAuto.Name = "btnAuto";
- this.btnAuto.Size = new System.Drawing.Size(75, 23);
- this.btnAuto.TabIndex = 219;
- this.btnAuto.Text = "自动组批";
- this.btnAuto.UseVisualStyleBackColor = true;
- this.btnAuto.Click += new System.EventHandler(this.btnAuto_Click);
- //
- // btnConfirm
- //
- this.btnConfirm.Location = new System.Drawing.Point(25, 61);
- this.btnConfirm.Name = "btnConfirm";
- this.btnConfirm.Size = new System.Drawing.Size(75, 23);
- this.btnConfirm.TabIndex = 218;
- this.btnConfirm.Text = "人工组批";
- this.btnConfirm.UseVisualStyleBackColor = true;
- this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
- //
- // ultraEND_PIPE_NO
- //
- this.ultraEND_PIPE_NO.Location = new System.Drawing.Point(202, 34);
- this.ultraEND_PIPE_NO.Name = "ultraEND_PIPE_NO";
- this.ultraEND_PIPE_NO.Size = new System.Drawing.Size(70, 21);
- this.ultraEND_PIPE_NO.TabIndex = 217;
- //
- // ultraLabel15
- //
- appearance181.TextHAlignAsString = "Right";
- appearance181.TextVAlignAsString = "Middle";
- this.ultraLabel15.Appearance = appearance181;
- this.ultraLabel15.AutoSize = true;
- this.ultraLabel15.Location = new System.Drawing.Point(144, 37);
- this.ultraLabel15.Name = "ultraLabel15";
- this.ultraLabel15.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel15.TabIndex = 216;
- this.ultraLabel15.Text = "结束管号";
- //
- // ultraSTART_PIPE_NO
- //
- this.ultraSTART_PIPE_NO.Location = new System.Drawing.Point(70, 34);
- this.ultraSTART_PIPE_NO.Name = "ultraSTART_PIPE_NO";
- this.ultraSTART_PIPE_NO.ReadOnly = true;
- this.ultraSTART_PIPE_NO.Size = new System.Drawing.Size(70, 21);
- this.ultraSTART_PIPE_NO.TabIndex = 215;
- this.ultraSTART_PIPE_NO.TextChanged += new System.EventHandler(this.ultraSTART_PIPE_NO_TextChanged);
- //
- // ultraLabel18
- //
- appearance182.TextHAlignAsString = "Right";
- appearance182.TextVAlignAsString = "Middle";
- this.ultraLabel18.Appearance = appearance182;
- this.ultraLabel18.AutoSize = true;
- this.ultraLabel18.Location = new System.Drawing.Point(12, 37);
- this.ultraLabel18.Name = "ultraLabel18";
- this.ultraLabel18.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel18.TabIndex = 214;
- this.ultraLabel18.Text = "起始管号";
- //
- // splitContainer2
- //
- this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer2.Location = new System.Drawing.Point(0, 0);
- this.splitContainer2.Name = "splitContainer2";
- this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer2.Panel1
- //
- this.splitContainer2.Panel1.Controls.Add(this.ultraGroupBox4);
- this.splitContainer2.Panel1Collapsed = true;
- //
- // splitContainer2.Panel2
- //
- this.splitContainer2.Panel2.Controls.Add(this.ultraGroupBox6);
- this.splitContainer2.Size = new System.Drawing.Size(718, 332);
- this.splitContainer2.SplitterDistance = 125;
- this.splitContainer2.SplitterWidth = 1;
- this.splitContainer2.TabIndex = 0;
- //
- // ultraGroupBox4
- //
- this.ultraGroupBox4.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraGroupBox4.Controls.Add(this.ultraGrid4);
- this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox4.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox4.Name = "ultraGroupBox4";
- this.ultraGroupBox4.Size = new System.Drawing.Size(150, 125);
- this.ultraGroupBox4.TabIndex = 25;
- this.ultraGroupBox4.Text = "标准取样要求队列";
- //
- // ultraGrid4
- //
- this.ultraGrid4.DataMember = "Table4";
- this.ultraGrid4.DataSource = this.dataSet1;
- appearance65.BackColor = System.Drawing.SystemColors.Window;
- appearance65.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid4.DisplayLayout.Appearance = appearance65;
- ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraGrid4.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance66.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance66.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance66.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance66.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.GroupByBox.Appearance = appearance66;
- appearance67.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid4.DisplayLayout.GroupByBox.BandLabelAppearance = appearance67;
- this.ultraGrid4.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance68.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance68.BackColor2 = System.Drawing.SystemColors.Control;
- appearance68.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance68.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid4.DisplayLayout.GroupByBox.PromptAppearance = appearance68;
- this.ultraGrid4.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid4.DisplayLayout.MaxRowScrollRegions = 1;
- appearance69.BackColor = System.Drawing.SystemColors.Window;
- appearance69.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid4.DisplayLayout.Override.ActiveCellAppearance = appearance69;
- appearance70.BackColor = System.Drawing.SystemColors.Highlight;
- appearance70.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid4.DisplayLayout.Override.ActiveRowAppearance = appearance70;
- this.ultraGrid4.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid4.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid4.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid4.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance71.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.Override.CardAreaAppearance = appearance71;
- appearance72.BorderColor = System.Drawing.Color.Silver;
- appearance72.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid4.DisplayLayout.Override.CellAppearance = appearance72;
- this.ultraGrid4.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid4.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid4.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance73.BackColor = System.Drawing.SystemColors.Control;
- appearance73.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance73.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance73.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance73.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.Override.GroupByRowAppearance = appearance73;
- appearance75.TextHAlignAsString = "Left";
- this.ultraGrid4.DisplayLayout.Override.HeaderAppearance = appearance75;
- this.ultraGrid4.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid4.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance77.BackColor = System.Drawing.SystemColors.Window;
- appearance77.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid4.DisplayLayout.Override.RowAppearance = appearance77;
- this.ultraGrid4.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance93.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid4.DisplayLayout.Override.TemplateAddRowAppearance = appearance93;
- this.ultraGrid4.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid4.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid4.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid4.Location = new System.Drawing.Point(1, 18);
- this.ultraGrid4.Name = "ultraGrid4";
- this.ultraGrid4.Size = new System.Drawing.Size(148, 106);
- this.ultraGrid4.TabIndex = 27;
- this.ultraGrid4.Text = "取样要求队列";
- //
- // ultraGroupBox6
- //
- this.ultraGroupBox6.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraGroupBox6.Controls.Add(this.btnFindSampleReq);
- this.ultraGroupBox6.Controls.Add(this.ultraGrid5);
- this.ultraGroupBox6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox6.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox6.Name = "ultraGroupBox6";
- this.ultraGroupBox6.Size = new System.Drawing.Size(718, 332);
- this.ultraGroupBox6.TabIndex = 26;
- this.ultraGroupBox6.Text = "参考取样要求队列";
- //
- // btnFindSampleReq
- //
- this.btnFindSampleReq.Location = new System.Drawing.Point(128, -3);
- this.btnFindSampleReq.Name = "btnFindSampleReq";
- this.btnFindSampleReq.Size = new System.Drawing.Size(112, 23);
- this.btnFindSampleReq.TabIndex = 219;
- this.btnFindSampleReq.Text = "查看标准取样要求";
- this.btnFindSampleReq.UseVisualStyleBackColor = true;
- this.btnFindSampleReq.Click += new System.EventHandler(this.btnFindSampleReq_Click);
- //
- // ultraGrid5
- //
- this.ultraGrid5.DataMember = "Table5";
- this.ultraGrid5.DataSource = this.dataSet1;
- appearance94.BackColor = System.Drawing.SystemColors.Window;
- appearance94.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid5.DisplayLayout.Appearance = appearance94;
- ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid5.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.ultraGrid5.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid5.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance95.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance95.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance95.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance95.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.GroupByBox.Appearance = appearance95;
- appearance97.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid5.DisplayLayout.GroupByBox.BandLabelAppearance = appearance97;
- this.ultraGrid5.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance98.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance98.BackColor2 = System.Drawing.SystemColors.Control;
- appearance98.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance98.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid5.DisplayLayout.GroupByBox.PromptAppearance = appearance98;
- this.ultraGrid5.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid5.DisplayLayout.MaxRowScrollRegions = 1;
- appearance99.BackColor = System.Drawing.SystemColors.Window;
- appearance99.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid5.DisplayLayout.Override.ActiveCellAppearance = appearance99;
- appearance100.BackColor = System.Drawing.SystemColors.Highlight;
- appearance100.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid5.DisplayLayout.Override.ActiveRowAppearance = appearance100;
- this.ultraGrid5.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid5.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid5.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid5.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance101.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.Override.CardAreaAppearance = appearance101;
- appearance102.BorderColor = System.Drawing.Color.Silver;
- appearance102.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid5.DisplayLayout.Override.CellAppearance = appearance102;
- this.ultraGrid5.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid5.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid5.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance104.BackColor = System.Drawing.SystemColors.Control;
- appearance104.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance104.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance104.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance104.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.Override.GroupByRowAppearance = appearance104;
- appearance105.TextHAlignAsString = "Left";
- this.ultraGrid5.DisplayLayout.Override.HeaderAppearance = appearance105;
- this.ultraGrid5.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid5.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance106.BackColor = System.Drawing.SystemColors.Window;
- appearance106.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid5.DisplayLayout.Override.RowAppearance = appearance106;
- this.ultraGrid5.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance108.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid5.DisplayLayout.Override.TemplateAddRowAppearance = appearance108;
- this.ultraGrid5.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid5.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid5.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid5.Location = new System.Drawing.Point(1, 18);
- this.ultraGrid5.Name = "ultraGrid5";
- this.ultraGrid5.Size = new System.Drawing.Size(716, 313);
- this.ultraGrid5.TabIndex = 27;
- this.ultraGrid5.Text = "取样要求队列";
- //
- // ultraGroupBox3
- //
- this.ultraGroupBox3.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraGroupBox3.Controls.Add(this.ultraGrid2);
- this.ultraGroupBox3.Controls.Add(this.panel9);
- this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Left;
- this.ultraGroupBox3.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox3.Name = "ultraGroupBox3";
- this.ultraGroupBox3.Size = new System.Drawing.Size(143, 332);
- this.ultraGroupBox3.TabIndex = 20;
- this.ultraGroupBox3.Text = "管号队列";
- //
- // ultraGrid2
- //
- this.ultraGrid2.DataMember = "Table2";
- this.ultraGrid2.DataSource = this.dataSet1;
- appearance207.BackColor = System.Drawing.SystemColors.Window;
- appearance207.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid2.DisplayLayout.Appearance = appearance207;
- ultraGridBand4.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
- this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance208.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance208.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance208.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance208.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance208;
- appearance209.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance209;
- this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance210.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance210.BackColor2 = System.Drawing.SystemColors.Control;
- appearance210.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance210.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance210;
- this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
- appearance211.BackColor = System.Drawing.SystemColors.Window;
- appearance211.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance211;
- appearance212.BackColor = System.Drawing.SystemColors.Highlight;
- appearance212.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance212;
- this.ultraGrid2.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid2.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance213.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance213;
- appearance214.BorderColor = System.Drawing.Color.Silver;
- appearance214.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance214;
- this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid2.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance215.BackColor = System.Drawing.SystemColors.Control;
- appearance215.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance215.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance215.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance215.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance215;
- appearance216.TextHAlignAsString = "Left";
- this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance216;
- this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance217.BackColor = System.Drawing.SystemColors.Window;
- appearance217.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance217;
- this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance218.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance218;
- this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid2.Location = new System.Drawing.Point(1, 78);
- this.ultraGrid2.Name = "ultraGrid2";
- this.ultraGrid2.Size = new System.Drawing.Size(141, 253);
- this.ultraGrid2.TabIndex = 29;
- this.ultraGrid2.Text = "管号队列";
- //
- // panel9
- //
- this.panel9.Controls.Add(this.ultraGX);
- this.panel9.Controls.Add(this.ultraLabel9);
- this.panel9.Controls.Add(this.CHKISVALID);
- this.panel9.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel9.Location = new System.Drawing.Point(1, 18);
- this.panel9.Name = "panel9";
- this.panel9.Size = new System.Drawing.Size(141, 60);
- this.panel9.TabIndex = 28;
- //
- // ultraGX
- //
- this.ultraGX.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.ultraGX.Location = new System.Drawing.Point(41, 32);
- this.ultraGX.Name = "ultraGX";
- this.ultraGX.Size = new System.Drawing.Size(80, 21);
- this.ultraGX.TabIndex = 219;
- this.ultraGX.TextChanged += new System.EventHandler(this.ultraGX_TextChanged);
- //
- // ultraLabel9
- //
- appearance219.TextHAlignAsString = "Right";
- appearance219.TextVAlignAsString = "Middle";
- this.ultraLabel9.Appearance = appearance219;
- this.ultraLabel9.AutoSize = true;
- this.ultraLabel9.Location = new System.Drawing.Point(8, 35);
- this.ultraLabel9.Name = "ultraLabel9";
- this.ultraLabel9.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel9.TabIndex = 218;
- this.ultraLabel9.Text = "工序";
- //
- // CHKISVALID
- //
- this.CHKISVALID.AutoSize = true;
- this.CHKISVALID.Checked = true;
- this.CHKISVALID.CheckState = System.Windows.Forms.CheckState.Checked;
- this.CHKISVALID.Location = new System.Drawing.Point(33, 10);
- this.CHKISVALID.Margin = new System.Windows.Forms.Padding(2);
- this.CHKISVALID.Name = "CHKISVALID";
- this.CHKISVALID.Size = new System.Drawing.Size(71, 19);
- this.CHKISVALID.TabIndex = 111;
- this.CHKISVALID.Text = "是否有效";
- this.CHKISVALID.CheckedChanged += new System.EventHandler(this.CHKISALL_LOG_CheckedChanged);
- //
- // ultraGroupBox2
- //
- this.ultraGroupBox2.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraGroupBox2.Controls.Add(this.panel6);
- this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox2.Name = "ultraGroupBox2";
- this.ultraGroupBox2.Size = new System.Drawing.Size(1142, 106);
- this.ultraGroupBox2.TabIndex = 0;
- this.ultraGroupBox2.Text = "基本信息";
- //
- // panel6
- //
- this.panel6.Controls.Add(this.ultraTextEditor22);
- this.panel6.Controls.Add(this.ultraTextEditor1);
- this.panel6.Controls.Add(this.ultraTextEditor2);
- this.panel6.Controls.Add(this.ultraLabel13);
- this.panel6.Controls.Add(this.ultraTextEditor3);
- this.panel6.Controls.Add(this.ultraLabel14);
- this.panel6.Controls.Add(this.ultraLabel17);
- this.panel6.Controls.Add(this.ultraLabel7);
- this.panel6.Controls.Add(this.txtBATCH_MAX);
- this.panel6.Controls.Add(this.ultraLabel2);
- this.panel6.Controls.Add(this.txtCONSIGN_NAME);
- this.panel6.Controls.Add(this.ultraLabel10);
- this.panel6.Controls.Add(this.txtCONSIGN_TIME);
- this.panel6.Controls.Add(this.txtSTEEL_NO);
- this.panel6.Controls.Add(this.ultraLabel11);
- this.panel6.Controls.Add(this.ultraLabel3);
- this.panel6.Controls.Add(this.txtPRODUCT_STD);
- this.panel6.Controls.Add(this.ultraLabel6);
- this.panel6.Controls.Add(this.txtSTEEL_GRADE);
- this.panel6.Controls.Add(this.txtHEAT_NO);
- this.panel6.Controls.Add(this.ultraLabel5);
- this.panel6.Controls.Add(this.ultraLabel4);
- this.panel6.Controls.Add(this.txtCHECK_NO);
- this.panel6.Controls.Add(this.ultraLabel1);
- this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel6.Location = new System.Drawing.Point(1, 18);
- this.panel6.Name = "panel6";
- this.panel6.Size = new System.Drawing.Size(1140, 87);
- this.panel6.TabIndex = 24;
- //
- // ultraTextEditor22
- //
- this.ultraTextEditor22.Location = new System.Drawing.Point(648, 59);
- this.ultraTextEditor22.MaxLength = 200;
- this.ultraTextEditor22.Name = "ultraTextEditor22";
- this.ultraTextEditor22.Size = new System.Drawing.Size(100, 21);
- this.ultraTextEditor22.TabIndex = 154;
- //
- // ultraTextEditor1
- //
- this.ultraTextEditor1.Location = new System.Drawing.Point(242, 34);
- this.ultraTextEditor1.MaxLength = 200;
- this.ultraTextEditor1.Name = "ultraTextEditor1";
- this.ultraTextEditor1.Size = new System.Drawing.Size(141, 21);
- this.ultraTextEditor1.TabIndex = 153;
- //
- // ultraTextEditor2
- //
- this.ultraTextEditor2.Location = new System.Drawing.Point(242, 59);
- this.ultraTextEditor2.Name = "ultraTextEditor2";
- this.ultraTextEditor2.Size = new System.Drawing.Size(141, 21);
- this.ultraTextEditor2.TabIndex = 152;
- //
- // ultraLabel13
- //
- appearance220.TextHAlignAsString = "Right";
- appearance220.TextVAlignAsString = "Middle";
- this.ultraLabel13.Appearance = appearance220;
- this.ultraLabel13.AutoSize = true;
- this.ultraLabel13.Location = new System.Drawing.Point(184, 62);
- this.ultraLabel13.Name = "ultraLabel13";
- this.ultraLabel13.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel13.TabIndex = 151;
- this.ultraLabel13.Text = "标准类别";
- //
- // ultraTextEditor3
- //
- this.ultraTextEditor3.Location = new System.Drawing.Point(241, 9);
- this.ultraTextEditor3.MaxLength = 200;
- this.ultraTextEditor3.Name = "ultraTextEditor3";
- this.ultraTextEditor3.Size = new System.Drawing.Size(142, 21);
- this.ultraTextEditor3.TabIndex = 150;
- //
- // ultraLabel14
- //
- appearance221.TextHAlignAsString = "Right";
- appearance221.TextVAlignAsString = "Middle";
- this.ultraLabel14.Appearance = appearance221;
- this.ultraLabel14.AutoSize = true;
- this.ultraLabel14.Location = new System.Drawing.Point(209, 37);
- this.ultraLabel14.Name = "ultraLabel14";
- this.ultraLabel14.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel14.TabIndex = 149;
- this.ultraLabel14.Text = "标准";
- //
- // ultraLabel17
- //
- appearance222.TextHAlignAsString = "Right";
- appearance222.TextVAlignAsString = "Middle";
- this.ultraLabel17.Appearance = appearance222;
- this.ultraLabel17.AutoSize = true;
- this.ultraLabel17.Location = new System.Drawing.Point(208, 12);
- this.ultraLabel17.Name = "ultraLabel17";
- this.ultraLabel17.RightToLeft = System.Windows.Forms.RightToLeft.No;
- this.ultraLabel17.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel17.TabIndex = 148;
- this.ultraLabel17.Text = "品名";
- //
- // ultraLabel7
- //
- appearance223.TextHAlignAsString = "Right";
- appearance223.TextVAlignAsString = "Middle";
- this.ultraLabel7.Appearance = appearance223;
- this.ultraLabel7.AutoSize = true;
- this.ultraLabel7.Location = new System.Drawing.Point(590, 62);
- this.ultraLabel7.Name = "ultraLabel7";
- this.ultraLabel7.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel7.TabIndex = 146;
- this.ultraLabel7.Text = "长度范围";
- //
- // txtBATCH_MAX
- //
- this.txtBATCH_MAX.Location = new System.Drawing.Point(70, 59);
- this.txtBATCH_MAX.MaxLength = 100;
- this.txtBATCH_MAX.Name = "txtBATCH_MAX";
- this.txtBATCH_MAX.ReadOnly = true;
- this.txtBATCH_MAX.Size = new System.Drawing.Size(110, 21);
- this.txtBATCH_MAX.TabIndex = 144;
- //
- // ultraLabel2
- //
- appearance224.TextHAlignAsString = "Right";
- appearance224.TextVAlignAsString = "Middle";
- this.ultraLabel2.Appearance = appearance224;
- this.ultraLabel2.AutoSize = true;
- this.ultraLabel2.Location = new System.Drawing.Point(12, 62);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel2.TabIndex = 145;
- this.ultraLabel2.Text = "分批上限";
- //
- // txtCONSIGN_NAME
- //
- this.txtCONSIGN_NAME.Location = new System.Drawing.Point(648, 9);
- this.txtCONSIGN_NAME.MaxLength = 200;
- this.txtCONSIGN_NAME.Name = "txtCONSIGN_NAME";
- this.txtCONSIGN_NAME.Size = new System.Drawing.Size(100, 21);
- this.txtCONSIGN_NAME.TabIndex = 143;
- //
- // ultraLabel10
- //
- appearance225.TextHAlignAsString = "Right";
- appearance225.TextVAlignAsString = "Middle";
- this.ultraLabel10.Appearance = appearance225;
- this.ultraLabel10.AutoSize = true;
- this.ultraLabel10.Location = new System.Drawing.Point(615, 12);
- this.ultraLabel10.Name = "ultraLabel10";
- this.ultraLabel10.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel10.TabIndex = 142;
- this.ultraLabel10.Text = "扣型";
- //
- // txtCONSIGN_TIME
- //
- this.txtCONSIGN_TIME.Location = new System.Drawing.Point(648, 34);
- this.txtCONSIGN_TIME.MaxLength = 200;
- this.txtCONSIGN_TIME.Name = "txtCONSIGN_TIME";
- this.txtCONSIGN_TIME.Size = new System.Drawing.Size(100, 21);
- this.txtCONSIGN_TIME.TabIndex = 137;
- //
- // txtSTEEL_NO
- //
- this.txtSTEEL_NO.Location = new System.Drawing.Point(445, 34);
- this.txtSTEEL_NO.MaxLength = 200;
- this.txtSTEEL_NO.Name = "txtSTEEL_NO";
- this.txtSTEEL_NO.Size = new System.Drawing.Size(141, 21);
- this.txtSTEEL_NO.TabIndex = 131;
- //
- // ultraLabel11
- //
- appearance226.TextHAlignAsString = "Right";
- appearance226.TextVAlignAsString = "Middle";
- this.ultraLabel11.Appearance = appearance226;
- this.ultraLabel11.AutoSize = true;
- this.ultraLabel11.Location = new System.Drawing.Point(590, 37);
- this.ultraLabel11.Name = "ultraLabel11";
- this.ultraLabel11.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel11.TabIndex = 130;
- this.ultraLabel11.Text = "目标长度";
- //
- // ultraLabel3
- //
- appearance227.TextHAlignAsString = "Right";
- appearance227.TextVAlignAsString = "Middle";
- this.ultraLabel3.Appearance = appearance227;
- this.ultraLabel3.AutoSize = true;
- this.ultraLabel3.Location = new System.Drawing.Point(37, 37);
- this.ultraLabel3.Name = "ultraLabel3";
- this.ultraLabel3.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel3.TabIndex = 128;
- this.ultraLabel3.Text = "炉号";
- //
- // txtPRODUCT_STD
- //
- this.txtPRODUCT_STD.Location = new System.Drawing.Point(445, 59);
- this.txtPRODUCT_STD.Name = "txtPRODUCT_STD";
- this.txtPRODUCT_STD.Size = new System.Drawing.Size(141, 21);
- this.txtPRODUCT_STD.TabIndex = 127;
- //
- // ultraLabel6
- //
- appearance228.TextHAlignAsString = "Right";
- appearance228.TextVAlignAsString = "Middle";
- this.ultraLabel6.Appearance = appearance228;
- this.ultraLabel6.AutoSize = true;
- this.ultraLabel6.Location = new System.Drawing.Point(412, 62);
- this.ultraLabel6.Name = "ultraLabel6";
- this.ultraLabel6.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel6.TabIndex = 126;
- this.ultraLabel6.Text = "规格";
- //
- // txtSTEEL_GRADE
- //
- this.txtSTEEL_GRADE.Location = new System.Drawing.Point(444, 9);
- this.txtSTEEL_GRADE.MaxLength = 200;
- this.txtSTEEL_GRADE.Name = "txtSTEEL_GRADE";
- this.txtSTEEL_GRADE.Size = new System.Drawing.Size(142, 21);
- this.txtSTEEL_GRADE.TabIndex = 125;
- //
- // txtHEAT_NO
- //
- this.txtHEAT_NO.Location = new System.Drawing.Point(70, 34);
- this.txtHEAT_NO.MaxLength = 200;
- this.txtHEAT_NO.Name = "txtHEAT_NO";
- this.txtHEAT_NO.Size = new System.Drawing.Size(109, 21);
- this.txtHEAT_NO.TabIndex = 123;
- //
- // ultraLabel5
- //
- appearance229.TextHAlignAsString = "Right";
- appearance229.TextVAlignAsString = "Middle";
- this.ultraLabel5.Appearance = appearance229;
- this.ultraLabel5.AutoSize = true;
- this.ultraLabel5.Location = new System.Drawing.Point(412, 37);
- this.ultraLabel5.Name = "ultraLabel5";
- this.ultraLabel5.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel5.TabIndex = 122;
- this.ultraLabel5.Text = "钢号";
- //
- // ultraLabel4
- //
- appearance230.TextHAlignAsString = "Right";
- appearance230.TextVAlignAsString = "Middle";
- this.ultraLabel4.Appearance = appearance230;
- this.ultraLabel4.AutoSize = true;
- this.ultraLabel4.Location = new System.Drawing.Point(411, 12);
- this.ultraLabel4.Name = "ultraLabel4";
- this.ultraLabel4.RightToLeft = System.Windows.Forms.RightToLeft.No;
- this.ultraLabel4.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel4.TabIndex = 120;
- this.ultraLabel4.Text = "钢级";
- //
- // txtCHECK_NO
- //
- this.txtCHECK_NO.Location = new System.Drawing.Point(70, 9);
- this.txtCHECK_NO.MaxLength = 100;
- this.txtCHECK_NO.Name = "txtCHECK_NO";
- this.txtCHECK_NO.Size = new System.Drawing.Size(110, 21);
- this.txtCHECK_NO.TabIndex = 118;
- //
- // ultraLabel1
- //
- appearance231.TextHAlignAsString = "Right";
- appearance231.TextVAlignAsString = "Middle";
- this.ultraLabel1.Appearance = appearance231;
- this.ultraLabel1.AutoSize = true;
- this.ultraLabel1.Location = new System.Drawing.Point(12, 12);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel1.TabIndex = 119;
- this.ultraLabel1.Text = "生产批号";
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Left;
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(180, 438);
- this.ultraGroupBox1.TabIndex = 19;
- this.ultraGroupBox1.Text = "生产批号、炉号队列";
- //
- // ultraGrid1
- //
- this.ultraGrid1.DataMember = "Table1";
- this.ultraGrid1.DataSource = this.dataSet1;
- appearance232.BackColor = System.Drawing.SystemColors.Window;
- appearance232.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid1.DisplayLayout.Appearance = appearance232;
- ultraGridBand5.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
- this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance233.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance233.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance233.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance233.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance233;
- appearance234.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance234;
- this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance235.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance235.BackColor2 = System.Drawing.SystemColors.Control;
- appearance235.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance235.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance235;
- this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
- appearance236.BackColor = System.Drawing.SystemColors.Window;
- appearance236.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance236;
- appearance237.BackColor = System.Drawing.SystemColors.Highlight;
- appearance237.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance237;
- this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance238.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance238;
- appearance239.BorderColor = System.Drawing.Color.Silver;
- appearance239.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance239;
- this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid1.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance240.BackColor = System.Drawing.SystemColors.Control;
- appearance240.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance240.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance240.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance240.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance240;
- appearance241.TextHAlignAsString = "Left";
- this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance241;
- this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance90.BackColor = System.Drawing.SystemColors.Window;
- appearance90.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance90;
- this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance91.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance91;
- this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid1.Location = new System.Drawing.Point(1, 18);
- this.ultraGrid1.Name = "ultraGrid1";
- this.ultraGrid1.Size = new System.Drawing.Size(178, 419);
- this.ultraGrid1.TabIndex = 27;
- this.ultraGrid1.Text = "生产批号、炉号队列";
- this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
- //
- // ultraTabPageControl3
- //
- this.ultraTabPageControl3.Controls.Add(this.panel13);
- this.ultraTabPageControl3.Location = new System.Drawing.Point(1, 23);
- this.ultraTabPageControl3.Name = "ultraTabPageControl3";
- this.ultraTabPageControl3.Size = new System.Drawing.Size(1322, 438);
- //
- // panel13
- //
- this.panel13.Controls.Add(this.panel14);
- this.panel13.Controls.Add(this.ultraGroupBox12);
- this.panel13.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel13.Location = new System.Drawing.Point(0, 0);
- this.panel13.Name = "panel13";
- this.panel13.Size = new System.Drawing.Size(1322, 438);
- this.panel13.TabIndex = 23;
- //
- // panel14
- //
- this.panel14.Controls.Add(this.panel15);
- this.panel14.Controls.Add(this.ultraGroupBox11);
- this.panel14.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel14.Location = new System.Drawing.Point(180, 0);
- this.panel14.Name = "panel14";
- this.panel14.Size = new System.Drawing.Size(1142, 438);
- this.panel14.TabIndex = 20;
- //
- // panel15
- //
- this.panel15.Controls.Add(this.panel16);
- this.panel15.Controls.Add(this.ultraGroupBox10);
- this.panel15.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel15.Location = new System.Drawing.Point(0, 106);
- this.panel15.Name = "panel15";
- this.panel15.Size = new System.Drawing.Size(1142, 332);
- this.panel15.TabIndex = 1;
- //
- // panel16
- //
- this.panel16.Controls.Add(this.panel17);
- this.panel16.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel16.Location = new System.Drawing.Point(143, 0);
- this.panel16.Name = "panel16";
- this.panel16.Size = new System.Drawing.Size(999, 332);
- this.panel16.TabIndex = 21;
- //
- // panel17
- //
- this.panel17.Controls.Add(this.splitContainer3);
- this.panel17.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel17.Location = new System.Drawing.Point(0, 0);
- this.panel17.Name = "panel17";
- this.panel17.Size = new System.Drawing.Size(999, 332);
- this.panel17.TabIndex = 22;
- //
- // splitContainer3
- //
- this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer3.Location = new System.Drawing.Point(0, 0);
- this.splitContainer3.Name = "splitContainer3";
- //
- // splitContainer3.Panel1
- //
- this.splitContainer3.Panel1.Controls.Add(this.ultraGroupBox7);
- this.splitContainer3.Panel1.Controls.Add(this.ultraGroupBox8);
- //
- // splitContainer3.Panel2
- //
- this.splitContainer3.Panel2.Controls.Add(this.splitContainer4);
- this.splitContainer3.Size = new System.Drawing.Size(999, 332);
- this.splitContainer3.SplitterDistance = 550;
- this.splitContainer3.SplitterWidth = 1;
- this.splitContainer3.TabIndex = 0;
- //
- // ultraGroupBox7
- //
- this.ultraGroupBox7.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraGroupBox7.Controls.Add(this.ultraGrid9);
- this.ultraGroupBox7.Controls.Add(this.panel18);
- this.ultraGroupBox7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox7.Location = new System.Drawing.Point(280, 0);
- this.ultraGroupBox7.Name = "ultraGroupBox7";
- this.ultraGroupBox7.Size = new System.Drawing.Size(270, 332);
- this.ultraGroupBox7.TabIndex = 24;
- this.ultraGroupBox7.Text = "试样号";
- //
- // ultraGrid9
- //
- this.ultraGrid9.DataMember = "Table9";
- this.ultraGrid9.DataSource = this.dataSet2;
- appearance53.BackColor = System.Drawing.SystemColors.Window;
- appearance53.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid9.DisplayLayout.Appearance = appearance53;
- ultraGridBand6.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid9.DisplayLayout.BandsSerializer.Add(ultraGridBand6);
- this.ultraGrid9.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid9.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance54.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance54.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance54.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance54.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid9.DisplayLayout.GroupByBox.Appearance = appearance54;
- appearance55.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid9.DisplayLayout.GroupByBox.BandLabelAppearance = appearance55;
- this.ultraGrid9.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance56.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance56.BackColor2 = System.Drawing.SystemColors.Control;
- appearance56.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance56.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid9.DisplayLayout.GroupByBox.PromptAppearance = appearance56;
- this.ultraGrid9.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid9.DisplayLayout.MaxRowScrollRegions = 1;
- appearance57.BackColor = System.Drawing.SystemColors.Window;
- appearance57.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid9.DisplayLayout.Override.ActiveCellAppearance = appearance57;
- appearance58.BackColor = System.Drawing.SystemColors.Highlight;
- appearance58.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid9.DisplayLayout.Override.ActiveRowAppearance = appearance58;
- this.ultraGrid9.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid9.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid9.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid9.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance59.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid9.DisplayLayout.Override.CardAreaAppearance = appearance59;
- appearance60.BorderColor = System.Drawing.Color.Silver;
- appearance60.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid9.DisplayLayout.Override.CellAppearance = appearance60;
- this.ultraGrid9.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid9.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid9.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance61.BackColor = System.Drawing.SystemColors.Control;
- appearance61.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance61.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance61.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance61.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid9.DisplayLayout.Override.GroupByRowAppearance = appearance61;
- appearance62.TextHAlignAsString = "Left";
- this.ultraGrid9.DisplayLayout.Override.HeaderAppearance = appearance62;
- this.ultraGrid9.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid9.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance64.BackColor = System.Drawing.SystemColors.Window;
- appearance64.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid9.DisplayLayout.Override.RowAppearance = appearance64;
- this.ultraGrid9.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance74.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid9.DisplayLayout.Override.TemplateAddRowAppearance = appearance74;
- this.ultraGrid9.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid9.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid9.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid9.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid9.Location = new System.Drawing.Point(1, 107);
- this.ultraGrid9.Name = "ultraGrid9";
- this.ultraGrid9.Size = new System.Drawing.Size(268, 224);
- this.ultraGrid9.TabIndex = 28;
- this.ultraGrid9.Text = "试样号队列";
- //
- // dataSet2
- //
- this.dataSet2.DataSetName = "NewDataSet";
- this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable6,
- this.dataTable7,
- this.dataTable8,
- this.dataTable9,
- this.dataTable10,
- this.dataTable11});
- //
- // dataTable6
- //
- this.dataTable6.TableName = "Table6";
- //
- // dataTable7
- //
- this.dataTable7.TableName = "Table7";
- //
- // dataTable8
- //
- this.dataTable8.TableName = "Table8";
- //
- // dataTable9
- //
- this.dataTable9.TableName = "Table9";
- //
- // dataTable10
- //
- this.dataTable10.TableName = "Table10";
- //
- // dataTable11
- //
- this.dataTable11.TableName = "Table11";
- //
- // panel18
- //
- this.panel18.Controls.Add(this.btnSampleSeq);
- this.panel18.Controls.Add(this.CHKISALL_LOG);
- this.panel18.Controls.Add(this.btnDeleteSample_LOG);
- this.panel18.Controls.Add(this.ultraPOSITION_LOG);
- this.panel18.Controls.Add(this.ultraLabel21);
- this.panel18.Controls.Add(this.btnAddSample_LOG);
- this.panel18.Controls.Add(this.ultraPIPE_NO_LOG);
- this.panel18.Controls.Add(this.ultraLabel22);
- this.panel18.Controls.Add(this.ultraBATCH_NO_LOG);
- this.panel18.Controls.Add(this.ultraLabel23);
- this.panel18.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel18.Location = new System.Drawing.Point(1, 18);
- this.panel18.Name = "panel18";
- this.panel18.Size = new System.Drawing.Size(268, 89);
- this.panel18.TabIndex = 23;
- //
- // CHKISALL_LOG
- //
- this.CHKISALL_LOG.AutoSize = true;
- this.CHKISALL_LOG.Location = new System.Drawing.Point(155, 63);
- this.CHKISALL_LOG.Margin = new System.Windows.Forms.Padding(2);
- this.CHKISALL_LOG.Name = "CHKISALL_LOG";
- this.CHKISALL_LOG.Size = new System.Drawing.Size(71, 19);
- this.CHKISALL_LOG.TabIndex = 224;
- this.CHKISALL_LOG.Text = "包含全部";
- this.CHKISALL_LOG.CheckedChanged += new System.EventHandler(this.CHKISALL_LOG_CheckedChanged);
- //
- // btnDeleteSample_LOG
- //
- this.btnDeleteSample_LOG.Location = new System.Drawing.Point(153, 34);
- this.btnDeleteSample_LOG.Name = "btnDeleteSample_LOG";
- this.btnDeleteSample_LOG.Size = new System.Drawing.Size(75, 23);
- this.btnDeleteSample_LOG.TabIndex = 222;
- this.btnDeleteSample_LOG.Text = "-试样号";
- this.btnDeleteSample_LOG.UseVisualStyleBackColor = true;
- this.btnDeleteSample_LOG.Click += new System.EventHandler(this.btnDeleteSample_LOG_Click);
- //
- // ultraPOSITION_LOG
- //
- this.ultraPOSITION_LOG.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem3.DataValue = "1";
- valueListItem3.DisplayText = "A";
- valueListItem4.DataValue = "2";
- valueListItem4.DisplayText = "B";
- valueListItem6.DataValue = "3";
- valueListItem6.DisplayText = "A和B";
- this.ultraPOSITION_LOG.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem3,
- valueListItem4,
- valueListItem6});
- this.ultraPOSITION_LOG.Location = new System.Drawing.Point(70, 59);
- this.ultraPOSITION_LOG.Name = "ultraPOSITION_LOG";
- this.ultraPOSITION_LOG.Size = new System.Drawing.Size(69, 21);
- this.ultraPOSITION_LOG.TabIndex = 221;
- this.ultraPOSITION_LOG.Text = "A";
- //
- // ultraLabel21
- //
- appearance50.TextHAlignAsString = "Right";
- appearance50.TextVAlignAsString = "Middle";
- this.ultraLabel21.Appearance = appearance50;
- this.ultraLabel21.AutoSize = true;
- this.ultraLabel21.Location = new System.Drawing.Point(12, 62);
- this.ultraLabel21.Name = "ultraLabel21";
- this.ultraLabel21.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel21.TabIndex = 220;
- this.ultraLabel21.Text = "取样位置";
- //
- // btnAddSample_LOG
- //
- this.btnAddSample_LOG.Location = new System.Drawing.Point(153, 7);
- this.btnAddSample_LOG.Name = "btnAddSample_LOG";
- this.btnAddSample_LOG.Size = new System.Drawing.Size(75, 23);
- this.btnAddSample_LOG.TabIndex = 218;
- this.btnAddSample_LOG.Text = "+试样号";
- this.btnAddSample_LOG.UseVisualStyleBackColor = true;
- this.btnAddSample_LOG.Click += new System.EventHandler(this.btnAddSample_LOG_Click);
- //
- // ultraPIPE_NO_LOG
- //
- this.ultraPIPE_NO_LOG.Location = new System.Drawing.Point(70, 34);
- this.ultraPIPE_NO_LOG.Name = "ultraPIPE_NO_LOG";
- this.ultraPIPE_NO_LOG.Size = new System.Drawing.Size(69, 21);
- this.ultraPIPE_NO_LOG.TabIndex = 217;
- //
- // ultraLabel22
- //
- appearance49.TextHAlignAsString = "Right";
- appearance49.TextVAlignAsString = "Middle";
- this.ultraLabel22.Appearance = appearance49;
- this.ultraLabel22.AutoSize = true;
- this.ultraLabel22.Location = new System.Drawing.Point(37, 37);
- this.ultraLabel22.Name = "ultraLabel22";
- this.ultraLabel22.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel22.TabIndex = 216;
- this.ultraLabel22.Text = "管号";
- //
- // ultraBATCH_NO_LOG
- //
- this.ultraBATCH_NO_LOG.Location = new System.Drawing.Point(70, 9);
- this.ultraBATCH_NO_LOG.Name = "ultraBATCH_NO_LOG";
- this.ultraBATCH_NO_LOG.ReadOnly = true;
- this.ultraBATCH_NO_LOG.Size = new System.Drawing.Size(69, 21);
- this.ultraBATCH_NO_LOG.TabIndex = 215;
- //
- // ultraLabel23
- //
- appearance51.TextHAlignAsString = "Right";
- appearance51.TextVAlignAsString = "Middle";
- this.ultraLabel23.Appearance = appearance51;
- this.ultraLabel23.AutoSize = true;
- this.ultraLabel23.Location = new System.Drawing.Point(12, 12);
- this.ultraLabel23.Name = "ultraLabel23";
- this.ultraLabel23.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel23.TabIndex = 214;
- this.ultraLabel23.Text = "性能批号";
- //
- // ultraGroupBox8
- //
- this.ultraGroupBox8.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraGroupBox8.Controls.Add(this.ultraGrid8);
- this.ultraGroupBox8.Controls.Add(this.panel19);
- this.ultraGroupBox8.Dock = System.Windows.Forms.DockStyle.Left;
- this.ultraGroupBox8.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox8.Name = "ultraGroupBox8";
- this.ultraGroupBox8.Size = new System.Drawing.Size(280, 332);
- this.ultraGroupBox8.TabIndex = 23;
- this.ultraGroupBox8.Text = "性能批号";
- //
- // ultraGrid8
- //
- this.ultraGrid8.DataMember = "Table8";
- this.ultraGrid8.DataSource = this.dataSet2;
- appearance14.BackColor = System.Drawing.SystemColors.Window;
- appearance14.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid8.DisplayLayout.Appearance = appearance14;
- ultraGridBand7.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid8.DisplayLayout.BandsSerializer.Add(ultraGridBand7);
- this.ultraGrid8.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid8.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance18.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance18.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance18.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid8.DisplayLayout.GroupByBox.Appearance = appearance18;
- appearance23.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid8.DisplayLayout.GroupByBox.BandLabelAppearance = appearance23;
- this.ultraGrid8.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance24.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance24.BackColor2 = System.Drawing.SystemColors.Control;
- appearance24.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance24.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid8.DisplayLayout.GroupByBox.PromptAppearance = appearance24;
- this.ultraGrid8.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid8.DisplayLayout.MaxRowScrollRegions = 1;
- appearance27.BackColor = System.Drawing.SystemColors.Window;
- appearance27.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid8.DisplayLayout.Override.ActiveCellAppearance = appearance27;
- appearance28.BackColor = System.Drawing.SystemColors.Highlight;
- appearance28.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid8.DisplayLayout.Override.ActiveRowAppearance = appearance28;
- this.ultraGrid8.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid8.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid8.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid8.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance29.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid8.DisplayLayout.Override.CardAreaAppearance = appearance29;
- appearance35.BorderColor = System.Drawing.Color.Silver;
- appearance35.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid8.DisplayLayout.Override.CellAppearance = appearance35;
- this.ultraGrid8.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid8.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid8.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance36.BackColor = System.Drawing.SystemColors.Control;
- appearance36.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance36.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance36.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance36.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid8.DisplayLayout.Override.GroupByRowAppearance = appearance36;
- appearance37.TextHAlignAsString = "Left";
- this.ultraGrid8.DisplayLayout.Override.HeaderAppearance = appearance37;
- this.ultraGrid8.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid8.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance44.BackColor = System.Drawing.SystemColors.Window;
- appearance44.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid8.DisplayLayout.Override.RowAppearance = appearance44;
- this.ultraGrid8.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance46.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid8.DisplayLayout.Override.TemplateAddRowAppearance = appearance46;
- this.ultraGrid8.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid8.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid8.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid8.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid8.Location = new System.Drawing.Point(1, 107);
- this.ultraGrid8.Name = "ultraGrid8";
- this.ultraGrid8.Size = new System.Drawing.Size(278, 224);
- this.ultraGrid8.TabIndex = 28;
- this.ultraGrid8.Text = "性能批号队列";
- this.ultraGrid8.AfterRowActivate += new System.EventHandler(this.ultraGrid8_AfterRowActivate);
- //
- // panel19
- //
- this.panel19.Controls.Add(this.txtBATCH_MIN_LOG);
- this.panel19.Controls.Add(this.ultraLabel46);
- this.panel19.Controls.Add(this.txtPIPE_NUM_LOG);
- this.panel19.Controls.Add(this.ultraLabel24);
- this.panel19.Controls.Add(this.btnCancel_LOG);
- this.panel19.Controls.Add(this.btnAuto_LOG);
- this.panel19.Controls.Add(this.btnConfirm_LOG);
- this.panel19.Controls.Add(this.ultraEND_PIPE_NO_LOG);
- this.panel19.Controls.Add(this.ultraLabel25);
- this.panel19.Controls.Add(this.ultraSTART_PIPE_NO_LOG);
- this.panel19.Controls.Add(this.ultraLabel26);
- this.panel19.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel19.Location = new System.Drawing.Point(1, 18);
- this.panel19.Name = "panel19";
- this.panel19.Size = new System.Drawing.Size(278, 89);
- this.panel19.TabIndex = 23;
- //
- // txtBATCH_MIN_LOG
- //
- this.txtBATCH_MIN_LOG.Location = new System.Drawing.Point(202, 9);
- this.txtBATCH_MIN_LOG.MaxLength = 100;
- this.txtBATCH_MIN_LOG.Name = "txtBATCH_MIN_LOG";
- this.txtBATCH_MIN_LOG.ReadOnly = true;
- this.txtBATCH_MIN_LOG.Size = new System.Drawing.Size(70, 21);
- this.txtBATCH_MIN_LOG.TabIndex = 223;
- //
- // ultraLabel46
- //
- appearance168.TextHAlignAsString = "Right";
- appearance168.TextVAlignAsString = "Middle";
- this.ultraLabel46.Appearance = appearance168;
- this.ultraLabel46.AutoSize = true;
- this.ultraLabel46.Location = new System.Drawing.Point(144, 12);
- this.ultraLabel46.Name = "ultraLabel46";
- this.ultraLabel46.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel46.TabIndex = 224;
- this.ultraLabel46.Text = "批数参考";
- //
- // txtPIPE_NUM_LOG
- //
- this.txtPIPE_NUM_LOG.Location = new System.Drawing.Point(70, 9);
- this.txtPIPE_NUM_LOG.MaxLength = 100;
- this.txtPIPE_NUM_LOG.Name = "txtPIPE_NUM_LOG";
- this.txtPIPE_NUM_LOG.ReadOnly = true;
- this.txtPIPE_NUM_LOG.Size = new System.Drawing.Size(70, 21);
- this.txtPIPE_NUM_LOG.TabIndex = 221;
- //
- // ultraLabel24
- //
- appearance167.TextHAlignAsString = "Right";
- appearance167.TextVAlignAsString = "Middle";
- this.ultraLabel24.Appearance = appearance167;
- this.ultraLabel24.AutoSize = true;
- this.ultraLabel24.Location = new System.Drawing.Point(12, 12);
- this.ultraLabel24.Name = "ultraLabel24";
- this.ultraLabel24.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel24.TabIndex = 222;
- this.ultraLabel24.Text = "有效管数";
- //
- // btnCancel_LOG
- //
- this.btnCancel_LOG.Location = new System.Drawing.Point(191, 61);
- this.btnCancel_LOG.Name = "btnCancel_LOG";
- this.btnCancel_LOG.Size = new System.Drawing.Size(75, 23);
- this.btnCancel_LOG.TabIndex = 220;
- this.btnCancel_LOG.Text = "取消此批";
- this.btnCancel_LOG.UseVisualStyleBackColor = true;
- this.btnCancel_LOG.Click += new System.EventHandler(this.btnCancel_LOG_Click);
- //
- // btnAuto_LOG
- //
- this.btnAuto_LOG.Location = new System.Drawing.Point(108, 61);
- this.btnAuto_LOG.Name = "btnAuto_LOG";
- this.btnAuto_LOG.Size = new System.Drawing.Size(75, 23);
- this.btnAuto_LOG.TabIndex = 219;
- this.btnAuto_LOG.Text = "自动组批";
- this.btnAuto_LOG.UseVisualStyleBackColor = true;
- this.btnAuto_LOG.Click += new System.EventHandler(this.btnAuto_LOG_Click);
- //
- // btnConfirm_LOG
- //
- this.btnConfirm_LOG.Location = new System.Drawing.Point(25, 61);
- this.btnConfirm_LOG.Name = "btnConfirm_LOG";
- this.btnConfirm_LOG.Size = new System.Drawing.Size(75, 23);
- this.btnConfirm_LOG.TabIndex = 218;
- this.btnConfirm_LOG.Text = "人工组批";
- this.btnConfirm_LOG.UseVisualStyleBackColor = true;
- this.btnConfirm_LOG.Click += new System.EventHandler(this.btnConfirm_LOG_Click);
- //
- // ultraEND_PIPE_NO_LOG
- //
- this.ultraEND_PIPE_NO_LOG.Location = new System.Drawing.Point(202, 34);
- this.ultraEND_PIPE_NO_LOG.Name = "ultraEND_PIPE_NO_LOG";
- this.ultraEND_PIPE_NO_LOG.Size = new System.Drawing.Size(70, 21);
- this.ultraEND_PIPE_NO_LOG.TabIndex = 217;
- //
- // ultraLabel25
- //
- appearance47.TextHAlignAsString = "Right";
- appearance47.TextVAlignAsString = "Middle";
- this.ultraLabel25.Appearance = appearance47;
- this.ultraLabel25.AutoSize = true;
- this.ultraLabel25.Location = new System.Drawing.Point(144, 37);
- this.ultraLabel25.Name = "ultraLabel25";
- this.ultraLabel25.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel25.TabIndex = 216;
- this.ultraLabel25.Text = "结束管号";
- //
- // ultraSTART_PIPE_NO_LOG
- //
- this.ultraSTART_PIPE_NO_LOG.Location = new System.Drawing.Point(70, 34);
- this.ultraSTART_PIPE_NO_LOG.Name = "ultraSTART_PIPE_NO_LOG";
- this.ultraSTART_PIPE_NO_LOG.ReadOnly = true;
- this.ultraSTART_PIPE_NO_LOG.Size = new System.Drawing.Size(70, 21);
- this.ultraSTART_PIPE_NO_LOG.TabIndex = 215;
- this.ultraSTART_PIPE_NO_LOG.TextChanged += new System.EventHandler(this.ultraSTART_PIPE_NO_LOG_TextChanged);
- //
- // ultraLabel26
- //
- appearance48.TextHAlignAsString = "Right";
- appearance48.TextVAlignAsString = "Middle";
- this.ultraLabel26.Appearance = appearance48;
- this.ultraLabel26.AutoSize = true;
- this.ultraLabel26.Location = new System.Drawing.Point(12, 37);
- this.ultraLabel26.Name = "ultraLabel26";
- this.ultraLabel26.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel26.TabIndex = 214;
- this.ultraLabel26.Text = "起始管号";
- //
- // splitContainer4
- //
- this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer4.Location = new System.Drawing.Point(0, 0);
- this.splitContainer4.Name = "splitContainer4";
- this.splitContainer4.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer4.Panel1
- //
- this.splitContainer4.Panel1.Controls.Add(this.ultraGroupBox9);
- this.splitContainer4.Panel1Collapsed = true;
- //
- // splitContainer4.Panel2
- //
- this.splitContainer4.Panel2.Controls.Add(this.ultraGroupBox13);
- this.splitContainer4.Size = new System.Drawing.Size(448, 332);
- this.splitContainer4.SplitterDistance = 125;
- this.splitContainer4.SplitterWidth = 1;
- this.splitContainer4.TabIndex = 0;
- //
- // ultraGroupBox9
- //
- this.ultraGroupBox9.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraGroupBox9.Controls.Add(this.ultraGrid10);
- this.ultraGroupBox9.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox9.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox9.Name = "ultraGroupBox9";
- this.ultraGroupBox9.Size = new System.Drawing.Size(150, 125);
- this.ultraGroupBox9.TabIndex = 26;
- this.ultraGroupBox9.Text = "标准取样要求队列";
- //
- // ultraGrid10
- //
- this.ultraGrid10.DataMember = "Table10";
- this.ultraGrid10.DataSource = this.dataSet2;
- appearance183.BackColor = System.Drawing.SystemColors.Window;
- appearance183.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid10.DisplayLayout.Appearance = appearance183;
- ultraGridBand8.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid10.DisplayLayout.BandsSerializer.Add(ultraGridBand8);
- this.ultraGrid10.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid10.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance184.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance184.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance184.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance184.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid10.DisplayLayout.GroupByBox.Appearance = appearance184;
- appearance185.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid10.DisplayLayout.GroupByBox.BandLabelAppearance = appearance185;
- this.ultraGrid10.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance186.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance186.BackColor2 = System.Drawing.SystemColors.Control;
- appearance186.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance186.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid10.DisplayLayout.GroupByBox.PromptAppearance = appearance186;
- this.ultraGrid10.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid10.DisplayLayout.MaxRowScrollRegions = 1;
- appearance187.BackColor = System.Drawing.SystemColors.Window;
- appearance187.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid10.DisplayLayout.Override.ActiveCellAppearance = appearance187;
- appearance188.BackColor = System.Drawing.SystemColors.Highlight;
- appearance188.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid10.DisplayLayout.Override.ActiveRowAppearance = appearance188;
- this.ultraGrid10.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid10.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid10.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid10.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance189.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid10.DisplayLayout.Override.CardAreaAppearance = appearance189;
- appearance190.BorderColor = System.Drawing.Color.Silver;
- appearance190.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid10.DisplayLayout.Override.CellAppearance = appearance190;
- this.ultraGrid10.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid10.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid10.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance191.BackColor = System.Drawing.SystemColors.Control;
- appearance191.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance191.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance191.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance191.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid10.DisplayLayout.Override.GroupByRowAppearance = appearance191;
- appearance192.TextHAlignAsString = "Left";
- this.ultraGrid10.DisplayLayout.Override.HeaderAppearance = appearance192;
- this.ultraGrid10.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid10.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance193.BackColor = System.Drawing.SystemColors.Window;
- appearance193.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid10.DisplayLayout.Override.RowAppearance = appearance193;
- this.ultraGrid10.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance194.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid10.DisplayLayout.Override.TemplateAddRowAppearance = appearance194;
- this.ultraGrid10.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid10.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid10.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid10.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid10.Location = new System.Drawing.Point(1, 18);
- this.ultraGrid10.Name = "ultraGrid10";
- this.ultraGrid10.Size = new System.Drawing.Size(148, 106);
- this.ultraGrid10.TabIndex = 27;
- this.ultraGrid10.Text = "取样要求队列";
- //
- // ultraGroupBox13
- //
- this.ultraGroupBox13.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraGroupBox13.Controls.Add(this.CHKISAllSampleReq_LOG);
- this.ultraGroupBox13.Controls.Add(this.btnFindSampleReq_LOG);
- this.ultraGroupBox13.Controls.Add(this.ultraGrid11);
- this.ultraGroupBox13.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox13.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox13.Name = "ultraGroupBox13";
- this.ultraGroupBox13.Size = new System.Drawing.Size(448, 332);
- this.ultraGroupBox13.TabIndex = 27;
- this.ultraGroupBox13.Text = "参考取样要求队列";
- //
- // CHKISAllSampleReq_LOG
- //
- this.CHKISAllSampleReq_LOG.AutoSize = true;
- this.CHKISAllSampleReq_LOG.Location = new System.Drawing.Point(255, 0);
- this.CHKISAllSampleReq_LOG.Margin = new System.Windows.Forms.Padding(2);
- this.CHKISAllSampleReq_LOG.Name = "CHKISAllSampleReq_LOG";
- this.CHKISAllSampleReq_LOG.Size = new System.Drawing.Size(145, 19);
- this.CHKISAllSampleReq_LOG.TabIndex = 225;
- this.CHKISAllSampleReq_LOG.Text = "包含全部参考取样队列";
- this.CHKISAllSampleReq_LOG.CheckedChanged += new System.EventHandler(this.CHKISAllSampleReq_LOG_CheckedChanged);
- //
- // btnFindSampleReq_LOG
- //
- this.btnFindSampleReq_LOG.Location = new System.Drawing.Point(128, -3);
- this.btnFindSampleReq_LOG.Name = "btnFindSampleReq_LOG";
- this.btnFindSampleReq_LOG.Size = new System.Drawing.Size(112, 23);
- this.btnFindSampleReq_LOG.TabIndex = 219;
- this.btnFindSampleReq_LOG.Text = "查看标准取样要求";
- this.btnFindSampleReq_LOG.UseVisualStyleBackColor = true;
- this.btnFindSampleReq_LOG.Click += new System.EventHandler(this.btnFindSampleReq_LOG_Click);
- //
- // ultraGrid11
- //
- this.ultraGrid11.DataMember = "Table11";
- this.ultraGrid11.DataSource = this.dataSet2;
- appearance195.BackColor = System.Drawing.SystemColors.Window;
- appearance195.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid11.DisplayLayout.Appearance = appearance195;
- ultraGridBand9.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid11.DisplayLayout.BandsSerializer.Add(ultraGridBand9);
- this.ultraGrid11.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid11.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance196.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance196.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance196.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance196.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid11.DisplayLayout.GroupByBox.Appearance = appearance196;
- appearance197.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid11.DisplayLayout.GroupByBox.BandLabelAppearance = appearance197;
- this.ultraGrid11.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance198.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance198.BackColor2 = System.Drawing.SystemColors.Control;
- appearance198.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance198.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid11.DisplayLayout.GroupByBox.PromptAppearance = appearance198;
- this.ultraGrid11.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid11.DisplayLayout.MaxRowScrollRegions = 1;
- appearance199.BackColor = System.Drawing.SystemColors.Window;
- appearance199.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid11.DisplayLayout.Override.ActiveCellAppearance = appearance199;
- appearance200.BackColor = System.Drawing.SystemColors.Highlight;
- appearance200.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid11.DisplayLayout.Override.ActiveRowAppearance = appearance200;
- this.ultraGrid11.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid11.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid11.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid11.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance201.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid11.DisplayLayout.Override.CardAreaAppearance = appearance201;
- appearance202.BorderColor = System.Drawing.Color.Silver;
- appearance202.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid11.DisplayLayout.Override.CellAppearance = appearance202;
- this.ultraGrid11.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid11.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid11.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance203.BackColor = System.Drawing.SystemColors.Control;
- appearance203.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance203.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance203.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance203.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid11.DisplayLayout.Override.GroupByRowAppearance = appearance203;
- appearance204.TextHAlignAsString = "Left";
- this.ultraGrid11.DisplayLayout.Override.HeaderAppearance = appearance204;
- this.ultraGrid11.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid11.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance205.BackColor = System.Drawing.SystemColors.Window;
- appearance205.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid11.DisplayLayout.Override.RowAppearance = appearance205;
- this.ultraGrid11.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance206.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid11.DisplayLayout.Override.TemplateAddRowAppearance = appearance206;
- this.ultraGrid11.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid11.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid11.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid11.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid11.Location = new System.Drawing.Point(1, 18);
- this.ultraGrid11.Name = "ultraGrid11";
- this.ultraGrid11.Size = new System.Drawing.Size(446, 313);
- this.ultraGrid11.TabIndex = 27;
- this.ultraGrid11.Text = "取样要求队列";
- //
- // ultraGroupBox10
- //
- this.ultraGroupBox10.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraGroupBox10.Controls.Add(this.ultraGrid7);
- this.ultraGroupBox10.Controls.Add(this.panel20);
- this.ultraGroupBox10.Dock = System.Windows.Forms.DockStyle.Left;
- this.ultraGroupBox10.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox10.Name = "ultraGroupBox10";
- this.ultraGroupBox10.Size = new System.Drawing.Size(143, 332);
- this.ultraGroupBox10.TabIndex = 20;
- this.ultraGroupBox10.Text = "管号队列";
- //
- // ultraGrid7
- //
- this.ultraGrid7.DataMember = "Table7";
- this.ultraGrid7.DataSource = this.dataSet2;
- appearance78.BackColor = System.Drawing.SystemColors.Window;
- appearance78.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid7.DisplayLayout.Appearance = appearance78;
- ultraGridBand10.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid7.DisplayLayout.BandsSerializer.Add(ultraGridBand10);
- this.ultraGrid7.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid7.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance79.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance79.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance79.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance79.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid7.DisplayLayout.GroupByBox.Appearance = appearance79;
- appearance80.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid7.DisplayLayout.GroupByBox.BandLabelAppearance = appearance80;
- this.ultraGrid7.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance81.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance81.BackColor2 = System.Drawing.SystemColors.Control;
- appearance81.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance81.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid7.DisplayLayout.GroupByBox.PromptAppearance = appearance81;
- this.ultraGrid7.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid7.DisplayLayout.MaxRowScrollRegions = 1;
- appearance82.BackColor = System.Drawing.SystemColors.Window;
- appearance82.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid7.DisplayLayout.Override.ActiveCellAppearance = appearance82;
- appearance83.BackColor = System.Drawing.SystemColors.Highlight;
- appearance83.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid7.DisplayLayout.Override.ActiveRowAppearance = appearance83;
- this.ultraGrid7.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid7.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid7.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid7.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance84.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid7.DisplayLayout.Override.CardAreaAppearance = appearance84;
- appearance85.BorderColor = System.Drawing.Color.Silver;
- appearance85.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid7.DisplayLayout.Override.CellAppearance = appearance85;
- this.ultraGrid7.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid7.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid7.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance86.BackColor = System.Drawing.SystemColors.Control;
- appearance86.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance86.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance86.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance86.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid7.DisplayLayout.Override.GroupByRowAppearance = appearance86;
- appearance87.TextHAlignAsString = "Left";
- this.ultraGrid7.DisplayLayout.Override.HeaderAppearance = appearance87;
- this.ultraGrid7.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid7.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance88.BackColor = System.Drawing.SystemColors.Window;
- appearance88.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid7.DisplayLayout.Override.RowAppearance = appearance88;
- this.ultraGrid7.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance89.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid7.DisplayLayout.Override.TemplateAddRowAppearance = appearance89;
- this.ultraGrid7.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid7.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid7.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid7.Location = new System.Drawing.Point(1, 78);
- this.ultraGrid7.Name = "ultraGrid7";
- this.ultraGrid7.Size = new System.Drawing.Size(141, 253);
- this.ultraGrid7.TabIndex = 29;
- this.ultraGrid7.Text = "管号队列";
- //
- // panel20
- //
- this.panel20.Controls.Add(this.ultraGX_LOG);
- this.panel20.Controls.Add(this.ultraLabel27);
- this.panel20.Controls.Add(this.CHKISVALID_LOG);
- this.panel20.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel20.Location = new System.Drawing.Point(1, 18);
- this.panel20.Name = "panel20";
- this.panel20.Size = new System.Drawing.Size(141, 60);
- this.panel20.TabIndex = 28;
- //
- // ultraGX_LOG
- //
- this.ultraGX_LOG.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.ultraGX_LOG.Location = new System.Drawing.Point(41, 32);
- this.ultraGX_LOG.Name = "ultraGX_LOG";
- this.ultraGX_LOG.ReadOnly = true;
- this.ultraGX_LOG.Size = new System.Drawing.Size(80, 21);
- this.ultraGX_LOG.TabIndex = 219;
- this.ultraGX_LOG.TextChanged += new System.EventHandler(this.ultraGX_LOG_TextChanged);
- //
- // ultraLabel27
- //
- appearance2.TextHAlignAsString = "Right";
- appearance2.TextVAlignAsString = "Middle";
- this.ultraLabel27.Appearance = appearance2;
- this.ultraLabel27.AutoSize = true;
- this.ultraLabel27.Location = new System.Drawing.Point(8, 35);
- this.ultraLabel27.Name = "ultraLabel27";
- this.ultraLabel27.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel27.TabIndex = 218;
- this.ultraLabel27.Text = "工序";
- //
- // CHKISVALID_LOG
- //
- this.CHKISVALID_LOG.AutoSize = true;
- this.CHKISVALID_LOG.Checked = true;
- this.CHKISVALID_LOG.CheckState = System.Windows.Forms.CheckState.Checked;
- this.CHKISVALID_LOG.Location = new System.Drawing.Point(33, 10);
- this.CHKISVALID_LOG.Margin = new System.Windows.Forms.Padding(2);
- this.CHKISVALID_LOG.Name = "CHKISVALID_LOG";
- this.CHKISVALID_LOG.Size = new System.Drawing.Size(71, 19);
- this.CHKISVALID_LOG.TabIndex = 111;
- this.CHKISVALID_LOG.Text = "是否有效";
- this.CHKISVALID_LOG.CheckedChanged += new System.EventHandler(this.CHKISVALID_LOG_CheckedChanged);
- //
- // ultraGroupBox11
- //
- this.ultraGroupBox11.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraGroupBox11.Controls.Add(this.panel21);
- this.ultraGroupBox11.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox11.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox11.Name = "ultraGroupBox11";
- this.ultraGroupBox11.Size = new System.Drawing.Size(1142, 106);
- this.ultraGroupBox11.TabIndex = 0;
- this.ultraGroupBox11.Text = "基本信息";
- //
- // panel21
- //
- this.panel21.Controls.Add(this.ultraTextEditor4);
- this.panel21.Controls.Add(this.txtSAMPLE_CLASS);
- this.panel21.Controls.Add(this.ultraLabel43);
- this.panel21.Controls.Add(this.txtSAMPLE_NAME);
- this.panel21.Controls.Add(this.ultraLabel44);
- this.panel21.Controls.Add(this.txtSAMPLE_TIME);
- this.panel21.Controls.Add(this.ultraLabel45);
- this.panel21.Controls.Add(this.txtBATCH_CLASS);
- this.panel21.Controls.Add(this.ultraLabel42);
- this.panel21.Controls.Add(this.txtBATCH_NAME);
- this.panel21.Controls.Add(this.ultraLabel41);
- this.panel21.Controls.Add(this.txtBATCH_TIME);
- this.panel21.Controls.Add(this.ultraLabel40);
- this.panel21.Controls.Add(this.ultraTextEditor5);
- this.panel21.Controls.Add(this.ultraTextEditor6);
- this.panel21.Controls.Add(this.ultraLabel28);
- this.panel21.Controls.Add(this.ultraTextEditor7);
- this.panel21.Controls.Add(this.ultraLabel29);
- this.panel21.Controls.Add(this.ultraLabel30);
- this.panel21.Controls.Add(this.ultraLabel31);
- this.panel21.Controls.Add(this.txtBATCH_MAX_LOG);
- this.panel21.Controls.Add(this.ultraLabel32);
- this.panel21.Controls.Add(this.ultraTextEditor9);
- this.panel21.Controls.Add(this.ultraLabel33);
- this.panel21.Controls.Add(this.ultraTextEditor10);
- this.panel21.Controls.Add(this.ultraTextEditor11);
- this.panel21.Controls.Add(this.ultraLabel34);
- this.panel21.Controls.Add(this.ultraLabel35);
- this.panel21.Controls.Add(this.ultraTextEditor12);
- this.panel21.Controls.Add(this.ultraLabel36);
- this.panel21.Controls.Add(this.ultraTextEditor13);
- this.panel21.Controls.Add(this.ultraTextEditor14);
- this.panel21.Controls.Add(this.ultraLabel37);
- this.panel21.Controls.Add(this.ultraLabel38);
- this.panel21.Controls.Add(this.ultraTextEditor15);
- this.panel21.Controls.Add(this.ultraLabel39);
- this.panel21.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel21.Location = new System.Drawing.Point(1, 18);
- this.panel21.Name = "panel21";
- this.panel21.Size = new System.Drawing.Size(1140, 87);
- this.panel21.TabIndex = 24;
- //
- // ultraTextEditor4
- //
- this.ultraTextEditor4.Location = new System.Drawing.Point(648, 59);
- this.ultraTextEditor4.MaxLength = 200;
- this.ultraTextEditor4.Name = "ultraTextEditor4";
- this.ultraTextEditor4.Size = new System.Drawing.Size(100, 21);
- this.ultraTextEditor4.TabIndex = 166;
- //
- // txtSAMPLE_CLASS
- //
- this.txtSAMPLE_CLASS.Location = new System.Drawing.Point(972, 59);
- this.txtSAMPLE_CLASS.MaxLength = 200;
- this.txtSAMPLE_CLASS.Name = "txtSAMPLE_CLASS";
- this.txtSAMPLE_CLASS.Size = new System.Drawing.Size(100, 21);
- this.txtSAMPLE_CLASS.TabIndex = 165;
- //
- // ultraLabel43
- //
- appearance162.TextHAlignAsString = "Right";
- appearance162.TextVAlignAsString = "Middle";
- this.ultraLabel43.Appearance = appearance162;
- this.ultraLabel43.AutoSize = true;
- this.ultraLabel43.Location = new System.Drawing.Point(914, 62);
- this.ultraLabel43.Name = "ultraLabel43";
- this.ultraLabel43.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel43.TabIndex = 164;
- this.ultraLabel43.Text = "取样班组";
- //
- // txtSAMPLE_NAME
- //
- this.txtSAMPLE_NAME.Location = new System.Drawing.Point(972, 9);
- this.txtSAMPLE_NAME.MaxLength = 200;
- this.txtSAMPLE_NAME.Name = "txtSAMPLE_NAME";
- this.txtSAMPLE_NAME.Size = new System.Drawing.Size(100, 21);
- this.txtSAMPLE_NAME.TabIndex = 163;
- //
- // ultraLabel44
- //
- appearance107.TextHAlignAsString = "Right";
- appearance107.TextVAlignAsString = "Middle";
- this.ultraLabel44.Appearance = appearance107;
- this.ultraLabel44.AutoSize = true;
- this.ultraLabel44.Location = new System.Drawing.Point(926, 12);
- this.ultraLabel44.Name = "ultraLabel44";
- this.ultraLabel44.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel44.TabIndex = 162;
- this.ultraLabel44.Text = "取样人";
- //
- // txtSAMPLE_TIME
- //
- this.txtSAMPLE_TIME.Location = new System.Drawing.Point(972, 34);
- this.txtSAMPLE_TIME.MaxLength = 200;
- this.txtSAMPLE_TIME.Name = "txtSAMPLE_TIME";
- this.txtSAMPLE_TIME.Size = new System.Drawing.Size(100, 21);
- this.txtSAMPLE_TIME.TabIndex = 161;
- //
- // ultraLabel45
- //
- appearance163.TextHAlignAsString = "Right";
- appearance163.TextVAlignAsString = "Middle";
- this.ultraLabel45.Appearance = appearance163;
- this.ultraLabel45.AutoSize = true;
- this.ultraLabel45.Location = new System.Drawing.Point(914, 37);
- this.ultraLabel45.Name = "ultraLabel45";
- this.ultraLabel45.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel45.TabIndex = 160;
- this.ultraLabel45.Text = "取样时间";
- //
- // txtBATCH_CLASS
- //
- this.txtBATCH_CLASS.Location = new System.Drawing.Point(810, 59);
- this.txtBATCH_CLASS.MaxLength = 200;
- this.txtBATCH_CLASS.Name = "txtBATCH_CLASS";
- this.txtBATCH_CLASS.Size = new System.Drawing.Size(100, 21);
- this.txtBATCH_CLASS.TabIndex = 159;
- //
- // ultraLabel42
- //
- appearance164.TextHAlignAsString = "Right";
- appearance164.TextVAlignAsString = "Middle";
- this.ultraLabel42.Appearance = appearance164;
- this.ultraLabel42.AutoSize = true;
- this.ultraLabel42.Location = new System.Drawing.Point(752, 62);
- this.ultraLabel42.Name = "ultraLabel42";
- this.ultraLabel42.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel42.TabIndex = 158;
- this.ultraLabel42.Text = "组批班组";
- //
- // txtBATCH_NAME
- //
- this.txtBATCH_NAME.Location = new System.Drawing.Point(810, 9);
- this.txtBATCH_NAME.MaxLength = 200;
- this.txtBATCH_NAME.Name = "txtBATCH_NAME";
- this.txtBATCH_NAME.Size = new System.Drawing.Size(100, 21);
- this.txtBATCH_NAME.TabIndex = 157;
- //
- // ultraLabel41
- //
- appearance165.TextHAlignAsString = "Right";
- appearance165.TextVAlignAsString = "Middle";
- this.ultraLabel41.Appearance = appearance165;
- this.ultraLabel41.AutoSize = true;
- this.ultraLabel41.Location = new System.Drawing.Point(764, 12);
- this.ultraLabel41.Name = "ultraLabel41";
- this.ultraLabel41.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel41.TabIndex = 156;
- this.ultraLabel41.Text = "组批人";
- //
- // txtBATCH_TIME
- //
- this.txtBATCH_TIME.Location = new System.Drawing.Point(810, 34);
- this.txtBATCH_TIME.MaxLength = 200;
- this.txtBATCH_TIME.Name = "txtBATCH_TIME";
- this.txtBATCH_TIME.Size = new System.Drawing.Size(100, 21);
- this.txtBATCH_TIME.TabIndex = 155;
- //
- // ultraLabel40
- //
- appearance166.TextHAlignAsString = "Right";
- appearance166.TextVAlignAsString = "Middle";
- this.ultraLabel40.Appearance = appearance166;
- this.ultraLabel40.AutoSize = true;
- this.ultraLabel40.Location = new System.Drawing.Point(752, 37);
- this.ultraLabel40.Name = "ultraLabel40";
- this.ultraLabel40.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel40.TabIndex = 154;
- this.ultraLabel40.Text = "组批时间";
- //
- // ultraTextEditor5
- //
- this.ultraTextEditor5.Location = new System.Drawing.Point(242, 34);
- this.ultraTextEditor5.MaxLength = 200;
- this.ultraTextEditor5.Name = "ultraTextEditor5";
- this.ultraTextEditor5.Size = new System.Drawing.Size(141, 21);
- this.ultraTextEditor5.TabIndex = 153;
- //
- // ultraTextEditor6
- //
- this.ultraTextEditor6.Location = new System.Drawing.Point(242, 59);
- this.ultraTextEditor6.Name = "ultraTextEditor6";
- this.ultraTextEditor6.Size = new System.Drawing.Size(141, 21);
- this.ultraTextEditor6.TabIndex = 152;
- //
- // ultraLabel28
- //
- appearance11.TextHAlignAsString = "Right";
- appearance11.TextVAlignAsString = "Middle";
- this.ultraLabel28.Appearance = appearance11;
- this.ultraLabel28.AutoSize = true;
- this.ultraLabel28.Location = new System.Drawing.Point(184, 62);
- this.ultraLabel28.Name = "ultraLabel28";
- this.ultraLabel28.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel28.TabIndex = 151;
- this.ultraLabel28.Text = "标准类别";
- //
- // ultraTextEditor7
- //
- this.ultraTextEditor7.Location = new System.Drawing.Point(241, 9);
- this.ultraTextEditor7.MaxLength = 200;
- this.ultraTextEditor7.Name = "ultraTextEditor7";
- this.ultraTextEditor7.Size = new System.Drawing.Size(142, 21);
- this.ultraTextEditor7.TabIndex = 150;
- //
- // ultraLabel29
- //
- appearance25.TextHAlignAsString = "Right";
- appearance25.TextVAlignAsString = "Middle";
- this.ultraLabel29.Appearance = appearance25;
- this.ultraLabel29.AutoSize = true;
- this.ultraLabel29.Location = new System.Drawing.Point(209, 37);
- this.ultraLabel29.Name = "ultraLabel29";
- this.ultraLabel29.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel29.TabIndex = 149;
- this.ultraLabel29.Text = "标准";
- //
- // ultraLabel30
- //
- appearance26.TextHAlignAsString = "Right";
- appearance26.TextVAlignAsString = "Middle";
- this.ultraLabel30.Appearance = appearance26;
- this.ultraLabel30.AutoSize = true;
- this.ultraLabel30.Location = new System.Drawing.Point(208, 12);
- this.ultraLabel30.Name = "ultraLabel30";
- this.ultraLabel30.RightToLeft = System.Windows.Forms.RightToLeft.No;
- this.ultraLabel30.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel30.TabIndex = 148;
- this.ultraLabel30.Text = "品名";
- //
- // ultraLabel31
- //
- appearance76.TextHAlignAsString = "Right";
- appearance76.TextVAlignAsString = "Middle";
- this.ultraLabel31.Appearance = appearance76;
- this.ultraLabel31.AutoSize = true;
- this.ultraLabel31.Location = new System.Drawing.Point(590, 62);
- this.ultraLabel31.Name = "ultraLabel31";
- this.ultraLabel31.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel31.TabIndex = 146;
- this.ultraLabel31.Text = "长度范围";
- //
- // txtBATCH_MAX_LOG
- //
- this.txtBATCH_MAX_LOG.Location = new System.Drawing.Point(70, 59);
- this.txtBATCH_MAX_LOG.MaxLength = 100;
- this.txtBATCH_MAX_LOG.Name = "txtBATCH_MAX_LOG";
- this.txtBATCH_MAX_LOG.ReadOnly = true;
- this.txtBATCH_MAX_LOG.Size = new System.Drawing.Size(110, 21);
- this.txtBATCH_MAX_LOG.TabIndex = 144;
- //
- // ultraLabel32
- //
- appearance96.TextHAlignAsString = "Right";
- appearance96.TextVAlignAsString = "Middle";
- this.ultraLabel32.Appearance = appearance96;
- this.ultraLabel32.AutoSize = true;
- this.ultraLabel32.Location = new System.Drawing.Point(12, 62);
- this.ultraLabel32.Name = "ultraLabel32";
- this.ultraLabel32.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel32.TabIndex = 145;
- this.ultraLabel32.Text = "分批上限";
- //
- // ultraTextEditor9
- //
- this.ultraTextEditor9.Location = new System.Drawing.Point(648, 9);
- this.ultraTextEditor9.MaxLength = 200;
- this.ultraTextEditor9.Name = "ultraTextEditor9";
- this.ultraTextEditor9.Size = new System.Drawing.Size(100, 21);
- this.ultraTextEditor9.TabIndex = 143;
- //
- // ultraLabel33
- //
- appearance161.TextHAlignAsString = "Right";
- appearance161.TextVAlignAsString = "Middle";
- this.ultraLabel33.Appearance = appearance161;
- this.ultraLabel33.AutoSize = true;
- this.ultraLabel33.Location = new System.Drawing.Point(615, 12);
- this.ultraLabel33.Name = "ultraLabel33";
- this.ultraLabel33.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel33.TabIndex = 142;
- this.ultraLabel33.Text = "扣型";
- //
- // ultraTextEditor10
- //
- this.ultraTextEditor10.Location = new System.Drawing.Point(648, 34);
- this.ultraTextEditor10.MaxLength = 200;
- this.ultraTextEditor10.Name = "ultraTextEditor10";
- this.ultraTextEditor10.Size = new System.Drawing.Size(100, 21);
- this.ultraTextEditor10.TabIndex = 137;
- //
- // ultraTextEditor11
- //
- this.ultraTextEditor11.Location = new System.Drawing.Point(445, 34);
- this.ultraTextEditor11.MaxLength = 200;
- this.ultraTextEditor11.Name = "ultraTextEditor11";
- this.ultraTextEditor11.Size = new System.Drawing.Size(141, 21);
- this.ultraTextEditor11.TabIndex = 131;
- //
- // ultraLabel34
- //
- appearance34.TextHAlignAsString = "Right";
- appearance34.TextVAlignAsString = "Middle";
- this.ultraLabel34.Appearance = appearance34;
- this.ultraLabel34.AutoSize = true;
- this.ultraLabel34.Location = new System.Drawing.Point(590, 37);
- this.ultraLabel34.Name = "ultraLabel34";
- this.ultraLabel34.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel34.TabIndex = 130;
- this.ultraLabel34.Text = "目标长度";
- //
- // ultraLabel35
- //
- appearance52.TextHAlignAsString = "Right";
- appearance52.TextVAlignAsString = "Middle";
- this.ultraLabel35.Appearance = appearance52;
- this.ultraLabel35.AutoSize = true;
- this.ultraLabel35.Location = new System.Drawing.Point(37, 37);
- this.ultraLabel35.Name = "ultraLabel35";
- this.ultraLabel35.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel35.TabIndex = 128;
- this.ultraLabel35.Text = "炉号";
- //
- // ultraTextEditor12
- //
- this.ultraTextEditor12.Location = new System.Drawing.Point(445, 59);
- this.ultraTextEditor12.Name = "ultraTextEditor12";
- this.ultraTextEditor12.Size = new System.Drawing.Size(141, 21);
- this.ultraTextEditor12.TabIndex = 127;
- //
- // ultraLabel36
- //
- appearance5.TextHAlignAsString = "Right";
- appearance5.TextVAlignAsString = "Middle";
- this.ultraLabel36.Appearance = appearance5;
- this.ultraLabel36.AutoSize = true;
- this.ultraLabel36.Location = new System.Drawing.Point(412, 62);
- this.ultraLabel36.Name = "ultraLabel36";
- this.ultraLabel36.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel36.TabIndex = 126;
- this.ultraLabel36.Text = "规格";
- //
- // ultraTextEditor13
- //
- this.ultraTextEditor13.Location = new System.Drawing.Point(444, 9);
- this.ultraTextEditor13.MaxLength = 200;
- this.ultraTextEditor13.Name = "ultraTextEditor13";
- this.ultraTextEditor13.Size = new System.Drawing.Size(142, 21);
- this.ultraTextEditor13.TabIndex = 125;
- //
- // ultraTextEditor14
- //
- this.ultraTextEditor14.Location = new System.Drawing.Point(70, 34);
- this.ultraTextEditor14.MaxLength = 200;
- this.ultraTextEditor14.Name = "ultraTextEditor14";
- this.ultraTextEditor14.Size = new System.Drawing.Size(109, 21);
- this.ultraTextEditor14.TabIndex = 123;
- //
- // ultraLabel37
- //
- appearance8.TextHAlignAsString = "Right";
- appearance8.TextVAlignAsString = "Middle";
- this.ultraLabel37.Appearance = appearance8;
- this.ultraLabel37.AutoSize = true;
- this.ultraLabel37.Location = new System.Drawing.Point(412, 37);
- this.ultraLabel37.Name = "ultraLabel37";
- this.ultraLabel37.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel37.TabIndex = 122;
- this.ultraLabel37.Text = "钢号";
- //
- // ultraLabel38
- //
- appearance33.TextHAlignAsString = "Right";
- appearance33.TextVAlignAsString = "Middle";
- this.ultraLabel38.Appearance = appearance33;
- this.ultraLabel38.AutoSize = true;
- this.ultraLabel38.Location = new System.Drawing.Point(411, 12);
- this.ultraLabel38.Name = "ultraLabel38";
- this.ultraLabel38.RightToLeft = System.Windows.Forms.RightToLeft.No;
- this.ultraLabel38.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel38.TabIndex = 120;
- this.ultraLabel38.Text = "钢级";
- //
- // ultraTextEditor15
- //
- this.ultraTextEditor15.Location = new System.Drawing.Point(70, 9);
- this.ultraTextEditor15.MaxLength = 100;
- this.ultraTextEditor15.Name = "ultraTextEditor15";
- this.ultraTextEditor15.Size = new System.Drawing.Size(110, 21);
- this.ultraTextEditor15.TabIndex = 118;
- //
- // ultraLabel39
- //
- appearance103.TextHAlignAsString = "Right";
- appearance103.TextVAlignAsString = "Middle";
- this.ultraLabel39.Appearance = appearance103;
- this.ultraLabel39.AutoSize = true;
- this.ultraLabel39.Location = new System.Drawing.Point(12, 12);
- this.ultraLabel39.Name = "ultraLabel39";
- this.ultraLabel39.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel39.TabIndex = 119;
- this.ultraLabel39.Text = "生产批号";
- //
- // ultraGroupBox12
- //
- this.ultraGroupBox12.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
- this.ultraGroupBox12.Controls.Add(this.ultraGrid6);
- this.ultraGroupBox12.Dock = System.Windows.Forms.DockStyle.Left;
- this.ultraGroupBox12.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox12.Name = "ultraGroupBox12";
- this.ultraGroupBox12.Size = new System.Drawing.Size(180, 438);
- this.ultraGroupBox12.TabIndex = 19;
- this.ultraGroupBox12.Text = "生产批号、炉号队列";
- //
- // ultraGrid6
- //
- this.ultraGrid6.DataMember = "Table6";
- this.ultraGrid6.DataSource = this.dataSet2;
- appearance3.BackColor = System.Drawing.SystemColors.Window;
- appearance3.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid6.DisplayLayout.Appearance = appearance3;
- ultraGridBand11.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid6.DisplayLayout.BandsSerializer.Add(ultraGridBand11);
- this.ultraGrid6.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid6.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance4.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance4.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance4.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance4.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid6.DisplayLayout.GroupByBox.Appearance = appearance4;
- appearance6.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid6.DisplayLayout.GroupByBox.BandLabelAppearance = appearance6;
- this.ultraGrid6.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance1.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance1.BackColor2 = System.Drawing.SystemColors.Control;
- appearance1.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance1.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid6.DisplayLayout.GroupByBox.PromptAppearance = appearance1;
- this.ultraGrid6.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid6.DisplayLayout.MaxRowScrollRegions = 1;
- appearance9.BackColor = System.Drawing.SystemColors.Window;
- appearance9.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid6.DisplayLayout.Override.ActiveCellAppearance = appearance9;
- appearance10.BackColor = System.Drawing.SystemColors.Highlight;
- appearance10.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid6.DisplayLayout.Override.ActiveRowAppearance = appearance10;
- this.ultraGrid6.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid6.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid6.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid6.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance12.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid6.DisplayLayout.Override.CardAreaAppearance = appearance12;
- appearance13.BorderColor = System.Drawing.Color.Silver;
- appearance13.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid6.DisplayLayout.Override.CellAppearance = appearance13;
- this.ultraGrid6.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid6.DisplayLayout.Override.CellPadding = 0;
- this.ultraGrid6.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
- appearance16.BackColor = System.Drawing.SystemColors.Control;
- appearance16.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance16.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance16.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance16.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid6.DisplayLayout.Override.GroupByRowAppearance = appearance16;
- appearance17.TextHAlignAsString = "Left";
- this.ultraGrid6.DisplayLayout.Override.HeaderAppearance = appearance17;
- this.ultraGrid6.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid6.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance19.BackColor = System.Drawing.SystemColors.Window;
- appearance19.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid6.DisplayLayout.Override.RowAppearance = appearance19;
- this.ultraGrid6.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance20.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid6.DisplayLayout.Override.TemplateAddRowAppearance = appearance20;
- this.ultraGrid6.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid6.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid6.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid6.Location = new System.Drawing.Point(1, 18);
- this.ultraGrid6.Name = "ultraGrid6";
- this.ultraGrid6.Size = new System.Drawing.Size(178, 419);
- this.ultraGrid6.TabIndex = 27;
- this.ultraGrid6.Text = "生产批号、炉号队列";
- this.ultraGrid6.AfterRowActivate += new System.EventHandler(this.ultraGrid6_AfterRowActivate);
- //
- // ultraTabPageControl2
- //
- this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl2.Name = "ultraTabPageControl2";
- this.ultraTabPageControl2.Size = new System.Drawing.Size(1322, 438);
- //
- // panel1
- //
- this.panel1.Controls.Add(this.panel3);
- this.panel1.Controls.Add(this.panel2);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1328, 506);
- this.panel1.TabIndex = 0;
- //
- // panel3
- //
- this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel3.Controls.Add(this.ultraTabControl1);
- this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel3.Location = new System.Drawing.Point(0, 40);
- this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(1328, 466);
- this.panel3.TabIndex = 18;
- //
- // ultraTabControl1
- //
- this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl3);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
- this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
- this.ultraTabControl1.Name = "ultraTabControl1";
- this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
- this.ultraTabControl1.Size = new System.Drawing.Size(1326, 464);
- this.ultraTabControl1.TabIndex = 19;
- ultraTab2.TabPage = this.ultraTabPageControl1;
- ultraTab2.Text = "未组批";
- ultraTab6.TabPage = this.ultraTabPageControl3;
- ultraTab6.Text = "已组批未取样";
- ultraTab7.TabPage = this.ultraTabPageControl2;
- ultraTab7.Text = "委托确认";
- this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab2,
- ultraTab6,
- ultraTab7});
- //
- // ultraTabSharedControlsPage1
- //
- this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
- this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1322, 438);
- //
- // panel2
- //
- this.panel2.Controls.Add(this.chkLOT_NO);
- this.panel2.Controls.Add(this.chkJUDGE_STOVE_NO);
- this.panel2.Controls.Add(this.txtQueryJUDGE_STOVE_NO);
- this.panel2.Controls.Add(this.txtQueryLOT_NO);
- this.panel2.Controls.Add(this.ultraLabel8);
- this.panel2.Controls.Add(this.dateEnd);
- this.panel2.Controls.Add(this.chkCONSIGN_TIME);
- this.panel2.Controls.Add(this.dateBegin);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel2.Location = new System.Drawing.Point(0, 0);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(1328, 40);
- this.panel2.TabIndex = 17;
- //
- // chkLOT_NO
- //
- this.chkLOT_NO.AutoSize = true;
- this.chkLOT_NO.Location = new System.Drawing.Point(300, 12);
- this.chkLOT_NO.Margin = new System.Windows.Forms.Padding(2);
- this.chkLOT_NO.Name = "chkLOT_NO";
- this.chkLOT_NO.Size = new System.Drawing.Size(71, 19);
- this.chkLOT_NO.TabIndex = 110;
- this.chkLOT_NO.Text = "生产批号";
- //
- // chkJUDGE_STOVE_NO
- //
- this.chkJUDGE_STOVE_NO.AutoSize = true;
- this.chkJUDGE_STOVE_NO.Location = new System.Drawing.Point(471, 12);
- this.chkJUDGE_STOVE_NO.Margin = new System.Windows.Forms.Padding(2);
- this.chkJUDGE_STOVE_NO.Name = "chkJUDGE_STOVE_NO";
- this.chkJUDGE_STOVE_NO.Size = new System.Drawing.Size(46, 19);
- this.chkJUDGE_STOVE_NO.TabIndex = 111;
- this.chkJUDGE_STOVE_NO.Text = "炉号";
- //
- // txtQueryJUDGE_STOVE_NO
- //
- this.txtQueryJUDGE_STOVE_NO.Location = new System.Drawing.Point(521, 11);
- this.txtQueryJUDGE_STOVE_NO.MaxLength = 100;
- this.txtQueryJUDGE_STOVE_NO.Name = "txtQueryJUDGE_STOVE_NO";
- this.txtQueryJUDGE_STOVE_NO.Size = new System.Drawing.Size(92, 21);
- this.txtQueryJUDGE_STOVE_NO.TabIndex = 107;
- //
- // txtQueryLOT_NO
- //
- this.txtQueryLOT_NO.Location = new System.Drawing.Point(375, 11);
- this.txtQueryLOT_NO.MaxLength = 100;
- this.txtQueryLOT_NO.Name = "txtQueryLOT_NO";
- this.txtQueryLOT_NO.Size = new System.Drawing.Size(92, 21);
- this.txtQueryLOT_NO.TabIndex = 106;
- //
- // ultraLabel8
- //
- appearance15.TextHAlignAsString = "Center";
- appearance15.TextVAlignAsString = "Middle";
- this.ultraLabel8.Appearance = appearance15;
- this.ultraLabel8.AutoSize = true;
- this.ultraLabel8.Location = new System.Drawing.Point(183, 14);
- this.ultraLabel8.Name = "ultraLabel8";
- this.ultraLabel8.Size = new System.Drawing.Size(17, 16);
- this.ultraLabel8.TabIndex = 108;
- this.ultraLabel8.Text = "至";
- //
- // dateEnd
- //
- this.dateEnd.DateTime = new System.DateTime(2015, 9, 16, 0, 0, 0, 0);
- this.dateEnd.FormatProvider = new System.Globalization.CultureInfo("sq-AL");
- this.dateEnd.Location = new System.Drawing.Point(204, 11);
- this.dateEnd.Name = "dateEnd";
- this.dateEnd.Size = new System.Drawing.Size(92, 21);
- this.dateEnd.TabIndex = 105;
- this.dateEnd.Value = new System.DateTime(2015, 9, 16, 0, 0, 0, 0);
- //
- // chkCONSIGN_TIME
- //
- appearance7.TextHAlignAsString = "Left";
- this.chkCONSIGN_TIME.Appearance = appearance7;
- this.chkCONSIGN_TIME.AutoSize = true;
- this.chkCONSIGN_TIME.Checked = true;
- this.chkCONSIGN_TIME.CheckState = System.Windows.Forms.CheckState.Checked;
- this.chkCONSIGN_TIME.Location = new System.Drawing.Point(12, 12);
- this.chkCONSIGN_TIME.Name = "chkCONSIGN_TIME";
- this.chkCONSIGN_TIME.Size = new System.Drawing.Size(71, 19);
- this.chkCONSIGN_TIME.TabIndex = 109;
- this.chkCONSIGN_TIME.Text = "生产时间";
- //
- // dateBegin
- //
- this.dateBegin.DateTime = new System.DateTime(2015, 9, 16, 0, 0, 0, 0);
- this.dateBegin.FormatProvider = new System.Globalization.CultureInfo("sq-AL");
- this.dateBegin.FormatString = "";
- this.dateBegin.Location = new System.Drawing.Point(87, 11);
- this.dateBegin.MaskInput = "";
- this.dateBegin.Name = "dateBegin";
- this.dateBegin.Size = new System.Drawing.Size(92, 21);
- this.dateBegin.TabIndex = 104;
- this.dateBegin.Value = new System.DateTime(2015, 9, 16, 0, 0, 0, 0);
- //
- // ultraTabSharedControlsPage2
- //
- this.ultraTabSharedControlsPage2.Location = new System.Drawing.Point(1, 20);
- this.ultraTabSharedControlsPage2.Name = "ultraTabSharedControlsPage2";
- this.ultraTabSharedControlsPage2.Size = new System.Drawing.Size(196, 77);
- //
- // ultraTabControl2
- //
- this.ultraTabControl2.Location = new System.Drawing.Point(0, 0);
- this.ultraTabControl2.Name = "ultraTabControl2";
- this.ultraTabControl2.SharedControlsPage = this.ultraTabSharedControlsPage2;
- this.ultraTabControl2.Size = new System.Drawing.Size(200, 100);
- this.ultraTabControl2.TabIndex = 0;
- //
- // btnSampleSeq
- //
- this.btnSampleSeq.Location = new System.Drawing.Point(231, 8);
- this.btnSampleSeq.Name = "btnSampleSeq";
- this.btnSampleSeq.Size = new System.Drawing.Size(33, 73);
- this.btnSampleSeq.TabIndex = 225;
- this.btnSampleSeq.Text = "试样号对齐";
- this.btnSampleSeq.UseVisualStyleBackColor = true;
- this.btnSampleSeq.Click += new System.EventHandler(this.btnSampleSeq_Click);
- //
- // FrmGetBatchAndSamples
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1328, 506);
- this.Controls.Add(this.panel1);
- this.Name = "FrmGetBatchAndSamples";
- this.Text = "取样实绩";
- this.Load += new System.EventHandler(this.FrmGetSample_Load);
- this.ultraTabPageControl1.ResumeLayout(false);
- this.panel4.ResumeLayout(false);
- this.panel5.ResumeLayout(false);
- this.panel7.ResumeLayout(false);
- this.panel8.ResumeLayout(false);
- this.panel10.ResumeLayout(false);
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel2.ResumeLayout(false);
- this.splitContainer1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).EndInit();
- this.ultraGroupBox5.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
- this.panel11.ResumeLayout(false);
- this.panel11.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MIN)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPIPE_NUM)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraEND_PIPE_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraSTART_PIPE_NO)).EndInit();
- this.splitContainer2.Panel1.ResumeLayout(false);
- this.splitContainer2.Panel2.ResumeLayout(false);
- this.splitContainer2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
- this.ultraGroupBox4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).EndInit();
- this.ultraGroupBox6.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
- this.ultraGroupBox3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
- this.panel9.ResumeLayout(false);
- this.panel9.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.CHKISVALID)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
- this.ultraGroupBox2.ResumeLayout(false);
- this.panel6.ResumeLayout(false);
- this.panel6.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCONSIGN_NAME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCONSIGN_TIME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSTEEL_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPRODUCT_STD)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSTEEL_GRADE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtHEAT_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtCHECK_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
- this.ultraTabPageControl3.ResumeLayout(false);
- this.panel13.ResumeLayout(false);
- this.panel14.ResumeLayout(false);
- this.panel15.ResumeLayout(false);
- this.panel16.ResumeLayout(false);
- this.panel17.ResumeLayout(false);
- this.splitContainer3.Panel1.ResumeLayout(false);
- this.splitContainer3.Panel2.ResumeLayout(false);
- this.splitContainer3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox7)).EndInit();
- this.ultraGroupBox7.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid9)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable8)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable9)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable10)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable11)).EndInit();
- this.panel18.ResumeLayout(false);
- this.panel18.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.CHKISALL_LOG)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraPOSITION_LOG)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraPIPE_NO_LOG)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraBATCH_NO_LOG)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox8)).EndInit();
- this.ultraGroupBox8.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid8)).EndInit();
- this.panel19.ResumeLayout(false);
- this.panel19.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MIN_LOG)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPIPE_NUM_LOG)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraEND_PIPE_NO_LOG)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraSTART_PIPE_NO_LOG)).EndInit();
- this.splitContainer4.Panel1.ResumeLayout(false);
- this.splitContainer4.Panel2.ResumeLayout(false);
- this.splitContainer4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox9)).EndInit();
- this.ultraGroupBox9.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid10)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox13)).EndInit();
- this.ultraGroupBox13.ResumeLayout(false);
- this.ultraGroupBox13.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.CHKISAllSampleReq_LOG)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid11)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox10)).EndInit();
- this.ultraGroupBox10.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).EndInit();
- this.panel20.ResumeLayout(false);
- this.panel20.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGX_LOG)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.CHKISVALID_LOG)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox11)).EndInit();
- this.ultraGroupBox11.ResumeLayout(false);
- this.panel21.ResumeLayout(false);
- this.panel21.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSAMPLE_CLASS)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSAMPLE_NAME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSAMPLE_TIME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_CLASS)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_NAME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_TIME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MAX_LOG)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox12)).EndInit();
- this.ultraGroupBox12.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid6)).EndInit();
- this.panel1.ResumeLayout(false);
- this.panel3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
- this.ultraTabControl1.ResumeLayout(false);
- this.panel2.ResumeLayout(false);
- this.panel2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chkLOT_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkJUDGE_STOVE_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtQueryJUDGE_STOVE_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtQueryLOT_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dateEnd)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkCONSIGN_TIME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dateBegin)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Panel panel2;
- private System.Data.DataSet dataSet1;
- private System.Data.DataTable dataTable1;
- private System.Windows.Forms.Panel panel3;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
- private System.Windows.Forms.Panel panel4;
- private System.Windows.Forms.Panel panel5;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
- private System.Windows.Forms.Panel panel6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtCONSIGN_NAME;
- private Infragistics.Win.Misc.UltraLabel ultraLabel10;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtCONSIGN_TIME;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSTEEL_NO;
- private Infragistics.Win.Misc.UltraLabel ultraLabel11;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPRODUCT_STD;
- private Infragistics.Win.Misc.UltraLabel ultraLabel6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSTEEL_GRADE;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtHEAT_NO;
- private Infragistics.Win.Misc.UltraLabel ultraLabel5;
- private Infragistics.Win.Misc.UltraLabel ultraLabel4;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtCHECK_NO;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private System.Windows.Forms.Panel panel7;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
- private System.Data.DataTable dataTable2;
- private System.Windows.Forms.Panel panel8;
- private System.Data.DataTable dataTable3;
- private System.Windows.Forms.Panel panel10;
- private System.Data.DataTable dataTable4;
- private System.Data.DataTable dataTable5;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel7;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_MAX;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkLOT_NO;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkJUDGE_STOVE_NO;
- internal Infragistics.Win.UltraWinEditors.UltraTextEditor txtQueryJUDGE_STOVE_NO;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtQueryLOT_NO;
- private Infragistics.Win.Misc.UltraLabel ultraLabel8;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dateEnd;
- internal Infragistics.Win.UltraWinEditors.UltraCheckEditor chkCONSIGN_TIME;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dateBegin;
- private System.Windows.Forms.SplitContainer splitContainer1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
- private System.Windows.Forms.Panel panel9;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor CHKISVALID;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraGX;
- private Infragistics.Win.Misc.UltraLabel ultraLabel9;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox5;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
- private System.Windows.Forms.Panel panel11;
- private System.Windows.Forms.Button btnCancel;
- private System.Windows.Forms.Button btnAuto;
- private System.Windows.Forms.Button btnConfirm;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraEND_PIPE_NO;
- private Infragistics.Win.Misc.UltraLabel ultraLabel15;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraSTART_PIPE_NO;
- private Infragistics.Win.Misc.UltraLabel ultraLabel18;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPIPE_NUM;
- private Infragistics.Win.Misc.UltraLabel ultraLabel12;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel13;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor3;
- private Infragistics.Win.Misc.UltraLabel ultraLabel14;
- private Infragistics.Win.Misc.UltraLabel ultraLabel17;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor22;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_MIN;
- private Infragistics.Win.Misc.UltraLabel ultraLabel47;
- private System.Windows.Forms.SplitContainer splitContainer2;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox6;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid5;
- private System.Windows.Forms.Button btnFindSampleReq;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage2;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl2;
- private System.Data.DataSet dataSet2;
- private System.Data.DataTable dataTable6;
- private System.Data.DataTable dataTable7;
- private System.Data.DataTable dataTable8;
- private System.Data.DataTable dataTable9;
- private System.Data.DataTable dataTable10;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
- private System.Windows.Forms.Panel panel13;
- private System.Windows.Forms.Panel panel14;
- private System.Windows.Forms.Panel panel15;
- private System.Windows.Forms.Panel panel16;
- private System.Windows.Forms.Panel panel17;
- private System.Windows.Forms.SplitContainer splitContainer3;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox7;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid9;
- private System.Windows.Forms.Panel panel18;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor CHKISALL_LOG;
- private System.Windows.Forms.Button btnDeleteSample_LOG;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraPOSITION_LOG;
- private Infragistics.Win.Misc.UltraLabel ultraLabel21;
- private System.Windows.Forms.Button btnAddSample_LOG;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraPIPE_NO_LOG;
- private Infragistics.Win.Misc.UltraLabel ultraLabel22;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraBATCH_NO_LOG;
- private Infragistics.Win.Misc.UltraLabel ultraLabel23;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox8;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid8;
- private System.Windows.Forms.Panel panel19;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_MIN_LOG;
- private Infragistics.Win.Misc.UltraLabel ultraLabel46;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPIPE_NUM_LOG;
- private Infragistics.Win.Misc.UltraLabel ultraLabel24;
- private System.Windows.Forms.Button btnCancel_LOG;
- private System.Windows.Forms.Button btnAuto_LOG;
- private System.Windows.Forms.Button btnConfirm_LOG;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraEND_PIPE_NO_LOG;
- private Infragistics.Win.Misc.UltraLabel ultraLabel25;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraSTART_PIPE_NO_LOG;
- private Infragistics.Win.Misc.UltraLabel ultraLabel26;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox10;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid7;
- private System.Windows.Forms.Panel panel20;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraGX_LOG;
- private Infragistics.Win.Misc.UltraLabel ultraLabel27;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor CHKISVALID_LOG;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox11;
- private System.Windows.Forms.Panel panel21;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor4;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSAMPLE_CLASS;
- private Infragistics.Win.Misc.UltraLabel ultraLabel43;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSAMPLE_NAME;
- private Infragistics.Win.Misc.UltraLabel ultraLabel44;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSAMPLE_TIME;
- private Infragistics.Win.Misc.UltraLabel ultraLabel45;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_CLASS;
- private Infragistics.Win.Misc.UltraLabel ultraLabel42;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_NAME;
- private Infragistics.Win.Misc.UltraLabel ultraLabel41;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_TIME;
- private Infragistics.Win.Misc.UltraLabel ultraLabel40;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor5;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
- private Infragistics.Win.Misc.UltraLabel ultraLabel28;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor7;
- private Infragistics.Win.Misc.UltraLabel ultraLabel29;
- private Infragistics.Win.Misc.UltraLabel ultraLabel30;
- private Infragistics.Win.Misc.UltraLabel ultraLabel31;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_MAX_LOG;
- private Infragistics.Win.Misc.UltraLabel ultraLabel32;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor9;
- private Infragistics.Win.Misc.UltraLabel ultraLabel33;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor10;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor11;
- private Infragistics.Win.Misc.UltraLabel ultraLabel34;
- private Infragistics.Win.Misc.UltraLabel ultraLabel35;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor12;
- private Infragistics.Win.Misc.UltraLabel ultraLabel36;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor13;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor14;
- private Infragistics.Win.Misc.UltraLabel ultraLabel37;
- private Infragistics.Win.Misc.UltraLabel ultraLabel38;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor15;
- private Infragistics.Win.Misc.UltraLabel ultraLabel39;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox12;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid6;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
- private System.Windows.Forms.SplitContainer splitContainer4;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox9;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid10;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox13;
- private System.Windows.Forms.Button btnFindSampleReq_LOG;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid11;
- private System.Data.DataTable dataTable11;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor CHKISAllSampleReq_LOG;
- private System.Windows.Forms.Button btnSampleSeq;
- }
- }
|