FrmGetBatchAndSamples.designer.cs 214 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435
  1. namespace Core.StlMes.Client.ZGMil.Result
  2. {
  3. partial class FrmGetBatchAndSamples
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
  29. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table3", -1);
  30. Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
  31. Infragistics.Win.Appearance appearance169 = new Infragistics.Win.Appearance();
  32. Infragistics.Win.Appearance appearance170 = new Infragistics.Win.Appearance();
  33. Infragistics.Win.Appearance appearance171 = new Infragistics.Win.Appearance();
  34. Infragistics.Win.Appearance appearance172 = new Infragistics.Win.Appearance();
  35. Infragistics.Win.Appearance appearance173 = new Infragistics.Win.Appearance();
  36. Infragistics.Win.Appearance appearance174 = new Infragistics.Win.Appearance();
  37. Infragistics.Win.Appearance appearance175 = new Infragistics.Win.Appearance();
  38. Infragistics.Win.Appearance appearance176 = new Infragistics.Win.Appearance();
  39. Infragistics.Win.Appearance appearance177 = new Infragistics.Win.Appearance();
  40. Infragistics.Win.Appearance appearance178 = new Infragistics.Win.Appearance();
  41. Infragistics.Win.Appearance appearance179 = new Infragistics.Win.Appearance();
  42. Infragistics.Win.Appearance appearance180 = new Infragistics.Win.Appearance();
  43. Infragistics.Win.Appearance appearance181 = new Infragistics.Win.Appearance();
  44. Infragistics.Win.Appearance appearance182 = new Infragistics.Win.Appearance();
  45. Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
  46. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table4", -1);
  47. Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
  48. Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
  49. Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
  50. Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
  51. Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
  52. Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
  53. Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
  54. Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
  55. Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
  56. Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
  57. Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
  58. Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
  59. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table5", -1);
  60. Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
  61. Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
  62. Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
  63. Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
  64. Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
  65. Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
  66. Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
  67. Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
  68. Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
  69. Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
  70. Infragistics.Win.Appearance appearance108 = new Infragistics.Win.Appearance();
  71. Infragistics.Win.Appearance appearance207 = new Infragistics.Win.Appearance();
  72. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
  73. Infragistics.Win.Appearance appearance208 = new Infragistics.Win.Appearance();
  74. Infragistics.Win.Appearance appearance209 = new Infragistics.Win.Appearance();
  75. Infragistics.Win.Appearance appearance210 = new Infragistics.Win.Appearance();
  76. Infragistics.Win.Appearance appearance211 = new Infragistics.Win.Appearance();
  77. Infragistics.Win.Appearance appearance212 = new Infragistics.Win.Appearance();
  78. Infragistics.Win.Appearance appearance213 = new Infragistics.Win.Appearance();
  79. Infragistics.Win.Appearance appearance214 = new Infragistics.Win.Appearance();
  80. Infragistics.Win.Appearance appearance215 = new Infragistics.Win.Appearance();
  81. Infragistics.Win.Appearance appearance216 = new Infragistics.Win.Appearance();
  82. Infragistics.Win.Appearance appearance217 = new Infragistics.Win.Appearance();
  83. Infragistics.Win.Appearance appearance218 = new Infragistics.Win.Appearance();
  84. Infragistics.Win.Appearance appearance219 = new Infragistics.Win.Appearance();
  85. Infragistics.Win.Appearance appearance220 = new Infragistics.Win.Appearance();
  86. Infragistics.Win.Appearance appearance221 = new Infragistics.Win.Appearance();
  87. Infragistics.Win.Appearance appearance222 = new Infragistics.Win.Appearance();
  88. Infragistics.Win.Appearance appearance223 = new Infragistics.Win.Appearance();
  89. Infragistics.Win.Appearance appearance224 = new Infragistics.Win.Appearance();
  90. Infragistics.Win.Appearance appearance225 = new Infragistics.Win.Appearance();
  91. Infragistics.Win.Appearance appearance226 = new Infragistics.Win.Appearance();
  92. Infragistics.Win.Appearance appearance227 = new Infragistics.Win.Appearance();
  93. Infragistics.Win.Appearance appearance228 = new Infragistics.Win.Appearance();
  94. Infragistics.Win.Appearance appearance229 = new Infragistics.Win.Appearance();
  95. Infragistics.Win.Appearance appearance230 = new Infragistics.Win.Appearance();
  96. Infragistics.Win.Appearance appearance231 = new Infragistics.Win.Appearance();
  97. Infragistics.Win.Appearance appearance232 = new Infragistics.Win.Appearance();
  98. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  99. Infragistics.Win.Appearance appearance233 = new Infragistics.Win.Appearance();
  100. Infragistics.Win.Appearance appearance234 = new Infragistics.Win.Appearance();
  101. Infragistics.Win.Appearance appearance235 = new Infragistics.Win.Appearance();
  102. Infragistics.Win.Appearance appearance236 = new Infragistics.Win.Appearance();
  103. Infragistics.Win.Appearance appearance237 = new Infragistics.Win.Appearance();
  104. Infragistics.Win.Appearance appearance238 = new Infragistics.Win.Appearance();
  105. Infragistics.Win.Appearance appearance239 = new Infragistics.Win.Appearance();
  106. Infragistics.Win.Appearance appearance240 = new Infragistics.Win.Appearance();
  107. Infragistics.Win.Appearance appearance241 = new Infragistics.Win.Appearance();
  108. Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
  109. Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
  110. Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
  111. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand6 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table9", -1);
  112. Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
  113. Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
  114. Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
  115. Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
  116. Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
  117. Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
  118. Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
  119. Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
  120. Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
  121. Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
  122. Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
  123. Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
  124. Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
  125. Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
  126. Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
  127. Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
  128. Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
  129. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  130. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand7 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table8", -1);
  131. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  132. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  133. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  134. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  135. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  136. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  137. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  138. Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
  139. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  140. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  141. Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
  142. Infragistics.Win.Appearance appearance168 = new Infragistics.Win.Appearance();
  143. Infragistics.Win.Appearance appearance167 = new Infragistics.Win.Appearance();
  144. Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
  145. Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
  146. Infragistics.Win.Appearance appearance183 = new Infragistics.Win.Appearance();
  147. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand8 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table10", -1);
  148. Infragistics.Win.Appearance appearance184 = new Infragistics.Win.Appearance();
  149. Infragistics.Win.Appearance appearance185 = new Infragistics.Win.Appearance();
  150. Infragistics.Win.Appearance appearance186 = new Infragistics.Win.Appearance();
  151. Infragistics.Win.Appearance appearance187 = new Infragistics.Win.Appearance();
  152. Infragistics.Win.Appearance appearance188 = new Infragistics.Win.Appearance();
  153. Infragistics.Win.Appearance appearance189 = new Infragistics.Win.Appearance();
  154. Infragistics.Win.Appearance appearance190 = new Infragistics.Win.Appearance();
  155. Infragistics.Win.Appearance appearance191 = new Infragistics.Win.Appearance();
  156. Infragistics.Win.Appearance appearance192 = new Infragistics.Win.Appearance();
  157. Infragistics.Win.Appearance appearance193 = new Infragistics.Win.Appearance();
  158. Infragistics.Win.Appearance appearance194 = new Infragistics.Win.Appearance();
  159. Infragistics.Win.Appearance appearance195 = new Infragistics.Win.Appearance();
  160. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand9 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table11", -1);
  161. Infragistics.Win.Appearance appearance196 = new Infragistics.Win.Appearance();
  162. Infragistics.Win.Appearance appearance197 = new Infragistics.Win.Appearance();
  163. Infragistics.Win.Appearance appearance198 = new Infragistics.Win.Appearance();
  164. Infragistics.Win.Appearance appearance199 = new Infragistics.Win.Appearance();
  165. Infragistics.Win.Appearance appearance200 = new Infragistics.Win.Appearance();
  166. Infragistics.Win.Appearance appearance201 = new Infragistics.Win.Appearance();
  167. Infragistics.Win.Appearance appearance202 = new Infragistics.Win.Appearance();
  168. Infragistics.Win.Appearance appearance203 = new Infragistics.Win.Appearance();
  169. Infragistics.Win.Appearance appearance204 = new Infragistics.Win.Appearance();
  170. Infragistics.Win.Appearance appearance205 = new Infragistics.Win.Appearance();
  171. Infragistics.Win.Appearance appearance206 = new Infragistics.Win.Appearance();
  172. Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
  173. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand10 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table7", -1);
  174. Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
  175. Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
  176. Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
  177. Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
  178. Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
  179. Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
  180. Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
  181. Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
  182. Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
  183. Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
  184. Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
  185. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  186. Infragistics.Win.Appearance appearance162 = new Infragistics.Win.Appearance();
  187. Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
  188. Infragistics.Win.Appearance appearance163 = new Infragistics.Win.Appearance();
  189. Infragistics.Win.Appearance appearance164 = new Infragistics.Win.Appearance();
  190. Infragistics.Win.Appearance appearance165 = new Infragistics.Win.Appearance();
  191. Infragistics.Win.Appearance appearance166 = new Infragistics.Win.Appearance();
  192. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  193. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  194. Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
  195. Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
  196. Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
  197. Infragistics.Win.Appearance appearance161 = new Infragistics.Win.Appearance();
  198. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  199. Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
  200. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  201. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  202. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  203. Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
  204. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  205. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand11 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table6", -1);
  206. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  207. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  208. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  209. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  210. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  211. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  212. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  213. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  214. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  215. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  216. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  217. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  218. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab6 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  219. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab7 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  220. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  221. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  222. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  223. this.panel4 = new System.Windows.Forms.Panel();
  224. this.panel5 = new System.Windows.Forms.Panel();
  225. this.panel7 = new System.Windows.Forms.Panel();
  226. this.panel8 = new System.Windows.Forms.Panel();
  227. this.panel10 = new System.Windows.Forms.Panel();
  228. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  229. this.ultraGroupBox5 = new Infragistics.Win.Misc.UltraGroupBox();
  230. this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  231. this.dataSet1 = new System.Data.DataSet();
  232. this.dataTable1 = new System.Data.DataTable();
  233. this.dataTable2 = new System.Data.DataTable();
  234. this.dataTable3 = new System.Data.DataTable();
  235. this.dataTable4 = new System.Data.DataTable();
  236. this.dataTable5 = new System.Data.DataTable();
  237. this.panel11 = new System.Windows.Forms.Panel();
  238. this.txtBATCH_MIN = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  239. this.ultraLabel47 = new Infragistics.Win.Misc.UltraLabel();
  240. this.txtPIPE_NUM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  241. this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
  242. this.btnCancel = new System.Windows.Forms.Button();
  243. this.btnAuto = new System.Windows.Forms.Button();
  244. this.btnConfirm = new System.Windows.Forms.Button();
  245. this.ultraEND_PIPE_NO = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  246. this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
  247. this.ultraSTART_PIPE_NO = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  248. this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
  249. this.splitContainer2 = new System.Windows.Forms.SplitContainer();
  250. this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
  251. this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  252. this.ultraGroupBox6 = new Infragistics.Win.Misc.UltraGroupBox();
  253. this.btnFindSampleReq = new System.Windows.Forms.Button();
  254. this.ultraGrid5 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  255. this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
  256. this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  257. this.panel9 = new System.Windows.Forms.Panel();
  258. this.ultraGX = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  259. this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
  260. this.CHKISVALID = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  261. this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
  262. this.panel6 = new System.Windows.Forms.Panel();
  263. this.ultraTextEditor22 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  264. this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  265. this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  266. this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
  267. this.ultraTextEditor3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  268. this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
  269. this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
  270. this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
  271. this.txtBATCH_MAX = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  272. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  273. this.txtCONSIGN_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  274. this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
  275. this.txtCONSIGN_TIME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  276. this.txtSTEEL_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  277. this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
  278. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  279. this.txtPRODUCT_STD = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  280. this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
  281. this.txtSTEEL_GRADE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  282. this.txtHEAT_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  283. this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
  284. this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
  285. this.txtCHECK_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  286. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  287. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  288. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  289. this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  290. this.panel13 = new System.Windows.Forms.Panel();
  291. this.panel14 = new System.Windows.Forms.Panel();
  292. this.panel15 = new System.Windows.Forms.Panel();
  293. this.panel16 = new System.Windows.Forms.Panel();
  294. this.panel17 = new System.Windows.Forms.Panel();
  295. this.splitContainer3 = new System.Windows.Forms.SplitContainer();
  296. this.ultraGroupBox7 = new Infragistics.Win.Misc.UltraGroupBox();
  297. this.ultraGrid9 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  298. this.dataSet2 = new System.Data.DataSet();
  299. this.dataTable6 = new System.Data.DataTable();
  300. this.dataTable7 = new System.Data.DataTable();
  301. this.dataTable8 = new System.Data.DataTable();
  302. this.dataTable9 = new System.Data.DataTable();
  303. this.dataTable10 = new System.Data.DataTable();
  304. this.dataTable11 = new System.Data.DataTable();
  305. this.panel18 = new System.Windows.Forms.Panel();
  306. this.CHKISALL_LOG = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  307. this.btnDeleteSample_LOG = new System.Windows.Forms.Button();
  308. this.ultraPOSITION_LOG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  309. this.ultraLabel21 = new Infragistics.Win.Misc.UltraLabel();
  310. this.btnAddSample_LOG = new System.Windows.Forms.Button();
  311. this.ultraPIPE_NO_LOG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  312. this.ultraLabel22 = new Infragistics.Win.Misc.UltraLabel();
  313. this.ultraBATCH_NO_LOG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  314. this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
  315. this.ultraGroupBox8 = new Infragistics.Win.Misc.UltraGroupBox();
  316. this.ultraGrid8 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  317. this.panel19 = new System.Windows.Forms.Panel();
  318. this.txtBATCH_MIN_LOG = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  319. this.ultraLabel46 = new Infragistics.Win.Misc.UltraLabel();
  320. this.txtPIPE_NUM_LOG = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  321. this.ultraLabel24 = new Infragistics.Win.Misc.UltraLabel();
  322. this.btnCancel_LOG = new System.Windows.Forms.Button();
  323. this.btnAuto_LOG = new System.Windows.Forms.Button();
  324. this.btnConfirm_LOG = new System.Windows.Forms.Button();
  325. this.ultraEND_PIPE_NO_LOG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  326. this.ultraLabel25 = new Infragistics.Win.Misc.UltraLabel();
  327. this.ultraSTART_PIPE_NO_LOG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  328. this.ultraLabel26 = new Infragistics.Win.Misc.UltraLabel();
  329. this.splitContainer4 = new System.Windows.Forms.SplitContainer();
  330. this.ultraGroupBox9 = new Infragistics.Win.Misc.UltraGroupBox();
  331. this.ultraGrid10 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  332. this.ultraGroupBox13 = new Infragistics.Win.Misc.UltraGroupBox();
  333. this.CHKISAllSampleReq_LOG = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  334. this.btnFindSampleReq_LOG = new System.Windows.Forms.Button();
  335. this.ultraGrid11 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  336. this.ultraGroupBox10 = new Infragistics.Win.Misc.UltraGroupBox();
  337. this.ultraGrid7 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  338. this.panel20 = new System.Windows.Forms.Panel();
  339. this.ultraGX_LOG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  340. this.ultraLabel27 = new Infragistics.Win.Misc.UltraLabel();
  341. this.CHKISVALID_LOG = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  342. this.ultraGroupBox11 = new Infragistics.Win.Misc.UltraGroupBox();
  343. this.panel21 = new System.Windows.Forms.Panel();
  344. this.ultraTextEditor4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  345. this.txtSAMPLE_CLASS = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  346. this.ultraLabel43 = new Infragistics.Win.Misc.UltraLabel();
  347. this.txtSAMPLE_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  348. this.ultraLabel44 = new Infragistics.Win.Misc.UltraLabel();
  349. this.txtSAMPLE_TIME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  350. this.ultraLabel45 = new Infragistics.Win.Misc.UltraLabel();
  351. this.txtBATCH_CLASS = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  352. this.ultraLabel42 = new Infragistics.Win.Misc.UltraLabel();
  353. this.txtBATCH_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  354. this.ultraLabel41 = new Infragistics.Win.Misc.UltraLabel();
  355. this.txtBATCH_TIME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  356. this.ultraLabel40 = new Infragistics.Win.Misc.UltraLabel();
  357. this.ultraTextEditor5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  358. this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  359. this.ultraLabel28 = new Infragistics.Win.Misc.UltraLabel();
  360. this.ultraTextEditor7 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  361. this.ultraLabel29 = new Infragistics.Win.Misc.UltraLabel();
  362. this.ultraLabel30 = new Infragistics.Win.Misc.UltraLabel();
  363. this.ultraLabel31 = new Infragistics.Win.Misc.UltraLabel();
  364. this.txtBATCH_MAX_LOG = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  365. this.ultraLabel32 = new Infragistics.Win.Misc.UltraLabel();
  366. this.ultraTextEditor9 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  367. this.ultraLabel33 = new Infragistics.Win.Misc.UltraLabel();
  368. this.ultraTextEditor10 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  369. this.ultraTextEditor11 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  370. this.ultraLabel34 = new Infragistics.Win.Misc.UltraLabel();
  371. this.ultraLabel35 = new Infragistics.Win.Misc.UltraLabel();
  372. this.ultraTextEditor12 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  373. this.ultraLabel36 = new Infragistics.Win.Misc.UltraLabel();
  374. this.ultraTextEditor13 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  375. this.ultraTextEditor14 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  376. this.ultraLabel37 = new Infragistics.Win.Misc.UltraLabel();
  377. this.ultraLabel38 = new Infragistics.Win.Misc.UltraLabel();
  378. this.ultraTextEditor15 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  379. this.ultraLabel39 = new Infragistics.Win.Misc.UltraLabel();
  380. this.ultraGroupBox12 = new Infragistics.Win.Misc.UltraGroupBox();
  381. this.ultraGrid6 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  382. this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  383. this.panel1 = new System.Windows.Forms.Panel();
  384. this.panel3 = new System.Windows.Forms.Panel();
  385. this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  386. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  387. this.panel2 = new System.Windows.Forms.Panel();
  388. this.chkLOT_NO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  389. this.chkJUDGE_STOVE_NO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  390. this.txtQueryJUDGE_STOVE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  391. this.txtQueryLOT_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  392. this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
  393. this.dateEnd = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  394. this.chkCONSIGN_TIME = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  395. this.dateBegin = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  396. this.ultraTabSharedControlsPage2 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  397. this.ultraTabControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  398. this.btnSampleSeq = new System.Windows.Forms.Button();
  399. this.ultraTabPageControl1.SuspendLayout();
  400. this.panel4.SuspendLayout();
  401. this.panel5.SuspendLayout();
  402. this.panel7.SuspendLayout();
  403. this.panel8.SuspendLayout();
  404. this.panel10.SuspendLayout();
  405. this.splitContainer1.Panel1.SuspendLayout();
  406. this.splitContainer1.Panel2.SuspendLayout();
  407. this.splitContainer1.SuspendLayout();
  408. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).BeginInit();
  409. this.ultraGroupBox5.SuspendLayout();
  410. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
  411. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  412. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  413. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  414. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
  415. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
  416. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
  417. this.panel11.SuspendLayout();
  418. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MIN)).BeginInit();
  419. ((System.ComponentModel.ISupportInitialize)(this.txtPIPE_NUM)).BeginInit();
  420. ((System.ComponentModel.ISupportInitialize)(this.ultraEND_PIPE_NO)).BeginInit();
  421. ((System.ComponentModel.ISupportInitialize)(this.ultraSTART_PIPE_NO)).BeginInit();
  422. this.splitContainer2.Panel1.SuspendLayout();
  423. this.splitContainer2.Panel2.SuspendLayout();
  424. this.splitContainer2.SuspendLayout();
  425. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
  426. this.ultraGroupBox4.SuspendLayout();
  427. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
  428. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).BeginInit();
  429. this.ultraGroupBox6.SuspendLayout();
  430. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).BeginInit();
  431. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
  432. this.ultraGroupBox3.SuspendLayout();
  433. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
  434. this.panel9.SuspendLayout();
  435. ((System.ComponentModel.ISupportInitialize)(this.ultraGX)).BeginInit();
  436. ((System.ComponentModel.ISupportInitialize)(this.CHKISVALID)).BeginInit();
  437. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
  438. this.ultraGroupBox2.SuspendLayout();
  439. this.panel6.SuspendLayout();
  440. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).BeginInit();
  441. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
  442. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
  443. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
  444. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MAX)).BeginInit();
  445. ((System.ComponentModel.ISupportInitialize)(this.txtCONSIGN_NAME)).BeginInit();
  446. ((System.ComponentModel.ISupportInitialize)(this.txtCONSIGN_TIME)).BeginInit();
  447. ((System.ComponentModel.ISupportInitialize)(this.txtSTEEL_NO)).BeginInit();
  448. ((System.ComponentModel.ISupportInitialize)(this.txtPRODUCT_STD)).BeginInit();
  449. ((System.ComponentModel.ISupportInitialize)(this.txtSTEEL_GRADE)).BeginInit();
  450. ((System.ComponentModel.ISupportInitialize)(this.txtHEAT_NO)).BeginInit();
  451. ((System.ComponentModel.ISupportInitialize)(this.txtCHECK_NO)).BeginInit();
  452. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  453. this.ultraGroupBox1.SuspendLayout();
  454. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  455. this.ultraTabPageControl3.SuspendLayout();
  456. this.panel13.SuspendLayout();
  457. this.panel14.SuspendLayout();
  458. this.panel15.SuspendLayout();
  459. this.panel16.SuspendLayout();
  460. this.panel17.SuspendLayout();
  461. this.splitContainer3.Panel1.SuspendLayout();
  462. this.splitContainer3.Panel2.SuspendLayout();
  463. this.splitContainer3.SuspendLayout();
  464. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox7)).BeginInit();
  465. this.ultraGroupBox7.SuspendLayout();
  466. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid9)).BeginInit();
  467. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
  468. ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
  469. ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).BeginInit();
  470. ((System.ComponentModel.ISupportInitialize)(this.dataTable8)).BeginInit();
  471. ((System.ComponentModel.ISupportInitialize)(this.dataTable9)).BeginInit();
  472. ((System.ComponentModel.ISupportInitialize)(this.dataTable10)).BeginInit();
  473. ((System.ComponentModel.ISupportInitialize)(this.dataTable11)).BeginInit();
  474. this.panel18.SuspendLayout();
  475. ((System.ComponentModel.ISupportInitialize)(this.CHKISALL_LOG)).BeginInit();
  476. ((System.ComponentModel.ISupportInitialize)(this.ultraPOSITION_LOG)).BeginInit();
  477. ((System.ComponentModel.ISupportInitialize)(this.ultraPIPE_NO_LOG)).BeginInit();
  478. ((System.ComponentModel.ISupportInitialize)(this.ultraBATCH_NO_LOG)).BeginInit();
  479. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox8)).BeginInit();
  480. this.ultraGroupBox8.SuspendLayout();
  481. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid8)).BeginInit();
  482. this.panel19.SuspendLayout();
  483. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MIN_LOG)).BeginInit();
  484. ((System.ComponentModel.ISupportInitialize)(this.txtPIPE_NUM_LOG)).BeginInit();
  485. ((System.ComponentModel.ISupportInitialize)(this.ultraEND_PIPE_NO_LOG)).BeginInit();
  486. ((System.ComponentModel.ISupportInitialize)(this.ultraSTART_PIPE_NO_LOG)).BeginInit();
  487. this.splitContainer4.Panel1.SuspendLayout();
  488. this.splitContainer4.Panel2.SuspendLayout();
  489. this.splitContainer4.SuspendLayout();
  490. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox9)).BeginInit();
  491. this.ultraGroupBox9.SuspendLayout();
  492. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid10)).BeginInit();
  493. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox13)).BeginInit();
  494. this.ultraGroupBox13.SuspendLayout();
  495. ((System.ComponentModel.ISupportInitialize)(this.CHKISAllSampleReq_LOG)).BeginInit();
  496. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid11)).BeginInit();
  497. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox10)).BeginInit();
  498. this.ultraGroupBox10.SuspendLayout();
  499. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).BeginInit();
  500. this.panel20.SuspendLayout();
  501. ((System.ComponentModel.ISupportInitialize)(this.ultraGX_LOG)).BeginInit();
  502. ((System.ComponentModel.ISupportInitialize)(this.CHKISVALID_LOG)).BeginInit();
  503. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox11)).BeginInit();
  504. this.ultraGroupBox11.SuspendLayout();
  505. this.panel21.SuspendLayout();
  506. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).BeginInit();
  507. ((System.ComponentModel.ISupportInitialize)(this.txtSAMPLE_CLASS)).BeginInit();
  508. ((System.ComponentModel.ISupportInitialize)(this.txtSAMPLE_NAME)).BeginInit();
  509. ((System.ComponentModel.ISupportInitialize)(this.txtSAMPLE_TIME)).BeginInit();
  510. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_CLASS)).BeginInit();
  511. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_NAME)).BeginInit();
  512. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_TIME)).BeginInit();
  513. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).BeginInit();
  514. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
  515. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).BeginInit();
  516. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MAX_LOG)).BeginInit();
  517. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).BeginInit();
  518. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).BeginInit();
  519. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).BeginInit();
  520. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).BeginInit();
  521. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).BeginInit();
  522. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).BeginInit();
  523. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).BeginInit();
  524. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox12)).BeginInit();
  525. this.ultraGroupBox12.SuspendLayout();
  526. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid6)).BeginInit();
  527. this.panel1.SuspendLayout();
  528. this.panel3.SuspendLayout();
  529. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
  530. this.ultraTabControl1.SuspendLayout();
  531. this.panel2.SuspendLayout();
  532. ((System.ComponentModel.ISupportInitialize)(this.chkLOT_NO)).BeginInit();
  533. ((System.ComponentModel.ISupportInitialize)(this.chkJUDGE_STOVE_NO)).BeginInit();
  534. ((System.ComponentModel.ISupportInitialize)(this.txtQueryJUDGE_STOVE_NO)).BeginInit();
  535. ((System.ComponentModel.ISupportInitialize)(this.txtQueryLOT_NO)).BeginInit();
  536. ((System.ComponentModel.ISupportInitialize)(this.dateEnd)).BeginInit();
  537. ((System.ComponentModel.ISupportInitialize)(this.chkCONSIGN_TIME)).BeginInit();
  538. ((System.ComponentModel.ISupportInitialize)(this.dateBegin)).BeginInit();
  539. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).BeginInit();
  540. this.SuspendLayout();
  541. //
  542. // ultraTabPageControl1
  543. //
  544. this.ultraTabPageControl1.Controls.Add(this.panel4);
  545. this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
  546. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  547. this.ultraTabPageControl1.Size = new System.Drawing.Size(1322, 438);
  548. //
  549. // panel4
  550. //
  551. this.panel4.Controls.Add(this.panel5);
  552. this.panel4.Controls.Add(this.ultraGroupBox1);
  553. this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
  554. this.panel4.Location = new System.Drawing.Point(0, 0);
  555. this.panel4.Name = "panel4";
  556. this.panel4.Size = new System.Drawing.Size(1322, 438);
  557. this.panel4.TabIndex = 21;
  558. //
  559. // panel5
  560. //
  561. this.panel5.Controls.Add(this.panel7);
  562. this.panel5.Controls.Add(this.ultraGroupBox2);
  563. this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
  564. this.panel5.Location = new System.Drawing.Point(180, 0);
  565. this.panel5.Name = "panel5";
  566. this.panel5.Size = new System.Drawing.Size(1142, 438);
  567. this.panel5.TabIndex = 20;
  568. //
  569. // panel7
  570. //
  571. this.panel7.Controls.Add(this.panel8);
  572. this.panel7.Controls.Add(this.ultraGroupBox3);
  573. this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
  574. this.panel7.Location = new System.Drawing.Point(0, 106);
  575. this.panel7.Name = "panel7";
  576. this.panel7.Size = new System.Drawing.Size(1142, 332);
  577. this.panel7.TabIndex = 1;
  578. //
  579. // panel8
  580. //
  581. this.panel8.Controls.Add(this.panel10);
  582. this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
  583. this.panel8.Location = new System.Drawing.Point(143, 0);
  584. this.panel8.Name = "panel8";
  585. this.panel8.Size = new System.Drawing.Size(999, 332);
  586. this.panel8.TabIndex = 21;
  587. //
  588. // panel10
  589. //
  590. this.panel10.Controls.Add(this.splitContainer1);
  591. this.panel10.Dock = System.Windows.Forms.DockStyle.Fill;
  592. this.panel10.Location = new System.Drawing.Point(0, 0);
  593. this.panel10.Name = "panel10";
  594. this.panel10.Size = new System.Drawing.Size(999, 332);
  595. this.panel10.TabIndex = 22;
  596. //
  597. // splitContainer1
  598. //
  599. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  600. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  601. this.splitContainer1.Name = "splitContainer1";
  602. //
  603. // splitContainer1.Panel1
  604. //
  605. this.splitContainer1.Panel1.Controls.Add(this.ultraGroupBox5);
  606. //
  607. // splitContainer1.Panel2
  608. //
  609. this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
  610. this.splitContainer1.Size = new System.Drawing.Size(999, 332);
  611. this.splitContainer1.SplitterDistance = 280;
  612. this.splitContainer1.SplitterWidth = 1;
  613. this.splitContainer1.TabIndex = 0;
  614. //
  615. // ultraGroupBox5
  616. //
  617. this.ultraGroupBox5.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  618. this.ultraGroupBox5.Controls.Add(this.ultraGrid3);
  619. this.ultraGroupBox5.Controls.Add(this.panel11);
  620. this.ultraGroupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
  621. this.ultraGroupBox5.Location = new System.Drawing.Point(0, 0);
  622. this.ultraGroupBox5.Name = "ultraGroupBox5";
  623. this.ultraGroupBox5.Size = new System.Drawing.Size(280, 332);
  624. this.ultraGroupBox5.TabIndex = 23;
  625. this.ultraGroupBox5.Text = "性能批号";
  626. //
  627. // ultraGrid3
  628. //
  629. this.ultraGrid3.DataMember = "Table3";
  630. this.ultraGrid3.DataSource = this.dataSet1;
  631. appearance63.BackColor = System.Drawing.SystemColors.Window;
  632. appearance63.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  633. this.ultraGrid3.DisplayLayout.Appearance = appearance63;
  634. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  635. this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  636. this.ultraGrid3.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  637. this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  638. appearance92.BackColor = System.Drawing.SystemColors.ActiveBorder;
  639. appearance92.BackColor2 = System.Drawing.SystemColors.ControlDark;
  640. appearance92.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  641. appearance92.BorderColor = System.Drawing.SystemColors.Window;
  642. this.ultraGrid3.DisplayLayout.GroupByBox.Appearance = appearance92;
  643. appearance169.ForeColor = System.Drawing.SystemColors.GrayText;
  644. this.ultraGrid3.DisplayLayout.GroupByBox.BandLabelAppearance = appearance169;
  645. this.ultraGrid3.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  646. appearance170.BackColor = System.Drawing.SystemColors.ControlLightLight;
  647. appearance170.BackColor2 = System.Drawing.SystemColors.Control;
  648. appearance170.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  649. appearance170.ForeColor = System.Drawing.SystemColors.GrayText;
  650. this.ultraGrid3.DisplayLayout.GroupByBox.PromptAppearance = appearance170;
  651. this.ultraGrid3.DisplayLayout.MaxColScrollRegions = 1;
  652. this.ultraGrid3.DisplayLayout.MaxRowScrollRegions = 1;
  653. appearance171.BackColor = System.Drawing.SystemColors.Window;
  654. appearance171.ForeColor = System.Drawing.SystemColors.ControlText;
  655. this.ultraGrid3.DisplayLayout.Override.ActiveCellAppearance = appearance171;
  656. appearance172.BackColor = System.Drawing.SystemColors.Highlight;
  657. appearance172.ForeColor = System.Drawing.SystemColors.HighlightText;
  658. this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance172;
  659. this.ultraGrid3.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  660. this.ultraGrid3.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  661. this.ultraGrid3.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  662. this.ultraGrid3.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  663. appearance173.BackColor = System.Drawing.SystemColors.Window;
  664. this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance173;
  665. appearance174.BorderColor = System.Drawing.Color.Silver;
  666. appearance174.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  667. this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance174;
  668. this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  669. this.ultraGrid3.DisplayLayout.Override.CellPadding = 0;
  670. this.ultraGrid3.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  671. appearance175.BackColor = System.Drawing.SystemColors.Control;
  672. appearance175.BackColor2 = System.Drawing.SystemColors.ControlDark;
  673. appearance175.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  674. appearance175.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  675. appearance175.BorderColor = System.Drawing.SystemColors.Window;
  676. this.ultraGrid3.DisplayLayout.Override.GroupByRowAppearance = appearance175;
  677. appearance176.TextHAlignAsString = "Left";
  678. this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance176;
  679. this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  680. this.ultraGrid3.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  681. appearance177.BackColor = System.Drawing.SystemColors.Window;
  682. appearance177.BorderColor = System.Drawing.Color.Silver;
  683. this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance177;
  684. this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  685. appearance178.BackColor = System.Drawing.SystemColors.ControlLight;
  686. this.ultraGrid3.DisplayLayout.Override.TemplateAddRowAppearance = appearance178;
  687. this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  688. this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  689. this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  690. this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
  691. this.ultraGrid3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  692. this.ultraGrid3.Location = new System.Drawing.Point(1, 107);
  693. this.ultraGrid3.Name = "ultraGrid3";
  694. this.ultraGrid3.Size = new System.Drawing.Size(278, 224);
  695. this.ultraGrid3.TabIndex = 28;
  696. this.ultraGrid3.Text = "性能批号队列";
  697. this.ultraGrid3.AfterRowActivate += new System.EventHandler(this.ultraGrid3_AfterRowActivate);
  698. //
  699. // dataSet1
  700. //
  701. this.dataSet1.DataSetName = "NewDataSet";
  702. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  703. this.dataTable1,
  704. this.dataTable2,
  705. this.dataTable3,
  706. this.dataTable4,
  707. this.dataTable5});
  708. //
  709. // dataTable1
  710. //
  711. this.dataTable1.TableName = "Table1";
  712. //
  713. // dataTable2
  714. //
  715. this.dataTable2.TableName = "Table2";
  716. //
  717. // dataTable3
  718. //
  719. this.dataTable3.TableName = "Table3";
  720. //
  721. // dataTable4
  722. //
  723. this.dataTable4.TableName = "Table4";
  724. //
  725. // dataTable5
  726. //
  727. this.dataTable5.TableName = "Table5";
  728. //
  729. // panel11
  730. //
  731. this.panel11.Controls.Add(this.txtBATCH_MIN);
  732. this.panel11.Controls.Add(this.ultraLabel47);
  733. this.panel11.Controls.Add(this.txtPIPE_NUM);
  734. this.panel11.Controls.Add(this.ultraLabel12);
  735. this.panel11.Controls.Add(this.btnCancel);
  736. this.panel11.Controls.Add(this.btnAuto);
  737. this.panel11.Controls.Add(this.btnConfirm);
  738. this.panel11.Controls.Add(this.ultraEND_PIPE_NO);
  739. this.panel11.Controls.Add(this.ultraLabel15);
  740. this.panel11.Controls.Add(this.ultraSTART_PIPE_NO);
  741. this.panel11.Controls.Add(this.ultraLabel18);
  742. this.panel11.Dock = System.Windows.Forms.DockStyle.Top;
  743. this.panel11.Location = new System.Drawing.Point(1, 18);
  744. this.panel11.Name = "panel11";
  745. this.panel11.Size = new System.Drawing.Size(278, 89);
  746. this.panel11.TabIndex = 23;
  747. //
  748. // txtBATCH_MIN
  749. //
  750. this.txtBATCH_MIN.Location = new System.Drawing.Point(202, 9);
  751. this.txtBATCH_MIN.MaxLength = 100;
  752. this.txtBATCH_MIN.Name = "txtBATCH_MIN";
  753. this.txtBATCH_MIN.ReadOnly = true;
  754. this.txtBATCH_MIN.Size = new System.Drawing.Size(70, 21);
  755. this.txtBATCH_MIN.TabIndex = 225;
  756. //
  757. // ultraLabel47
  758. //
  759. appearance179.TextHAlignAsString = "Right";
  760. appearance179.TextVAlignAsString = "Middle";
  761. this.ultraLabel47.Appearance = appearance179;
  762. this.ultraLabel47.AutoSize = true;
  763. this.ultraLabel47.Location = new System.Drawing.Point(144, 12);
  764. this.ultraLabel47.Name = "ultraLabel47";
  765. this.ultraLabel47.Size = new System.Drawing.Size(54, 16);
  766. this.ultraLabel47.TabIndex = 226;
  767. this.ultraLabel47.Text = "批数参考";
  768. //
  769. // txtPIPE_NUM
  770. //
  771. this.txtPIPE_NUM.Location = new System.Drawing.Point(70, 9);
  772. this.txtPIPE_NUM.MaxLength = 100;
  773. this.txtPIPE_NUM.Name = "txtPIPE_NUM";
  774. this.txtPIPE_NUM.ReadOnly = true;
  775. this.txtPIPE_NUM.Size = new System.Drawing.Size(70, 21);
  776. this.txtPIPE_NUM.TabIndex = 221;
  777. //
  778. // ultraLabel12
  779. //
  780. appearance180.TextHAlignAsString = "Right";
  781. appearance180.TextVAlignAsString = "Middle";
  782. this.ultraLabel12.Appearance = appearance180;
  783. this.ultraLabel12.AutoSize = true;
  784. this.ultraLabel12.Location = new System.Drawing.Point(12, 12);
  785. this.ultraLabel12.Name = "ultraLabel12";
  786. this.ultraLabel12.Size = new System.Drawing.Size(54, 16);
  787. this.ultraLabel12.TabIndex = 222;
  788. this.ultraLabel12.Text = "有效管数";
  789. //
  790. // btnCancel
  791. //
  792. this.btnCancel.Location = new System.Drawing.Point(191, 61);
  793. this.btnCancel.Name = "btnCancel";
  794. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  795. this.btnCancel.TabIndex = 220;
  796. this.btnCancel.Text = "取消此批";
  797. this.btnCancel.UseVisualStyleBackColor = true;
  798. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  799. //
  800. // btnAuto
  801. //
  802. this.btnAuto.Location = new System.Drawing.Point(108, 61);
  803. this.btnAuto.Name = "btnAuto";
  804. this.btnAuto.Size = new System.Drawing.Size(75, 23);
  805. this.btnAuto.TabIndex = 219;
  806. this.btnAuto.Text = "自动组批";
  807. this.btnAuto.UseVisualStyleBackColor = true;
  808. this.btnAuto.Click += new System.EventHandler(this.btnAuto_Click);
  809. //
  810. // btnConfirm
  811. //
  812. this.btnConfirm.Location = new System.Drawing.Point(25, 61);
  813. this.btnConfirm.Name = "btnConfirm";
  814. this.btnConfirm.Size = new System.Drawing.Size(75, 23);
  815. this.btnConfirm.TabIndex = 218;
  816. this.btnConfirm.Text = "人工组批";
  817. this.btnConfirm.UseVisualStyleBackColor = true;
  818. this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
  819. //
  820. // ultraEND_PIPE_NO
  821. //
  822. this.ultraEND_PIPE_NO.Location = new System.Drawing.Point(202, 34);
  823. this.ultraEND_PIPE_NO.Name = "ultraEND_PIPE_NO";
  824. this.ultraEND_PIPE_NO.Size = new System.Drawing.Size(70, 21);
  825. this.ultraEND_PIPE_NO.TabIndex = 217;
  826. //
  827. // ultraLabel15
  828. //
  829. appearance181.TextHAlignAsString = "Right";
  830. appearance181.TextVAlignAsString = "Middle";
  831. this.ultraLabel15.Appearance = appearance181;
  832. this.ultraLabel15.AutoSize = true;
  833. this.ultraLabel15.Location = new System.Drawing.Point(144, 37);
  834. this.ultraLabel15.Name = "ultraLabel15";
  835. this.ultraLabel15.Size = new System.Drawing.Size(54, 16);
  836. this.ultraLabel15.TabIndex = 216;
  837. this.ultraLabel15.Text = "结束管号";
  838. //
  839. // ultraSTART_PIPE_NO
  840. //
  841. this.ultraSTART_PIPE_NO.Location = new System.Drawing.Point(70, 34);
  842. this.ultraSTART_PIPE_NO.Name = "ultraSTART_PIPE_NO";
  843. this.ultraSTART_PIPE_NO.ReadOnly = true;
  844. this.ultraSTART_PIPE_NO.Size = new System.Drawing.Size(70, 21);
  845. this.ultraSTART_PIPE_NO.TabIndex = 215;
  846. this.ultraSTART_PIPE_NO.TextChanged += new System.EventHandler(this.ultraSTART_PIPE_NO_TextChanged);
  847. //
  848. // ultraLabel18
  849. //
  850. appearance182.TextHAlignAsString = "Right";
  851. appearance182.TextVAlignAsString = "Middle";
  852. this.ultraLabel18.Appearance = appearance182;
  853. this.ultraLabel18.AutoSize = true;
  854. this.ultraLabel18.Location = new System.Drawing.Point(12, 37);
  855. this.ultraLabel18.Name = "ultraLabel18";
  856. this.ultraLabel18.Size = new System.Drawing.Size(54, 16);
  857. this.ultraLabel18.TabIndex = 214;
  858. this.ultraLabel18.Text = "起始管号";
  859. //
  860. // splitContainer2
  861. //
  862. this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
  863. this.splitContainer2.Location = new System.Drawing.Point(0, 0);
  864. this.splitContainer2.Name = "splitContainer2";
  865. this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
  866. //
  867. // splitContainer2.Panel1
  868. //
  869. this.splitContainer2.Panel1.Controls.Add(this.ultraGroupBox4);
  870. this.splitContainer2.Panel1Collapsed = true;
  871. //
  872. // splitContainer2.Panel2
  873. //
  874. this.splitContainer2.Panel2.Controls.Add(this.ultraGroupBox6);
  875. this.splitContainer2.Size = new System.Drawing.Size(718, 332);
  876. this.splitContainer2.SplitterDistance = 125;
  877. this.splitContainer2.SplitterWidth = 1;
  878. this.splitContainer2.TabIndex = 0;
  879. //
  880. // ultraGroupBox4
  881. //
  882. this.ultraGroupBox4.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  883. this.ultraGroupBox4.Controls.Add(this.ultraGrid4);
  884. this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
  885. this.ultraGroupBox4.Location = new System.Drawing.Point(0, 0);
  886. this.ultraGroupBox4.Name = "ultraGroupBox4";
  887. this.ultraGroupBox4.Size = new System.Drawing.Size(150, 125);
  888. this.ultraGroupBox4.TabIndex = 25;
  889. this.ultraGroupBox4.Text = "标准取样要求队列";
  890. //
  891. // ultraGrid4
  892. //
  893. this.ultraGrid4.DataMember = "Table4";
  894. this.ultraGrid4.DataSource = this.dataSet1;
  895. appearance65.BackColor = System.Drawing.SystemColors.Window;
  896. appearance65.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  897. this.ultraGrid4.DisplayLayout.Appearance = appearance65;
  898. ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  899. this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  900. this.ultraGrid4.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  901. this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  902. appearance66.BackColor = System.Drawing.SystemColors.ActiveBorder;
  903. appearance66.BackColor2 = System.Drawing.SystemColors.ControlDark;
  904. appearance66.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  905. appearance66.BorderColor = System.Drawing.SystemColors.Window;
  906. this.ultraGrid4.DisplayLayout.GroupByBox.Appearance = appearance66;
  907. appearance67.ForeColor = System.Drawing.SystemColors.GrayText;
  908. this.ultraGrid4.DisplayLayout.GroupByBox.BandLabelAppearance = appearance67;
  909. this.ultraGrid4.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  910. appearance68.BackColor = System.Drawing.SystemColors.ControlLightLight;
  911. appearance68.BackColor2 = System.Drawing.SystemColors.Control;
  912. appearance68.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  913. appearance68.ForeColor = System.Drawing.SystemColors.GrayText;
  914. this.ultraGrid4.DisplayLayout.GroupByBox.PromptAppearance = appearance68;
  915. this.ultraGrid4.DisplayLayout.MaxColScrollRegions = 1;
  916. this.ultraGrid4.DisplayLayout.MaxRowScrollRegions = 1;
  917. appearance69.BackColor = System.Drawing.SystemColors.Window;
  918. appearance69.ForeColor = System.Drawing.SystemColors.ControlText;
  919. this.ultraGrid4.DisplayLayout.Override.ActiveCellAppearance = appearance69;
  920. appearance70.BackColor = System.Drawing.SystemColors.Highlight;
  921. appearance70.ForeColor = System.Drawing.SystemColors.HighlightText;
  922. this.ultraGrid4.DisplayLayout.Override.ActiveRowAppearance = appearance70;
  923. this.ultraGrid4.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  924. this.ultraGrid4.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  925. this.ultraGrid4.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  926. this.ultraGrid4.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  927. appearance71.BackColor = System.Drawing.SystemColors.Window;
  928. this.ultraGrid4.DisplayLayout.Override.CardAreaAppearance = appearance71;
  929. appearance72.BorderColor = System.Drawing.Color.Silver;
  930. appearance72.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  931. this.ultraGrid4.DisplayLayout.Override.CellAppearance = appearance72;
  932. this.ultraGrid4.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  933. this.ultraGrid4.DisplayLayout.Override.CellPadding = 0;
  934. this.ultraGrid4.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  935. appearance73.BackColor = System.Drawing.SystemColors.Control;
  936. appearance73.BackColor2 = System.Drawing.SystemColors.ControlDark;
  937. appearance73.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  938. appearance73.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  939. appearance73.BorderColor = System.Drawing.SystemColors.Window;
  940. this.ultraGrid4.DisplayLayout.Override.GroupByRowAppearance = appearance73;
  941. appearance75.TextHAlignAsString = "Left";
  942. this.ultraGrid4.DisplayLayout.Override.HeaderAppearance = appearance75;
  943. this.ultraGrid4.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  944. this.ultraGrid4.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  945. appearance77.BackColor = System.Drawing.SystemColors.Window;
  946. appearance77.BorderColor = System.Drawing.Color.Silver;
  947. this.ultraGrid4.DisplayLayout.Override.RowAppearance = appearance77;
  948. this.ultraGrid4.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  949. appearance93.BackColor = System.Drawing.SystemColors.ControlLight;
  950. this.ultraGrid4.DisplayLayout.Override.TemplateAddRowAppearance = appearance93;
  951. this.ultraGrid4.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  952. this.ultraGrid4.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  953. this.ultraGrid4.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  954. this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
  955. this.ultraGrid4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  956. this.ultraGrid4.Location = new System.Drawing.Point(1, 18);
  957. this.ultraGrid4.Name = "ultraGrid4";
  958. this.ultraGrid4.Size = new System.Drawing.Size(148, 106);
  959. this.ultraGrid4.TabIndex = 27;
  960. this.ultraGrid4.Text = "取样要求队列";
  961. //
  962. // ultraGroupBox6
  963. //
  964. this.ultraGroupBox6.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  965. this.ultraGroupBox6.Controls.Add(this.btnFindSampleReq);
  966. this.ultraGroupBox6.Controls.Add(this.ultraGrid5);
  967. this.ultraGroupBox6.Dock = System.Windows.Forms.DockStyle.Fill;
  968. this.ultraGroupBox6.Location = new System.Drawing.Point(0, 0);
  969. this.ultraGroupBox6.Name = "ultraGroupBox6";
  970. this.ultraGroupBox6.Size = new System.Drawing.Size(718, 332);
  971. this.ultraGroupBox6.TabIndex = 26;
  972. this.ultraGroupBox6.Text = "参考取样要求队列";
  973. //
  974. // btnFindSampleReq
  975. //
  976. this.btnFindSampleReq.Location = new System.Drawing.Point(128, -3);
  977. this.btnFindSampleReq.Name = "btnFindSampleReq";
  978. this.btnFindSampleReq.Size = new System.Drawing.Size(112, 23);
  979. this.btnFindSampleReq.TabIndex = 219;
  980. this.btnFindSampleReq.Text = "查看标准取样要求";
  981. this.btnFindSampleReq.UseVisualStyleBackColor = true;
  982. this.btnFindSampleReq.Click += new System.EventHandler(this.btnFindSampleReq_Click);
  983. //
  984. // ultraGrid5
  985. //
  986. this.ultraGrid5.DataMember = "Table5";
  987. this.ultraGrid5.DataSource = this.dataSet1;
  988. appearance94.BackColor = System.Drawing.SystemColors.Window;
  989. appearance94.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  990. this.ultraGrid5.DisplayLayout.Appearance = appearance94;
  991. ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  992. this.ultraGrid5.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  993. this.ultraGrid5.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  994. this.ultraGrid5.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  995. appearance95.BackColor = System.Drawing.SystemColors.ActiveBorder;
  996. appearance95.BackColor2 = System.Drawing.SystemColors.ControlDark;
  997. appearance95.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  998. appearance95.BorderColor = System.Drawing.SystemColors.Window;
  999. this.ultraGrid5.DisplayLayout.GroupByBox.Appearance = appearance95;
  1000. appearance97.ForeColor = System.Drawing.SystemColors.GrayText;
  1001. this.ultraGrid5.DisplayLayout.GroupByBox.BandLabelAppearance = appearance97;
  1002. this.ultraGrid5.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1003. appearance98.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1004. appearance98.BackColor2 = System.Drawing.SystemColors.Control;
  1005. appearance98.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1006. appearance98.ForeColor = System.Drawing.SystemColors.GrayText;
  1007. this.ultraGrid5.DisplayLayout.GroupByBox.PromptAppearance = appearance98;
  1008. this.ultraGrid5.DisplayLayout.MaxColScrollRegions = 1;
  1009. this.ultraGrid5.DisplayLayout.MaxRowScrollRegions = 1;
  1010. appearance99.BackColor = System.Drawing.SystemColors.Window;
  1011. appearance99.ForeColor = System.Drawing.SystemColors.ControlText;
  1012. this.ultraGrid5.DisplayLayout.Override.ActiveCellAppearance = appearance99;
  1013. appearance100.BackColor = System.Drawing.SystemColors.Highlight;
  1014. appearance100.ForeColor = System.Drawing.SystemColors.HighlightText;
  1015. this.ultraGrid5.DisplayLayout.Override.ActiveRowAppearance = appearance100;
  1016. this.ultraGrid5.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  1017. this.ultraGrid5.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  1018. this.ultraGrid5.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1019. this.ultraGrid5.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1020. appearance101.BackColor = System.Drawing.SystemColors.Window;
  1021. this.ultraGrid5.DisplayLayout.Override.CardAreaAppearance = appearance101;
  1022. appearance102.BorderColor = System.Drawing.Color.Silver;
  1023. appearance102.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1024. this.ultraGrid5.DisplayLayout.Override.CellAppearance = appearance102;
  1025. this.ultraGrid5.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1026. this.ultraGrid5.DisplayLayout.Override.CellPadding = 0;
  1027. this.ultraGrid5.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  1028. appearance104.BackColor = System.Drawing.SystemColors.Control;
  1029. appearance104.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1030. appearance104.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1031. appearance104.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1032. appearance104.BorderColor = System.Drawing.SystemColors.Window;
  1033. this.ultraGrid5.DisplayLayout.Override.GroupByRowAppearance = appearance104;
  1034. appearance105.TextHAlignAsString = "Left";
  1035. this.ultraGrid5.DisplayLayout.Override.HeaderAppearance = appearance105;
  1036. this.ultraGrid5.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1037. this.ultraGrid5.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1038. appearance106.BackColor = System.Drawing.SystemColors.Window;
  1039. appearance106.BorderColor = System.Drawing.Color.Silver;
  1040. this.ultraGrid5.DisplayLayout.Override.RowAppearance = appearance106;
  1041. this.ultraGrid5.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1042. appearance108.BackColor = System.Drawing.SystemColors.ControlLight;
  1043. this.ultraGrid5.DisplayLayout.Override.TemplateAddRowAppearance = appearance108;
  1044. this.ultraGrid5.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1045. this.ultraGrid5.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1046. this.ultraGrid5.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1047. this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
  1048. this.ultraGrid5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1049. this.ultraGrid5.Location = new System.Drawing.Point(1, 18);
  1050. this.ultraGrid5.Name = "ultraGrid5";
  1051. this.ultraGrid5.Size = new System.Drawing.Size(716, 313);
  1052. this.ultraGrid5.TabIndex = 27;
  1053. this.ultraGrid5.Text = "取样要求队列";
  1054. //
  1055. // ultraGroupBox3
  1056. //
  1057. this.ultraGroupBox3.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  1058. this.ultraGroupBox3.Controls.Add(this.ultraGrid2);
  1059. this.ultraGroupBox3.Controls.Add(this.panel9);
  1060. this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Left;
  1061. this.ultraGroupBox3.Location = new System.Drawing.Point(0, 0);
  1062. this.ultraGroupBox3.Name = "ultraGroupBox3";
  1063. this.ultraGroupBox3.Size = new System.Drawing.Size(143, 332);
  1064. this.ultraGroupBox3.TabIndex = 20;
  1065. this.ultraGroupBox3.Text = "管号队列";
  1066. //
  1067. // ultraGrid2
  1068. //
  1069. this.ultraGrid2.DataMember = "Table2";
  1070. this.ultraGrid2.DataSource = this.dataSet1;
  1071. appearance207.BackColor = System.Drawing.SystemColors.Window;
  1072. appearance207.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1073. this.ultraGrid2.DisplayLayout.Appearance = appearance207;
  1074. ultraGridBand4.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  1075. this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
  1076. this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1077. this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1078. appearance208.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1079. appearance208.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1080. appearance208.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1081. appearance208.BorderColor = System.Drawing.SystemColors.Window;
  1082. this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance208;
  1083. appearance209.ForeColor = System.Drawing.SystemColors.GrayText;
  1084. this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance209;
  1085. this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1086. appearance210.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1087. appearance210.BackColor2 = System.Drawing.SystemColors.Control;
  1088. appearance210.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1089. appearance210.ForeColor = System.Drawing.SystemColors.GrayText;
  1090. this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance210;
  1091. this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
  1092. this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
  1093. appearance211.BackColor = System.Drawing.SystemColors.Window;
  1094. appearance211.ForeColor = System.Drawing.SystemColors.ControlText;
  1095. this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance211;
  1096. appearance212.BackColor = System.Drawing.SystemColors.Highlight;
  1097. appearance212.ForeColor = System.Drawing.SystemColors.HighlightText;
  1098. this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance212;
  1099. this.ultraGrid2.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  1100. this.ultraGrid2.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  1101. this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1102. this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1103. appearance213.BackColor = System.Drawing.SystemColors.Window;
  1104. this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance213;
  1105. appearance214.BorderColor = System.Drawing.Color.Silver;
  1106. appearance214.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1107. this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance214;
  1108. this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1109. this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
  1110. this.ultraGrid2.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  1111. appearance215.BackColor = System.Drawing.SystemColors.Control;
  1112. appearance215.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1113. appearance215.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1114. appearance215.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1115. appearance215.BorderColor = System.Drawing.SystemColors.Window;
  1116. this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance215;
  1117. appearance216.TextHAlignAsString = "Left";
  1118. this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance216;
  1119. this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1120. this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1121. appearance217.BackColor = System.Drawing.SystemColors.Window;
  1122. appearance217.BorderColor = System.Drawing.Color.Silver;
  1123. this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance217;
  1124. this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1125. appearance218.BackColor = System.Drawing.SystemColors.ControlLight;
  1126. this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance218;
  1127. this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1128. this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1129. this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1130. this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
  1131. this.ultraGrid2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1132. this.ultraGrid2.Location = new System.Drawing.Point(1, 78);
  1133. this.ultraGrid2.Name = "ultraGrid2";
  1134. this.ultraGrid2.Size = new System.Drawing.Size(141, 253);
  1135. this.ultraGrid2.TabIndex = 29;
  1136. this.ultraGrid2.Text = "管号队列";
  1137. //
  1138. // panel9
  1139. //
  1140. this.panel9.Controls.Add(this.ultraGX);
  1141. this.panel9.Controls.Add(this.ultraLabel9);
  1142. this.panel9.Controls.Add(this.CHKISVALID);
  1143. this.panel9.Dock = System.Windows.Forms.DockStyle.Top;
  1144. this.panel9.Location = new System.Drawing.Point(1, 18);
  1145. this.panel9.Name = "panel9";
  1146. this.panel9.Size = new System.Drawing.Size(141, 60);
  1147. this.panel9.TabIndex = 28;
  1148. //
  1149. // ultraGX
  1150. //
  1151. this.ultraGX.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1152. this.ultraGX.Location = new System.Drawing.Point(41, 32);
  1153. this.ultraGX.Name = "ultraGX";
  1154. this.ultraGX.Size = new System.Drawing.Size(80, 21);
  1155. this.ultraGX.TabIndex = 219;
  1156. this.ultraGX.TextChanged += new System.EventHandler(this.ultraGX_TextChanged);
  1157. //
  1158. // ultraLabel9
  1159. //
  1160. appearance219.TextHAlignAsString = "Right";
  1161. appearance219.TextVAlignAsString = "Middle";
  1162. this.ultraLabel9.Appearance = appearance219;
  1163. this.ultraLabel9.AutoSize = true;
  1164. this.ultraLabel9.Location = new System.Drawing.Point(8, 35);
  1165. this.ultraLabel9.Name = "ultraLabel9";
  1166. this.ultraLabel9.Size = new System.Drawing.Size(29, 16);
  1167. this.ultraLabel9.TabIndex = 218;
  1168. this.ultraLabel9.Text = "工序";
  1169. //
  1170. // CHKISVALID
  1171. //
  1172. this.CHKISVALID.AutoSize = true;
  1173. this.CHKISVALID.Checked = true;
  1174. this.CHKISVALID.CheckState = System.Windows.Forms.CheckState.Checked;
  1175. this.CHKISVALID.Location = new System.Drawing.Point(33, 10);
  1176. this.CHKISVALID.Margin = new System.Windows.Forms.Padding(2);
  1177. this.CHKISVALID.Name = "CHKISVALID";
  1178. this.CHKISVALID.Size = new System.Drawing.Size(71, 19);
  1179. this.CHKISVALID.TabIndex = 111;
  1180. this.CHKISVALID.Text = "是否有效";
  1181. this.CHKISVALID.CheckedChanged += new System.EventHandler(this.CHKISALL_LOG_CheckedChanged);
  1182. //
  1183. // ultraGroupBox2
  1184. //
  1185. this.ultraGroupBox2.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  1186. this.ultraGroupBox2.Controls.Add(this.panel6);
  1187. this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
  1188. this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
  1189. this.ultraGroupBox2.Name = "ultraGroupBox2";
  1190. this.ultraGroupBox2.Size = new System.Drawing.Size(1142, 106);
  1191. this.ultraGroupBox2.TabIndex = 0;
  1192. this.ultraGroupBox2.Text = "基本信息";
  1193. //
  1194. // panel6
  1195. //
  1196. this.panel6.Controls.Add(this.ultraTextEditor22);
  1197. this.panel6.Controls.Add(this.ultraTextEditor1);
  1198. this.panel6.Controls.Add(this.ultraTextEditor2);
  1199. this.panel6.Controls.Add(this.ultraLabel13);
  1200. this.panel6.Controls.Add(this.ultraTextEditor3);
  1201. this.panel6.Controls.Add(this.ultraLabel14);
  1202. this.panel6.Controls.Add(this.ultraLabel17);
  1203. this.panel6.Controls.Add(this.ultraLabel7);
  1204. this.panel6.Controls.Add(this.txtBATCH_MAX);
  1205. this.panel6.Controls.Add(this.ultraLabel2);
  1206. this.panel6.Controls.Add(this.txtCONSIGN_NAME);
  1207. this.panel6.Controls.Add(this.ultraLabel10);
  1208. this.panel6.Controls.Add(this.txtCONSIGN_TIME);
  1209. this.panel6.Controls.Add(this.txtSTEEL_NO);
  1210. this.panel6.Controls.Add(this.ultraLabel11);
  1211. this.panel6.Controls.Add(this.ultraLabel3);
  1212. this.panel6.Controls.Add(this.txtPRODUCT_STD);
  1213. this.panel6.Controls.Add(this.ultraLabel6);
  1214. this.panel6.Controls.Add(this.txtSTEEL_GRADE);
  1215. this.panel6.Controls.Add(this.txtHEAT_NO);
  1216. this.panel6.Controls.Add(this.ultraLabel5);
  1217. this.panel6.Controls.Add(this.ultraLabel4);
  1218. this.panel6.Controls.Add(this.txtCHECK_NO);
  1219. this.panel6.Controls.Add(this.ultraLabel1);
  1220. this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
  1221. this.panel6.Location = new System.Drawing.Point(1, 18);
  1222. this.panel6.Name = "panel6";
  1223. this.panel6.Size = new System.Drawing.Size(1140, 87);
  1224. this.panel6.TabIndex = 24;
  1225. //
  1226. // ultraTextEditor22
  1227. //
  1228. this.ultraTextEditor22.Location = new System.Drawing.Point(648, 59);
  1229. this.ultraTextEditor22.MaxLength = 200;
  1230. this.ultraTextEditor22.Name = "ultraTextEditor22";
  1231. this.ultraTextEditor22.Size = new System.Drawing.Size(100, 21);
  1232. this.ultraTextEditor22.TabIndex = 154;
  1233. //
  1234. // ultraTextEditor1
  1235. //
  1236. this.ultraTextEditor1.Location = new System.Drawing.Point(242, 34);
  1237. this.ultraTextEditor1.MaxLength = 200;
  1238. this.ultraTextEditor1.Name = "ultraTextEditor1";
  1239. this.ultraTextEditor1.Size = new System.Drawing.Size(141, 21);
  1240. this.ultraTextEditor1.TabIndex = 153;
  1241. //
  1242. // ultraTextEditor2
  1243. //
  1244. this.ultraTextEditor2.Location = new System.Drawing.Point(242, 59);
  1245. this.ultraTextEditor2.Name = "ultraTextEditor2";
  1246. this.ultraTextEditor2.Size = new System.Drawing.Size(141, 21);
  1247. this.ultraTextEditor2.TabIndex = 152;
  1248. //
  1249. // ultraLabel13
  1250. //
  1251. appearance220.TextHAlignAsString = "Right";
  1252. appearance220.TextVAlignAsString = "Middle";
  1253. this.ultraLabel13.Appearance = appearance220;
  1254. this.ultraLabel13.AutoSize = true;
  1255. this.ultraLabel13.Location = new System.Drawing.Point(184, 62);
  1256. this.ultraLabel13.Name = "ultraLabel13";
  1257. this.ultraLabel13.Size = new System.Drawing.Size(54, 16);
  1258. this.ultraLabel13.TabIndex = 151;
  1259. this.ultraLabel13.Text = "标准类别";
  1260. //
  1261. // ultraTextEditor3
  1262. //
  1263. this.ultraTextEditor3.Location = new System.Drawing.Point(241, 9);
  1264. this.ultraTextEditor3.MaxLength = 200;
  1265. this.ultraTextEditor3.Name = "ultraTextEditor3";
  1266. this.ultraTextEditor3.Size = new System.Drawing.Size(142, 21);
  1267. this.ultraTextEditor3.TabIndex = 150;
  1268. //
  1269. // ultraLabel14
  1270. //
  1271. appearance221.TextHAlignAsString = "Right";
  1272. appearance221.TextVAlignAsString = "Middle";
  1273. this.ultraLabel14.Appearance = appearance221;
  1274. this.ultraLabel14.AutoSize = true;
  1275. this.ultraLabel14.Location = new System.Drawing.Point(209, 37);
  1276. this.ultraLabel14.Name = "ultraLabel14";
  1277. this.ultraLabel14.Size = new System.Drawing.Size(29, 16);
  1278. this.ultraLabel14.TabIndex = 149;
  1279. this.ultraLabel14.Text = "标准";
  1280. //
  1281. // ultraLabel17
  1282. //
  1283. appearance222.TextHAlignAsString = "Right";
  1284. appearance222.TextVAlignAsString = "Middle";
  1285. this.ultraLabel17.Appearance = appearance222;
  1286. this.ultraLabel17.AutoSize = true;
  1287. this.ultraLabel17.Location = new System.Drawing.Point(208, 12);
  1288. this.ultraLabel17.Name = "ultraLabel17";
  1289. this.ultraLabel17.RightToLeft = System.Windows.Forms.RightToLeft.No;
  1290. this.ultraLabel17.Size = new System.Drawing.Size(29, 16);
  1291. this.ultraLabel17.TabIndex = 148;
  1292. this.ultraLabel17.Text = "品名";
  1293. //
  1294. // ultraLabel7
  1295. //
  1296. appearance223.TextHAlignAsString = "Right";
  1297. appearance223.TextVAlignAsString = "Middle";
  1298. this.ultraLabel7.Appearance = appearance223;
  1299. this.ultraLabel7.AutoSize = true;
  1300. this.ultraLabel7.Location = new System.Drawing.Point(590, 62);
  1301. this.ultraLabel7.Name = "ultraLabel7";
  1302. this.ultraLabel7.Size = new System.Drawing.Size(54, 16);
  1303. this.ultraLabel7.TabIndex = 146;
  1304. this.ultraLabel7.Text = "长度范围";
  1305. //
  1306. // txtBATCH_MAX
  1307. //
  1308. this.txtBATCH_MAX.Location = new System.Drawing.Point(70, 59);
  1309. this.txtBATCH_MAX.MaxLength = 100;
  1310. this.txtBATCH_MAX.Name = "txtBATCH_MAX";
  1311. this.txtBATCH_MAX.ReadOnly = true;
  1312. this.txtBATCH_MAX.Size = new System.Drawing.Size(110, 21);
  1313. this.txtBATCH_MAX.TabIndex = 144;
  1314. //
  1315. // ultraLabel2
  1316. //
  1317. appearance224.TextHAlignAsString = "Right";
  1318. appearance224.TextVAlignAsString = "Middle";
  1319. this.ultraLabel2.Appearance = appearance224;
  1320. this.ultraLabel2.AutoSize = true;
  1321. this.ultraLabel2.Location = new System.Drawing.Point(12, 62);
  1322. this.ultraLabel2.Name = "ultraLabel2";
  1323. this.ultraLabel2.Size = new System.Drawing.Size(54, 16);
  1324. this.ultraLabel2.TabIndex = 145;
  1325. this.ultraLabel2.Text = "分批上限";
  1326. //
  1327. // txtCONSIGN_NAME
  1328. //
  1329. this.txtCONSIGN_NAME.Location = new System.Drawing.Point(648, 9);
  1330. this.txtCONSIGN_NAME.MaxLength = 200;
  1331. this.txtCONSIGN_NAME.Name = "txtCONSIGN_NAME";
  1332. this.txtCONSIGN_NAME.Size = new System.Drawing.Size(100, 21);
  1333. this.txtCONSIGN_NAME.TabIndex = 143;
  1334. //
  1335. // ultraLabel10
  1336. //
  1337. appearance225.TextHAlignAsString = "Right";
  1338. appearance225.TextVAlignAsString = "Middle";
  1339. this.ultraLabel10.Appearance = appearance225;
  1340. this.ultraLabel10.AutoSize = true;
  1341. this.ultraLabel10.Location = new System.Drawing.Point(615, 12);
  1342. this.ultraLabel10.Name = "ultraLabel10";
  1343. this.ultraLabel10.Size = new System.Drawing.Size(29, 16);
  1344. this.ultraLabel10.TabIndex = 142;
  1345. this.ultraLabel10.Text = "扣型";
  1346. //
  1347. // txtCONSIGN_TIME
  1348. //
  1349. this.txtCONSIGN_TIME.Location = new System.Drawing.Point(648, 34);
  1350. this.txtCONSIGN_TIME.MaxLength = 200;
  1351. this.txtCONSIGN_TIME.Name = "txtCONSIGN_TIME";
  1352. this.txtCONSIGN_TIME.Size = new System.Drawing.Size(100, 21);
  1353. this.txtCONSIGN_TIME.TabIndex = 137;
  1354. //
  1355. // txtSTEEL_NO
  1356. //
  1357. this.txtSTEEL_NO.Location = new System.Drawing.Point(445, 34);
  1358. this.txtSTEEL_NO.MaxLength = 200;
  1359. this.txtSTEEL_NO.Name = "txtSTEEL_NO";
  1360. this.txtSTEEL_NO.Size = new System.Drawing.Size(141, 21);
  1361. this.txtSTEEL_NO.TabIndex = 131;
  1362. //
  1363. // ultraLabel11
  1364. //
  1365. appearance226.TextHAlignAsString = "Right";
  1366. appearance226.TextVAlignAsString = "Middle";
  1367. this.ultraLabel11.Appearance = appearance226;
  1368. this.ultraLabel11.AutoSize = true;
  1369. this.ultraLabel11.Location = new System.Drawing.Point(590, 37);
  1370. this.ultraLabel11.Name = "ultraLabel11";
  1371. this.ultraLabel11.Size = new System.Drawing.Size(54, 16);
  1372. this.ultraLabel11.TabIndex = 130;
  1373. this.ultraLabel11.Text = "目标长度";
  1374. //
  1375. // ultraLabel3
  1376. //
  1377. appearance227.TextHAlignAsString = "Right";
  1378. appearance227.TextVAlignAsString = "Middle";
  1379. this.ultraLabel3.Appearance = appearance227;
  1380. this.ultraLabel3.AutoSize = true;
  1381. this.ultraLabel3.Location = new System.Drawing.Point(37, 37);
  1382. this.ultraLabel3.Name = "ultraLabel3";
  1383. this.ultraLabel3.Size = new System.Drawing.Size(29, 16);
  1384. this.ultraLabel3.TabIndex = 128;
  1385. this.ultraLabel3.Text = "炉号";
  1386. //
  1387. // txtPRODUCT_STD
  1388. //
  1389. this.txtPRODUCT_STD.Location = new System.Drawing.Point(445, 59);
  1390. this.txtPRODUCT_STD.Name = "txtPRODUCT_STD";
  1391. this.txtPRODUCT_STD.Size = new System.Drawing.Size(141, 21);
  1392. this.txtPRODUCT_STD.TabIndex = 127;
  1393. //
  1394. // ultraLabel6
  1395. //
  1396. appearance228.TextHAlignAsString = "Right";
  1397. appearance228.TextVAlignAsString = "Middle";
  1398. this.ultraLabel6.Appearance = appearance228;
  1399. this.ultraLabel6.AutoSize = true;
  1400. this.ultraLabel6.Location = new System.Drawing.Point(412, 62);
  1401. this.ultraLabel6.Name = "ultraLabel6";
  1402. this.ultraLabel6.Size = new System.Drawing.Size(29, 16);
  1403. this.ultraLabel6.TabIndex = 126;
  1404. this.ultraLabel6.Text = "规格";
  1405. //
  1406. // txtSTEEL_GRADE
  1407. //
  1408. this.txtSTEEL_GRADE.Location = new System.Drawing.Point(444, 9);
  1409. this.txtSTEEL_GRADE.MaxLength = 200;
  1410. this.txtSTEEL_GRADE.Name = "txtSTEEL_GRADE";
  1411. this.txtSTEEL_GRADE.Size = new System.Drawing.Size(142, 21);
  1412. this.txtSTEEL_GRADE.TabIndex = 125;
  1413. //
  1414. // txtHEAT_NO
  1415. //
  1416. this.txtHEAT_NO.Location = new System.Drawing.Point(70, 34);
  1417. this.txtHEAT_NO.MaxLength = 200;
  1418. this.txtHEAT_NO.Name = "txtHEAT_NO";
  1419. this.txtHEAT_NO.Size = new System.Drawing.Size(109, 21);
  1420. this.txtHEAT_NO.TabIndex = 123;
  1421. //
  1422. // ultraLabel5
  1423. //
  1424. appearance229.TextHAlignAsString = "Right";
  1425. appearance229.TextVAlignAsString = "Middle";
  1426. this.ultraLabel5.Appearance = appearance229;
  1427. this.ultraLabel5.AutoSize = true;
  1428. this.ultraLabel5.Location = new System.Drawing.Point(412, 37);
  1429. this.ultraLabel5.Name = "ultraLabel5";
  1430. this.ultraLabel5.Size = new System.Drawing.Size(29, 16);
  1431. this.ultraLabel5.TabIndex = 122;
  1432. this.ultraLabel5.Text = "钢号";
  1433. //
  1434. // ultraLabel4
  1435. //
  1436. appearance230.TextHAlignAsString = "Right";
  1437. appearance230.TextVAlignAsString = "Middle";
  1438. this.ultraLabel4.Appearance = appearance230;
  1439. this.ultraLabel4.AutoSize = true;
  1440. this.ultraLabel4.Location = new System.Drawing.Point(411, 12);
  1441. this.ultraLabel4.Name = "ultraLabel4";
  1442. this.ultraLabel4.RightToLeft = System.Windows.Forms.RightToLeft.No;
  1443. this.ultraLabel4.Size = new System.Drawing.Size(29, 16);
  1444. this.ultraLabel4.TabIndex = 120;
  1445. this.ultraLabel4.Text = "钢级";
  1446. //
  1447. // txtCHECK_NO
  1448. //
  1449. this.txtCHECK_NO.Location = new System.Drawing.Point(70, 9);
  1450. this.txtCHECK_NO.MaxLength = 100;
  1451. this.txtCHECK_NO.Name = "txtCHECK_NO";
  1452. this.txtCHECK_NO.Size = new System.Drawing.Size(110, 21);
  1453. this.txtCHECK_NO.TabIndex = 118;
  1454. //
  1455. // ultraLabel1
  1456. //
  1457. appearance231.TextHAlignAsString = "Right";
  1458. appearance231.TextVAlignAsString = "Middle";
  1459. this.ultraLabel1.Appearance = appearance231;
  1460. this.ultraLabel1.AutoSize = true;
  1461. this.ultraLabel1.Location = new System.Drawing.Point(12, 12);
  1462. this.ultraLabel1.Name = "ultraLabel1";
  1463. this.ultraLabel1.Size = new System.Drawing.Size(54, 16);
  1464. this.ultraLabel1.TabIndex = 119;
  1465. this.ultraLabel1.Text = "生产批号";
  1466. //
  1467. // ultraGroupBox1
  1468. //
  1469. this.ultraGroupBox1.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  1470. this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
  1471. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Left;
  1472. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  1473. this.ultraGroupBox1.Name = "ultraGroupBox1";
  1474. this.ultraGroupBox1.Size = new System.Drawing.Size(180, 438);
  1475. this.ultraGroupBox1.TabIndex = 19;
  1476. this.ultraGroupBox1.Text = "生产批号、炉号队列";
  1477. //
  1478. // ultraGrid1
  1479. //
  1480. this.ultraGrid1.DataMember = "Table1";
  1481. this.ultraGrid1.DataSource = this.dataSet1;
  1482. appearance232.BackColor = System.Drawing.SystemColors.Window;
  1483. appearance232.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1484. this.ultraGrid1.DisplayLayout.Appearance = appearance232;
  1485. ultraGridBand5.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  1486. this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
  1487. this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1488. this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1489. appearance233.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1490. appearance233.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1491. appearance233.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1492. appearance233.BorderColor = System.Drawing.SystemColors.Window;
  1493. this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance233;
  1494. appearance234.ForeColor = System.Drawing.SystemColors.GrayText;
  1495. this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance234;
  1496. this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1497. appearance235.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1498. appearance235.BackColor2 = System.Drawing.SystemColors.Control;
  1499. appearance235.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1500. appearance235.ForeColor = System.Drawing.SystemColors.GrayText;
  1501. this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance235;
  1502. this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
  1503. this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
  1504. appearance236.BackColor = System.Drawing.SystemColors.Window;
  1505. appearance236.ForeColor = System.Drawing.SystemColors.ControlText;
  1506. this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance236;
  1507. appearance237.BackColor = System.Drawing.SystemColors.Highlight;
  1508. appearance237.ForeColor = System.Drawing.SystemColors.HighlightText;
  1509. this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance237;
  1510. this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  1511. this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  1512. this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1513. this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1514. appearance238.BackColor = System.Drawing.SystemColors.Window;
  1515. this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance238;
  1516. appearance239.BorderColor = System.Drawing.Color.Silver;
  1517. appearance239.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1518. this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance239;
  1519. this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1520. this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
  1521. this.ultraGrid1.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  1522. appearance240.BackColor = System.Drawing.SystemColors.Control;
  1523. appearance240.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1524. appearance240.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1525. appearance240.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1526. appearance240.BorderColor = System.Drawing.SystemColors.Window;
  1527. this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance240;
  1528. appearance241.TextHAlignAsString = "Left";
  1529. this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance241;
  1530. this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1531. this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1532. appearance90.BackColor = System.Drawing.SystemColors.Window;
  1533. appearance90.BorderColor = System.Drawing.Color.Silver;
  1534. this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance90;
  1535. this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1536. appearance91.BackColor = System.Drawing.SystemColors.ControlLight;
  1537. this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance91;
  1538. this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1539. this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1540. this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1541. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  1542. this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1543. this.ultraGrid1.Location = new System.Drawing.Point(1, 18);
  1544. this.ultraGrid1.Name = "ultraGrid1";
  1545. this.ultraGrid1.Size = new System.Drawing.Size(178, 419);
  1546. this.ultraGrid1.TabIndex = 27;
  1547. this.ultraGrid1.Text = "生产批号、炉号队列";
  1548. this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
  1549. //
  1550. // ultraTabPageControl3
  1551. //
  1552. this.ultraTabPageControl3.Controls.Add(this.panel13);
  1553. this.ultraTabPageControl3.Location = new System.Drawing.Point(1, 23);
  1554. this.ultraTabPageControl3.Name = "ultraTabPageControl3";
  1555. this.ultraTabPageControl3.Size = new System.Drawing.Size(1322, 438);
  1556. //
  1557. // panel13
  1558. //
  1559. this.panel13.Controls.Add(this.panel14);
  1560. this.panel13.Controls.Add(this.ultraGroupBox12);
  1561. this.panel13.Dock = System.Windows.Forms.DockStyle.Fill;
  1562. this.panel13.Location = new System.Drawing.Point(0, 0);
  1563. this.panel13.Name = "panel13";
  1564. this.panel13.Size = new System.Drawing.Size(1322, 438);
  1565. this.panel13.TabIndex = 23;
  1566. //
  1567. // panel14
  1568. //
  1569. this.panel14.Controls.Add(this.panel15);
  1570. this.panel14.Controls.Add(this.ultraGroupBox11);
  1571. this.panel14.Dock = System.Windows.Forms.DockStyle.Fill;
  1572. this.panel14.Location = new System.Drawing.Point(180, 0);
  1573. this.panel14.Name = "panel14";
  1574. this.panel14.Size = new System.Drawing.Size(1142, 438);
  1575. this.panel14.TabIndex = 20;
  1576. //
  1577. // panel15
  1578. //
  1579. this.panel15.Controls.Add(this.panel16);
  1580. this.panel15.Controls.Add(this.ultraGroupBox10);
  1581. this.panel15.Dock = System.Windows.Forms.DockStyle.Fill;
  1582. this.panel15.Location = new System.Drawing.Point(0, 106);
  1583. this.panel15.Name = "panel15";
  1584. this.panel15.Size = new System.Drawing.Size(1142, 332);
  1585. this.panel15.TabIndex = 1;
  1586. //
  1587. // panel16
  1588. //
  1589. this.panel16.Controls.Add(this.panel17);
  1590. this.panel16.Dock = System.Windows.Forms.DockStyle.Fill;
  1591. this.panel16.Location = new System.Drawing.Point(143, 0);
  1592. this.panel16.Name = "panel16";
  1593. this.panel16.Size = new System.Drawing.Size(999, 332);
  1594. this.panel16.TabIndex = 21;
  1595. //
  1596. // panel17
  1597. //
  1598. this.panel17.Controls.Add(this.splitContainer3);
  1599. this.panel17.Dock = System.Windows.Forms.DockStyle.Fill;
  1600. this.panel17.Location = new System.Drawing.Point(0, 0);
  1601. this.panel17.Name = "panel17";
  1602. this.panel17.Size = new System.Drawing.Size(999, 332);
  1603. this.panel17.TabIndex = 22;
  1604. //
  1605. // splitContainer3
  1606. //
  1607. this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
  1608. this.splitContainer3.Location = new System.Drawing.Point(0, 0);
  1609. this.splitContainer3.Name = "splitContainer3";
  1610. //
  1611. // splitContainer3.Panel1
  1612. //
  1613. this.splitContainer3.Panel1.Controls.Add(this.ultraGroupBox7);
  1614. this.splitContainer3.Panel1.Controls.Add(this.ultraGroupBox8);
  1615. //
  1616. // splitContainer3.Panel2
  1617. //
  1618. this.splitContainer3.Panel2.Controls.Add(this.splitContainer4);
  1619. this.splitContainer3.Size = new System.Drawing.Size(999, 332);
  1620. this.splitContainer3.SplitterDistance = 550;
  1621. this.splitContainer3.SplitterWidth = 1;
  1622. this.splitContainer3.TabIndex = 0;
  1623. //
  1624. // ultraGroupBox7
  1625. //
  1626. this.ultraGroupBox7.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  1627. this.ultraGroupBox7.Controls.Add(this.ultraGrid9);
  1628. this.ultraGroupBox7.Controls.Add(this.panel18);
  1629. this.ultraGroupBox7.Dock = System.Windows.Forms.DockStyle.Fill;
  1630. this.ultraGroupBox7.Location = new System.Drawing.Point(280, 0);
  1631. this.ultraGroupBox7.Name = "ultraGroupBox7";
  1632. this.ultraGroupBox7.Size = new System.Drawing.Size(270, 332);
  1633. this.ultraGroupBox7.TabIndex = 24;
  1634. this.ultraGroupBox7.Text = "试样号";
  1635. //
  1636. // ultraGrid9
  1637. //
  1638. this.ultraGrid9.DataMember = "Table9";
  1639. this.ultraGrid9.DataSource = this.dataSet2;
  1640. appearance53.BackColor = System.Drawing.SystemColors.Window;
  1641. appearance53.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1642. this.ultraGrid9.DisplayLayout.Appearance = appearance53;
  1643. ultraGridBand6.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  1644. this.ultraGrid9.DisplayLayout.BandsSerializer.Add(ultraGridBand6);
  1645. this.ultraGrid9.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1646. this.ultraGrid9.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1647. appearance54.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1648. appearance54.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1649. appearance54.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1650. appearance54.BorderColor = System.Drawing.SystemColors.Window;
  1651. this.ultraGrid9.DisplayLayout.GroupByBox.Appearance = appearance54;
  1652. appearance55.ForeColor = System.Drawing.SystemColors.GrayText;
  1653. this.ultraGrid9.DisplayLayout.GroupByBox.BandLabelAppearance = appearance55;
  1654. this.ultraGrid9.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1655. appearance56.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1656. appearance56.BackColor2 = System.Drawing.SystemColors.Control;
  1657. appearance56.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1658. appearance56.ForeColor = System.Drawing.SystemColors.GrayText;
  1659. this.ultraGrid9.DisplayLayout.GroupByBox.PromptAppearance = appearance56;
  1660. this.ultraGrid9.DisplayLayout.MaxColScrollRegions = 1;
  1661. this.ultraGrid9.DisplayLayout.MaxRowScrollRegions = 1;
  1662. appearance57.BackColor = System.Drawing.SystemColors.Window;
  1663. appearance57.ForeColor = System.Drawing.SystemColors.ControlText;
  1664. this.ultraGrid9.DisplayLayout.Override.ActiveCellAppearance = appearance57;
  1665. appearance58.BackColor = System.Drawing.SystemColors.Highlight;
  1666. appearance58.ForeColor = System.Drawing.SystemColors.HighlightText;
  1667. this.ultraGrid9.DisplayLayout.Override.ActiveRowAppearance = appearance58;
  1668. this.ultraGrid9.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  1669. this.ultraGrid9.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  1670. this.ultraGrid9.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1671. this.ultraGrid9.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1672. appearance59.BackColor = System.Drawing.SystemColors.Window;
  1673. this.ultraGrid9.DisplayLayout.Override.CardAreaAppearance = appearance59;
  1674. appearance60.BorderColor = System.Drawing.Color.Silver;
  1675. appearance60.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1676. this.ultraGrid9.DisplayLayout.Override.CellAppearance = appearance60;
  1677. this.ultraGrid9.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1678. this.ultraGrid9.DisplayLayout.Override.CellPadding = 0;
  1679. this.ultraGrid9.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  1680. appearance61.BackColor = System.Drawing.SystemColors.Control;
  1681. appearance61.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1682. appearance61.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1683. appearance61.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1684. appearance61.BorderColor = System.Drawing.SystemColors.Window;
  1685. this.ultraGrid9.DisplayLayout.Override.GroupByRowAppearance = appearance61;
  1686. appearance62.TextHAlignAsString = "Left";
  1687. this.ultraGrid9.DisplayLayout.Override.HeaderAppearance = appearance62;
  1688. this.ultraGrid9.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1689. this.ultraGrid9.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1690. appearance64.BackColor = System.Drawing.SystemColors.Window;
  1691. appearance64.BorderColor = System.Drawing.Color.Silver;
  1692. this.ultraGrid9.DisplayLayout.Override.RowAppearance = appearance64;
  1693. this.ultraGrid9.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1694. appearance74.BackColor = System.Drawing.SystemColors.ControlLight;
  1695. this.ultraGrid9.DisplayLayout.Override.TemplateAddRowAppearance = appearance74;
  1696. this.ultraGrid9.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1697. this.ultraGrid9.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1698. this.ultraGrid9.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1699. this.ultraGrid9.Dock = System.Windows.Forms.DockStyle.Fill;
  1700. this.ultraGrid9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1701. this.ultraGrid9.Location = new System.Drawing.Point(1, 107);
  1702. this.ultraGrid9.Name = "ultraGrid9";
  1703. this.ultraGrid9.Size = new System.Drawing.Size(268, 224);
  1704. this.ultraGrid9.TabIndex = 28;
  1705. this.ultraGrid9.Text = "试样号队列";
  1706. //
  1707. // dataSet2
  1708. //
  1709. this.dataSet2.DataSetName = "NewDataSet";
  1710. this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
  1711. this.dataTable6,
  1712. this.dataTable7,
  1713. this.dataTable8,
  1714. this.dataTable9,
  1715. this.dataTable10,
  1716. this.dataTable11});
  1717. //
  1718. // dataTable6
  1719. //
  1720. this.dataTable6.TableName = "Table6";
  1721. //
  1722. // dataTable7
  1723. //
  1724. this.dataTable7.TableName = "Table7";
  1725. //
  1726. // dataTable8
  1727. //
  1728. this.dataTable8.TableName = "Table8";
  1729. //
  1730. // dataTable9
  1731. //
  1732. this.dataTable9.TableName = "Table9";
  1733. //
  1734. // dataTable10
  1735. //
  1736. this.dataTable10.TableName = "Table10";
  1737. //
  1738. // dataTable11
  1739. //
  1740. this.dataTable11.TableName = "Table11";
  1741. //
  1742. // panel18
  1743. //
  1744. this.panel18.Controls.Add(this.btnSampleSeq);
  1745. this.panel18.Controls.Add(this.CHKISALL_LOG);
  1746. this.panel18.Controls.Add(this.btnDeleteSample_LOG);
  1747. this.panel18.Controls.Add(this.ultraPOSITION_LOG);
  1748. this.panel18.Controls.Add(this.ultraLabel21);
  1749. this.panel18.Controls.Add(this.btnAddSample_LOG);
  1750. this.panel18.Controls.Add(this.ultraPIPE_NO_LOG);
  1751. this.panel18.Controls.Add(this.ultraLabel22);
  1752. this.panel18.Controls.Add(this.ultraBATCH_NO_LOG);
  1753. this.panel18.Controls.Add(this.ultraLabel23);
  1754. this.panel18.Dock = System.Windows.Forms.DockStyle.Top;
  1755. this.panel18.Location = new System.Drawing.Point(1, 18);
  1756. this.panel18.Name = "panel18";
  1757. this.panel18.Size = new System.Drawing.Size(268, 89);
  1758. this.panel18.TabIndex = 23;
  1759. //
  1760. // CHKISALL_LOG
  1761. //
  1762. this.CHKISALL_LOG.AutoSize = true;
  1763. this.CHKISALL_LOG.Location = new System.Drawing.Point(155, 63);
  1764. this.CHKISALL_LOG.Margin = new System.Windows.Forms.Padding(2);
  1765. this.CHKISALL_LOG.Name = "CHKISALL_LOG";
  1766. this.CHKISALL_LOG.Size = new System.Drawing.Size(71, 19);
  1767. this.CHKISALL_LOG.TabIndex = 224;
  1768. this.CHKISALL_LOG.Text = "包含全部";
  1769. this.CHKISALL_LOG.CheckedChanged += new System.EventHandler(this.CHKISALL_LOG_CheckedChanged);
  1770. //
  1771. // btnDeleteSample_LOG
  1772. //
  1773. this.btnDeleteSample_LOG.Location = new System.Drawing.Point(153, 34);
  1774. this.btnDeleteSample_LOG.Name = "btnDeleteSample_LOG";
  1775. this.btnDeleteSample_LOG.Size = new System.Drawing.Size(75, 23);
  1776. this.btnDeleteSample_LOG.TabIndex = 222;
  1777. this.btnDeleteSample_LOG.Text = "-试样号";
  1778. this.btnDeleteSample_LOG.UseVisualStyleBackColor = true;
  1779. this.btnDeleteSample_LOG.Click += new System.EventHandler(this.btnDeleteSample_LOG_Click);
  1780. //
  1781. // ultraPOSITION_LOG
  1782. //
  1783. this.ultraPOSITION_LOG.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1784. valueListItem3.DataValue = "1";
  1785. valueListItem3.DisplayText = "A";
  1786. valueListItem4.DataValue = "2";
  1787. valueListItem4.DisplayText = "B";
  1788. valueListItem6.DataValue = "3";
  1789. valueListItem6.DisplayText = "A和B";
  1790. this.ultraPOSITION_LOG.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1791. valueListItem3,
  1792. valueListItem4,
  1793. valueListItem6});
  1794. this.ultraPOSITION_LOG.Location = new System.Drawing.Point(70, 59);
  1795. this.ultraPOSITION_LOG.Name = "ultraPOSITION_LOG";
  1796. this.ultraPOSITION_LOG.Size = new System.Drawing.Size(69, 21);
  1797. this.ultraPOSITION_LOG.TabIndex = 221;
  1798. this.ultraPOSITION_LOG.Text = "A";
  1799. //
  1800. // ultraLabel21
  1801. //
  1802. appearance50.TextHAlignAsString = "Right";
  1803. appearance50.TextVAlignAsString = "Middle";
  1804. this.ultraLabel21.Appearance = appearance50;
  1805. this.ultraLabel21.AutoSize = true;
  1806. this.ultraLabel21.Location = new System.Drawing.Point(12, 62);
  1807. this.ultraLabel21.Name = "ultraLabel21";
  1808. this.ultraLabel21.Size = new System.Drawing.Size(54, 16);
  1809. this.ultraLabel21.TabIndex = 220;
  1810. this.ultraLabel21.Text = "取样位置";
  1811. //
  1812. // btnAddSample_LOG
  1813. //
  1814. this.btnAddSample_LOG.Location = new System.Drawing.Point(153, 7);
  1815. this.btnAddSample_LOG.Name = "btnAddSample_LOG";
  1816. this.btnAddSample_LOG.Size = new System.Drawing.Size(75, 23);
  1817. this.btnAddSample_LOG.TabIndex = 218;
  1818. this.btnAddSample_LOG.Text = "+试样号";
  1819. this.btnAddSample_LOG.UseVisualStyleBackColor = true;
  1820. this.btnAddSample_LOG.Click += new System.EventHandler(this.btnAddSample_LOG_Click);
  1821. //
  1822. // ultraPIPE_NO_LOG
  1823. //
  1824. this.ultraPIPE_NO_LOG.Location = new System.Drawing.Point(70, 34);
  1825. this.ultraPIPE_NO_LOG.Name = "ultraPIPE_NO_LOG";
  1826. this.ultraPIPE_NO_LOG.Size = new System.Drawing.Size(69, 21);
  1827. this.ultraPIPE_NO_LOG.TabIndex = 217;
  1828. //
  1829. // ultraLabel22
  1830. //
  1831. appearance49.TextHAlignAsString = "Right";
  1832. appearance49.TextVAlignAsString = "Middle";
  1833. this.ultraLabel22.Appearance = appearance49;
  1834. this.ultraLabel22.AutoSize = true;
  1835. this.ultraLabel22.Location = new System.Drawing.Point(37, 37);
  1836. this.ultraLabel22.Name = "ultraLabel22";
  1837. this.ultraLabel22.Size = new System.Drawing.Size(29, 16);
  1838. this.ultraLabel22.TabIndex = 216;
  1839. this.ultraLabel22.Text = "管号";
  1840. //
  1841. // ultraBATCH_NO_LOG
  1842. //
  1843. this.ultraBATCH_NO_LOG.Location = new System.Drawing.Point(70, 9);
  1844. this.ultraBATCH_NO_LOG.Name = "ultraBATCH_NO_LOG";
  1845. this.ultraBATCH_NO_LOG.ReadOnly = true;
  1846. this.ultraBATCH_NO_LOG.Size = new System.Drawing.Size(69, 21);
  1847. this.ultraBATCH_NO_LOG.TabIndex = 215;
  1848. //
  1849. // ultraLabel23
  1850. //
  1851. appearance51.TextHAlignAsString = "Right";
  1852. appearance51.TextVAlignAsString = "Middle";
  1853. this.ultraLabel23.Appearance = appearance51;
  1854. this.ultraLabel23.AutoSize = true;
  1855. this.ultraLabel23.Location = new System.Drawing.Point(12, 12);
  1856. this.ultraLabel23.Name = "ultraLabel23";
  1857. this.ultraLabel23.Size = new System.Drawing.Size(54, 16);
  1858. this.ultraLabel23.TabIndex = 214;
  1859. this.ultraLabel23.Text = "性能批号";
  1860. //
  1861. // ultraGroupBox8
  1862. //
  1863. this.ultraGroupBox8.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  1864. this.ultraGroupBox8.Controls.Add(this.ultraGrid8);
  1865. this.ultraGroupBox8.Controls.Add(this.panel19);
  1866. this.ultraGroupBox8.Dock = System.Windows.Forms.DockStyle.Left;
  1867. this.ultraGroupBox8.Location = new System.Drawing.Point(0, 0);
  1868. this.ultraGroupBox8.Name = "ultraGroupBox8";
  1869. this.ultraGroupBox8.Size = new System.Drawing.Size(280, 332);
  1870. this.ultraGroupBox8.TabIndex = 23;
  1871. this.ultraGroupBox8.Text = "性能批号";
  1872. //
  1873. // ultraGrid8
  1874. //
  1875. this.ultraGrid8.DataMember = "Table8";
  1876. this.ultraGrid8.DataSource = this.dataSet2;
  1877. appearance14.BackColor = System.Drawing.SystemColors.Window;
  1878. appearance14.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1879. this.ultraGrid8.DisplayLayout.Appearance = appearance14;
  1880. ultraGridBand7.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  1881. this.ultraGrid8.DisplayLayout.BandsSerializer.Add(ultraGridBand7);
  1882. this.ultraGrid8.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1883. this.ultraGrid8.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1884. appearance18.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1885. appearance18.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1886. appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1887. appearance18.BorderColor = System.Drawing.SystemColors.Window;
  1888. this.ultraGrid8.DisplayLayout.GroupByBox.Appearance = appearance18;
  1889. appearance23.ForeColor = System.Drawing.SystemColors.GrayText;
  1890. this.ultraGrid8.DisplayLayout.GroupByBox.BandLabelAppearance = appearance23;
  1891. this.ultraGrid8.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1892. appearance24.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1893. appearance24.BackColor2 = System.Drawing.SystemColors.Control;
  1894. appearance24.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1895. appearance24.ForeColor = System.Drawing.SystemColors.GrayText;
  1896. this.ultraGrid8.DisplayLayout.GroupByBox.PromptAppearance = appearance24;
  1897. this.ultraGrid8.DisplayLayout.MaxColScrollRegions = 1;
  1898. this.ultraGrid8.DisplayLayout.MaxRowScrollRegions = 1;
  1899. appearance27.BackColor = System.Drawing.SystemColors.Window;
  1900. appearance27.ForeColor = System.Drawing.SystemColors.ControlText;
  1901. this.ultraGrid8.DisplayLayout.Override.ActiveCellAppearance = appearance27;
  1902. appearance28.BackColor = System.Drawing.SystemColors.Highlight;
  1903. appearance28.ForeColor = System.Drawing.SystemColors.HighlightText;
  1904. this.ultraGrid8.DisplayLayout.Override.ActiveRowAppearance = appearance28;
  1905. this.ultraGrid8.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  1906. this.ultraGrid8.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  1907. this.ultraGrid8.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1908. this.ultraGrid8.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1909. appearance29.BackColor = System.Drawing.SystemColors.Window;
  1910. this.ultraGrid8.DisplayLayout.Override.CardAreaAppearance = appearance29;
  1911. appearance35.BorderColor = System.Drawing.Color.Silver;
  1912. appearance35.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1913. this.ultraGrid8.DisplayLayout.Override.CellAppearance = appearance35;
  1914. this.ultraGrid8.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1915. this.ultraGrid8.DisplayLayout.Override.CellPadding = 0;
  1916. this.ultraGrid8.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  1917. appearance36.BackColor = System.Drawing.SystemColors.Control;
  1918. appearance36.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1919. appearance36.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1920. appearance36.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1921. appearance36.BorderColor = System.Drawing.SystemColors.Window;
  1922. this.ultraGrid8.DisplayLayout.Override.GroupByRowAppearance = appearance36;
  1923. appearance37.TextHAlignAsString = "Left";
  1924. this.ultraGrid8.DisplayLayout.Override.HeaderAppearance = appearance37;
  1925. this.ultraGrid8.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1926. this.ultraGrid8.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1927. appearance44.BackColor = System.Drawing.SystemColors.Window;
  1928. appearance44.BorderColor = System.Drawing.Color.Silver;
  1929. this.ultraGrid8.DisplayLayout.Override.RowAppearance = appearance44;
  1930. this.ultraGrid8.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1931. appearance46.BackColor = System.Drawing.SystemColors.ControlLight;
  1932. this.ultraGrid8.DisplayLayout.Override.TemplateAddRowAppearance = appearance46;
  1933. this.ultraGrid8.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1934. this.ultraGrid8.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1935. this.ultraGrid8.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1936. this.ultraGrid8.Dock = System.Windows.Forms.DockStyle.Fill;
  1937. this.ultraGrid8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1938. this.ultraGrid8.Location = new System.Drawing.Point(1, 107);
  1939. this.ultraGrid8.Name = "ultraGrid8";
  1940. this.ultraGrid8.Size = new System.Drawing.Size(278, 224);
  1941. this.ultraGrid8.TabIndex = 28;
  1942. this.ultraGrid8.Text = "性能批号队列";
  1943. this.ultraGrid8.AfterRowActivate += new System.EventHandler(this.ultraGrid8_AfterRowActivate);
  1944. //
  1945. // panel19
  1946. //
  1947. this.panel19.Controls.Add(this.txtBATCH_MIN_LOG);
  1948. this.panel19.Controls.Add(this.ultraLabel46);
  1949. this.panel19.Controls.Add(this.txtPIPE_NUM_LOG);
  1950. this.panel19.Controls.Add(this.ultraLabel24);
  1951. this.panel19.Controls.Add(this.btnCancel_LOG);
  1952. this.panel19.Controls.Add(this.btnAuto_LOG);
  1953. this.panel19.Controls.Add(this.btnConfirm_LOG);
  1954. this.panel19.Controls.Add(this.ultraEND_PIPE_NO_LOG);
  1955. this.panel19.Controls.Add(this.ultraLabel25);
  1956. this.panel19.Controls.Add(this.ultraSTART_PIPE_NO_LOG);
  1957. this.panel19.Controls.Add(this.ultraLabel26);
  1958. this.panel19.Dock = System.Windows.Forms.DockStyle.Top;
  1959. this.panel19.Location = new System.Drawing.Point(1, 18);
  1960. this.panel19.Name = "panel19";
  1961. this.panel19.Size = new System.Drawing.Size(278, 89);
  1962. this.panel19.TabIndex = 23;
  1963. //
  1964. // txtBATCH_MIN_LOG
  1965. //
  1966. this.txtBATCH_MIN_LOG.Location = new System.Drawing.Point(202, 9);
  1967. this.txtBATCH_MIN_LOG.MaxLength = 100;
  1968. this.txtBATCH_MIN_LOG.Name = "txtBATCH_MIN_LOG";
  1969. this.txtBATCH_MIN_LOG.ReadOnly = true;
  1970. this.txtBATCH_MIN_LOG.Size = new System.Drawing.Size(70, 21);
  1971. this.txtBATCH_MIN_LOG.TabIndex = 223;
  1972. //
  1973. // ultraLabel46
  1974. //
  1975. appearance168.TextHAlignAsString = "Right";
  1976. appearance168.TextVAlignAsString = "Middle";
  1977. this.ultraLabel46.Appearance = appearance168;
  1978. this.ultraLabel46.AutoSize = true;
  1979. this.ultraLabel46.Location = new System.Drawing.Point(144, 12);
  1980. this.ultraLabel46.Name = "ultraLabel46";
  1981. this.ultraLabel46.Size = new System.Drawing.Size(54, 16);
  1982. this.ultraLabel46.TabIndex = 224;
  1983. this.ultraLabel46.Text = "批数参考";
  1984. //
  1985. // txtPIPE_NUM_LOG
  1986. //
  1987. this.txtPIPE_NUM_LOG.Location = new System.Drawing.Point(70, 9);
  1988. this.txtPIPE_NUM_LOG.MaxLength = 100;
  1989. this.txtPIPE_NUM_LOG.Name = "txtPIPE_NUM_LOG";
  1990. this.txtPIPE_NUM_LOG.ReadOnly = true;
  1991. this.txtPIPE_NUM_LOG.Size = new System.Drawing.Size(70, 21);
  1992. this.txtPIPE_NUM_LOG.TabIndex = 221;
  1993. //
  1994. // ultraLabel24
  1995. //
  1996. appearance167.TextHAlignAsString = "Right";
  1997. appearance167.TextVAlignAsString = "Middle";
  1998. this.ultraLabel24.Appearance = appearance167;
  1999. this.ultraLabel24.AutoSize = true;
  2000. this.ultraLabel24.Location = new System.Drawing.Point(12, 12);
  2001. this.ultraLabel24.Name = "ultraLabel24";
  2002. this.ultraLabel24.Size = new System.Drawing.Size(54, 16);
  2003. this.ultraLabel24.TabIndex = 222;
  2004. this.ultraLabel24.Text = "有效管数";
  2005. //
  2006. // btnCancel_LOG
  2007. //
  2008. this.btnCancel_LOG.Location = new System.Drawing.Point(191, 61);
  2009. this.btnCancel_LOG.Name = "btnCancel_LOG";
  2010. this.btnCancel_LOG.Size = new System.Drawing.Size(75, 23);
  2011. this.btnCancel_LOG.TabIndex = 220;
  2012. this.btnCancel_LOG.Text = "取消此批";
  2013. this.btnCancel_LOG.UseVisualStyleBackColor = true;
  2014. this.btnCancel_LOG.Click += new System.EventHandler(this.btnCancel_LOG_Click);
  2015. //
  2016. // btnAuto_LOG
  2017. //
  2018. this.btnAuto_LOG.Location = new System.Drawing.Point(108, 61);
  2019. this.btnAuto_LOG.Name = "btnAuto_LOG";
  2020. this.btnAuto_LOG.Size = new System.Drawing.Size(75, 23);
  2021. this.btnAuto_LOG.TabIndex = 219;
  2022. this.btnAuto_LOG.Text = "自动组批";
  2023. this.btnAuto_LOG.UseVisualStyleBackColor = true;
  2024. this.btnAuto_LOG.Click += new System.EventHandler(this.btnAuto_LOG_Click);
  2025. //
  2026. // btnConfirm_LOG
  2027. //
  2028. this.btnConfirm_LOG.Location = new System.Drawing.Point(25, 61);
  2029. this.btnConfirm_LOG.Name = "btnConfirm_LOG";
  2030. this.btnConfirm_LOG.Size = new System.Drawing.Size(75, 23);
  2031. this.btnConfirm_LOG.TabIndex = 218;
  2032. this.btnConfirm_LOG.Text = "人工组批";
  2033. this.btnConfirm_LOG.UseVisualStyleBackColor = true;
  2034. this.btnConfirm_LOG.Click += new System.EventHandler(this.btnConfirm_LOG_Click);
  2035. //
  2036. // ultraEND_PIPE_NO_LOG
  2037. //
  2038. this.ultraEND_PIPE_NO_LOG.Location = new System.Drawing.Point(202, 34);
  2039. this.ultraEND_PIPE_NO_LOG.Name = "ultraEND_PIPE_NO_LOG";
  2040. this.ultraEND_PIPE_NO_LOG.Size = new System.Drawing.Size(70, 21);
  2041. this.ultraEND_PIPE_NO_LOG.TabIndex = 217;
  2042. //
  2043. // ultraLabel25
  2044. //
  2045. appearance47.TextHAlignAsString = "Right";
  2046. appearance47.TextVAlignAsString = "Middle";
  2047. this.ultraLabel25.Appearance = appearance47;
  2048. this.ultraLabel25.AutoSize = true;
  2049. this.ultraLabel25.Location = new System.Drawing.Point(144, 37);
  2050. this.ultraLabel25.Name = "ultraLabel25";
  2051. this.ultraLabel25.Size = new System.Drawing.Size(54, 16);
  2052. this.ultraLabel25.TabIndex = 216;
  2053. this.ultraLabel25.Text = "结束管号";
  2054. //
  2055. // ultraSTART_PIPE_NO_LOG
  2056. //
  2057. this.ultraSTART_PIPE_NO_LOG.Location = new System.Drawing.Point(70, 34);
  2058. this.ultraSTART_PIPE_NO_LOG.Name = "ultraSTART_PIPE_NO_LOG";
  2059. this.ultraSTART_PIPE_NO_LOG.ReadOnly = true;
  2060. this.ultraSTART_PIPE_NO_LOG.Size = new System.Drawing.Size(70, 21);
  2061. this.ultraSTART_PIPE_NO_LOG.TabIndex = 215;
  2062. this.ultraSTART_PIPE_NO_LOG.TextChanged += new System.EventHandler(this.ultraSTART_PIPE_NO_LOG_TextChanged);
  2063. //
  2064. // ultraLabel26
  2065. //
  2066. appearance48.TextHAlignAsString = "Right";
  2067. appearance48.TextVAlignAsString = "Middle";
  2068. this.ultraLabel26.Appearance = appearance48;
  2069. this.ultraLabel26.AutoSize = true;
  2070. this.ultraLabel26.Location = new System.Drawing.Point(12, 37);
  2071. this.ultraLabel26.Name = "ultraLabel26";
  2072. this.ultraLabel26.Size = new System.Drawing.Size(54, 16);
  2073. this.ultraLabel26.TabIndex = 214;
  2074. this.ultraLabel26.Text = "起始管号";
  2075. //
  2076. // splitContainer4
  2077. //
  2078. this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
  2079. this.splitContainer4.Location = new System.Drawing.Point(0, 0);
  2080. this.splitContainer4.Name = "splitContainer4";
  2081. this.splitContainer4.Orientation = System.Windows.Forms.Orientation.Horizontal;
  2082. //
  2083. // splitContainer4.Panel1
  2084. //
  2085. this.splitContainer4.Panel1.Controls.Add(this.ultraGroupBox9);
  2086. this.splitContainer4.Panel1Collapsed = true;
  2087. //
  2088. // splitContainer4.Panel2
  2089. //
  2090. this.splitContainer4.Panel2.Controls.Add(this.ultraGroupBox13);
  2091. this.splitContainer4.Size = new System.Drawing.Size(448, 332);
  2092. this.splitContainer4.SplitterDistance = 125;
  2093. this.splitContainer4.SplitterWidth = 1;
  2094. this.splitContainer4.TabIndex = 0;
  2095. //
  2096. // ultraGroupBox9
  2097. //
  2098. this.ultraGroupBox9.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  2099. this.ultraGroupBox9.Controls.Add(this.ultraGrid10);
  2100. this.ultraGroupBox9.Dock = System.Windows.Forms.DockStyle.Fill;
  2101. this.ultraGroupBox9.Location = new System.Drawing.Point(0, 0);
  2102. this.ultraGroupBox9.Name = "ultraGroupBox9";
  2103. this.ultraGroupBox9.Size = new System.Drawing.Size(150, 125);
  2104. this.ultraGroupBox9.TabIndex = 26;
  2105. this.ultraGroupBox9.Text = "标准取样要求队列";
  2106. //
  2107. // ultraGrid10
  2108. //
  2109. this.ultraGrid10.DataMember = "Table10";
  2110. this.ultraGrid10.DataSource = this.dataSet2;
  2111. appearance183.BackColor = System.Drawing.SystemColors.Window;
  2112. appearance183.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  2113. this.ultraGrid10.DisplayLayout.Appearance = appearance183;
  2114. ultraGridBand8.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  2115. this.ultraGrid10.DisplayLayout.BandsSerializer.Add(ultraGridBand8);
  2116. this.ultraGrid10.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2117. this.ultraGrid10.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2118. appearance184.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2119. appearance184.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2120. appearance184.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2121. appearance184.BorderColor = System.Drawing.SystemColors.Window;
  2122. this.ultraGrid10.DisplayLayout.GroupByBox.Appearance = appearance184;
  2123. appearance185.ForeColor = System.Drawing.SystemColors.GrayText;
  2124. this.ultraGrid10.DisplayLayout.GroupByBox.BandLabelAppearance = appearance185;
  2125. this.ultraGrid10.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2126. appearance186.BackColor = System.Drawing.SystemColors.ControlLightLight;
  2127. appearance186.BackColor2 = System.Drawing.SystemColors.Control;
  2128. appearance186.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2129. appearance186.ForeColor = System.Drawing.SystemColors.GrayText;
  2130. this.ultraGrid10.DisplayLayout.GroupByBox.PromptAppearance = appearance186;
  2131. this.ultraGrid10.DisplayLayout.MaxColScrollRegions = 1;
  2132. this.ultraGrid10.DisplayLayout.MaxRowScrollRegions = 1;
  2133. appearance187.BackColor = System.Drawing.SystemColors.Window;
  2134. appearance187.ForeColor = System.Drawing.SystemColors.ControlText;
  2135. this.ultraGrid10.DisplayLayout.Override.ActiveCellAppearance = appearance187;
  2136. appearance188.BackColor = System.Drawing.SystemColors.Highlight;
  2137. appearance188.ForeColor = System.Drawing.SystemColors.HighlightText;
  2138. this.ultraGrid10.DisplayLayout.Override.ActiveRowAppearance = appearance188;
  2139. this.ultraGrid10.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  2140. this.ultraGrid10.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  2141. this.ultraGrid10.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  2142. this.ultraGrid10.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  2143. appearance189.BackColor = System.Drawing.SystemColors.Window;
  2144. this.ultraGrid10.DisplayLayout.Override.CardAreaAppearance = appearance189;
  2145. appearance190.BorderColor = System.Drawing.Color.Silver;
  2146. appearance190.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  2147. this.ultraGrid10.DisplayLayout.Override.CellAppearance = appearance190;
  2148. this.ultraGrid10.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2149. this.ultraGrid10.DisplayLayout.Override.CellPadding = 0;
  2150. this.ultraGrid10.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  2151. appearance191.BackColor = System.Drawing.SystemColors.Control;
  2152. appearance191.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2153. appearance191.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2154. appearance191.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2155. appearance191.BorderColor = System.Drawing.SystemColors.Window;
  2156. this.ultraGrid10.DisplayLayout.Override.GroupByRowAppearance = appearance191;
  2157. appearance192.TextHAlignAsString = "Left";
  2158. this.ultraGrid10.DisplayLayout.Override.HeaderAppearance = appearance192;
  2159. this.ultraGrid10.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2160. this.ultraGrid10.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  2161. appearance193.BackColor = System.Drawing.SystemColors.Window;
  2162. appearance193.BorderColor = System.Drawing.Color.Silver;
  2163. this.ultraGrid10.DisplayLayout.Override.RowAppearance = appearance193;
  2164. this.ultraGrid10.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  2165. appearance194.BackColor = System.Drawing.SystemColors.ControlLight;
  2166. this.ultraGrid10.DisplayLayout.Override.TemplateAddRowAppearance = appearance194;
  2167. this.ultraGrid10.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2168. this.ultraGrid10.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2169. this.ultraGrid10.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2170. this.ultraGrid10.Dock = System.Windows.Forms.DockStyle.Fill;
  2171. this.ultraGrid10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2172. this.ultraGrid10.Location = new System.Drawing.Point(1, 18);
  2173. this.ultraGrid10.Name = "ultraGrid10";
  2174. this.ultraGrid10.Size = new System.Drawing.Size(148, 106);
  2175. this.ultraGrid10.TabIndex = 27;
  2176. this.ultraGrid10.Text = "取样要求队列";
  2177. //
  2178. // ultraGroupBox13
  2179. //
  2180. this.ultraGroupBox13.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  2181. this.ultraGroupBox13.Controls.Add(this.CHKISAllSampleReq_LOG);
  2182. this.ultraGroupBox13.Controls.Add(this.btnFindSampleReq_LOG);
  2183. this.ultraGroupBox13.Controls.Add(this.ultraGrid11);
  2184. this.ultraGroupBox13.Dock = System.Windows.Forms.DockStyle.Fill;
  2185. this.ultraGroupBox13.Location = new System.Drawing.Point(0, 0);
  2186. this.ultraGroupBox13.Name = "ultraGroupBox13";
  2187. this.ultraGroupBox13.Size = new System.Drawing.Size(448, 332);
  2188. this.ultraGroupBox13.TabIndex = 27;
  2189. this.ultraGroupBox13.Text = "参考取样要求队列";
  2190. //
  2191. // CHKISAllSampleReq_LOG
  2192. //
  2193. this.CHKISAllSampleReq_LOG.AutoSize = true;
  2194. this.CHKISAllSampleReq_LOG.Location = new System.Drawing.Point(255, 0);
  2195. this.CHKISAllSampleReq_LOG.Margin = new System.Windows.Forms.Padding(2);
  2196. this.CHKISAllSampleReq_LOG.Name = "CHKISAllSampleReq_LOG";
  2197. this.CHKISAllSampleReq_LOG.Size = new System.Drawing.Size(145, 19);
  2198. this.CHKISAllSampleReq_LOG.TabIndex = 225;
  2199. this.CHKISAllSampleReq_LOG.Text = "包含全部参考取样队列";
  2200. this.CHKISAllSampleReq_LOG.CheckedChanged += new System.EventHandler(this.CHKISAllSampleReq_LOG_CheckedChanged);
  2201. //
  2202. // btnFindSampleReq_LOG
  2203. //
  2204. this.btnFindSampleReq_LOG.Location = new System.Drawing.Point(128, -3);
  2205. this.btnFindSampleReq_LOG.Name = "btnFindSampleReq_LOG";
  2206. this.btnFindSampleReq_LOG.Size = new System.Drawing.Size(112, 23);
  2207. this.btnFindSampleReq_LOG.TabIndex = 219;
  2208. this.btnFindSampleReq_LOG.Text = "查看标准取样要求";
  2209. this.btnFindSampleReq_LOG.UseVisualStyleBackColor = true;
  2210. this.btnFindSampleReq_LOG.Click += new System.EventHandler(this.btnFindSampleReq_LOG_Click);
  2211. //
  2212. // ultraGrid11
  2213. //
  2214. this.ultraGrid11.DataMember = "Table11";
  2215. this.ultraGrid11.DataSource = this.dataSet2;
  2216. appearance195.BackColor = System.Drawing.SystemColors.Window;
  2217. appearance195.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  2218. this.ultraGrid11.DisplayLayout.Appearance = appearance195;
  2219. ultraGridBand9.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  2220. this.ultraGrid11.DisplayLayout.BandsSerializer.Add(ultraGridBand9);
  2221. this.ultraGrid11.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2222. this.ultraGrid11.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2223. appearance196.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2224. appearance196.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2225. appearance196.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2226. appearance196.BorderColor = System.Drawing.SystemColors.Window;
  2227. this.ultraGrid11.DisplayLayout.GroupByBox.Appearance = appearance196;
  2228. appearance197.ForeColor = System.Drawing.SystemColors.GrayText;
  2229. this.ultraGrid11.DisplayLayout.GroupByBox.BandLabelAppearance = appearance197;
  2230. this.ultraGrid11.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2231. appearance198.BackColor = System.Drawing.SystemColors.ControlLightLight;
  2232. appearance198.BackColor2 = System.Drawing.SystemColors.Control;
  2233. appearance198.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2234. appearance198.ForeColor = System.Drawing.SystemColors.GrayText;
  2235. this.ultraGrid11.DisplayLayout.GroupByBox.PromptAppearance = appearance198;
  2236. this.ultraGrid11.DisplayLayout.MaxColScrollRegions = 1;
  2237. this.ultraGrid11.DisplayLayout.MaxRowScrollRegions = 1;
  2238. appearance199.BackColor = System.Drawing.SystemColors.Window;
  2239. appearance199.ForeColor = System.Drawing.SystemColors.ControlText;
  2240. this.ultraGrid11.DisplayLayout.Override.ActiveCellAppearance = appearance199;
  2241. appearance200.BackColor = System.Drawing.SystemColors.Highlight;
  2242. appearance200.ForeColor = System.Drawing.SystemColors.HighlightText;
  2243. this.ultraGrid11.DisplayLayout.Override.ActiveRowAppearance = appearance200;
  2244. this.ultraGrid11.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  2245. this.ultraGrid11.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  2246. this.ultraGrid11.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  2247. this.ultraGrid11.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  2248. appearance201.BackColor = System.Drawing.SystemColors.Window;
  2249. this.ultraGrid11.DisplayLayout.Override.CardAreaAppearance = appearance201;
  2250. appearance202.BorderColor = System.Drawing.Color.Silver;
  2251. appearance202.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  2252. this.ultraGrid11.DisplayLayout.Override.CellAppearance = appearance202;
  2253. this.ultraGrid11.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2254. this.ultraGrid11.DisplayLayout.Override.CellPadding = 0;
  2255. this.ultraGrid11.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  2256. appearance203.BackColor = System.Drawing.SystemColors.Control;
  2257. appearance203.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2258. appearance203.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2259. appearance203.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2260. appearance203.BorderColor = System.Drawing.SystemColors.Window;
  2261. this.ultraGrid11.DisplayLayout.Override.GroupByRowAppearance = appearance203;
  2262. appearance204.TextHAlignAsString = "Left";
  2263. this.ultraGrid11.DisplayLayout.Override.HeaderAppearance = appearance204;
  2264. this.ultraGrid11.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2265. this.ultraGrid11.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  2266. appearance205.BackColor = System.Drawing.SystemColors.Window;
  2267. appearance205.BorderColor = System.Drawing.Color.Silver;
  2268. this.ultraGrid11.DisplayLayout.Override.RowAppearance = appearance205;
  2269. this.ultraGrid11.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  2270. appearance206.BackColor = System.Drawing.SystemColors.ControlLight;
  2271. this.ultraGrid11.DisplayLayout.Override.TemplateAddRowAppearance = appearance206;
  2272. this.ultraGrid11.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2273. this.ultraGrid11.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2274. this.ultraGrid11.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2275. this.ultraGrid11.Dock = System.Windows.Forms.DockStyle.Fill;
  2276. this.ultraGrid11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2277. this.ultraGrid11.Location = new System.Drawing.Point(1, 18);
  2278. this.ultraGrid11.Name = "ultraGrid11";
  2279. this.ultraGrid11.Size = new System.Drawing.Size(446, 313);
  2280. this.ultraGrid11.TabIndex = 27;
  2281. this.ultraGrid11.Text = "取样要求队列";
  2282. //
  2283. // ultraGroupBox10
  2284. //
  2285. this.ultraGroupBox10.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  2286. this.ultraGroupBox10.Controls.Add(this.ultraGrid7);
  2287. this.ultraGroupBox10.Controls.Add(this.panel20);
  2288. this.ultraGroupBox10.Dock = System.Windows.Forms.DockStyle.Left;
  2289. this.ultraGroupBox10.Location = new System.Drawing.Point(0, 0);
  2290. this.ultraGroupBox10.Name = "ultraGroupBox10";
  2291. this.ultraGroupBox10.Size = new System.Drawing.Size(143, 332);
  2292. this.ultraGroupBox10.TabIndex = 20;
  2293. this.ultraGroupBox10.Text = "管号队列";
  2294. //
  2295. // ultraGrid7
  2296. //
  2297. this.ultraGrid7.DataMember = "Table7";
  2298. this.ultraGrid7.DataSource = this.dataSet2;
  2299. appearance78.BackColor = System.Drawing.SystemColors.Window;
  2300. appearance78.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  2301. this.ultraGrid7.DisplayLayout.Appearance = appearance78;
  2302. ultraGridBand10.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  2303. this.ultraGrid7.DisplayLayout.BandsSerializer.Add(ultraGridBand10);
  2304. this.ultraGrid7.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2305. this.ultraGrid7.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2306. appearance79.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2307. appearance79.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2308. appearance79.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2309. appearance79.BorderColor = System.Drawing.SystemColors.Window;
  2310. this.ultraGrid7.DisplayLayout.GroupByBox.Appearance = appearance79;
  2311. appearance80.ForeColor = System.Drawing.SystemColors.GrayText;
  2312. this.ultraGrid7.DisplayLayout.GroupByBox.BandLabelAppearance = appearance80;
  2313. this.ultraGrid7.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2314. appearance81.BackColor = System.Drawing.SystemColors.ControlLightLight;
  2315. appearance81.BackColor2 = System.Drawing.SystemColors.Control;
  2316. appearance81.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2317. appearance81.ForeColor = System.Drawing.SystemColors.GrayText;
  2318. this.ultraGrid7.DisplayLayout.GroupByBox.PromptAppearance = appearance81;
  2319. this.ultraGrid7.DisplayLayout.MaxColScrollRegions = 1;
  2320. this.ultraGrid7.DisplayLayout.MaxRowScrollRegions = 1;
  2321. appearance82.BackColor = System.Drawing.SystemColors.Window;
  2322. appearance82.ForeColor = System.Drawing.SystemColors.ControlText;
  2323. this.ultraGrid7.DisplayLayout.Override.ActiveCellAppearance = appearance82;
  2324. appearance83.BackColor = System.Drawing.SystemColors.Highlight;
  2325. appearance83.ForeColor = System.Drawing.SystemColors.HighlightText;
  2326. this.ultraGrid7.DisplayLayout.Override.ActiveRowAppearance = appearance83;
  2327. this.ultraGrid7.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  2328. this.ultraGrid7.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  2329. this.ultraGrid7.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  2330. this.ultraGrid7.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  2331. appearance84.BackColor = System.Drawing.SystemColors.Window;
  2332. this.ultraGrid7.DisplayLayout.Override.CardAreaAppearance = appearance84;
  2333. appearance85.BorderColor = System.Drawing.Color.Silver;
  2334. appearance85.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  2335. this.ultraGrid7.DisplayLayout.Override.CellAppearance = appearance85;
  2336. this.ultraGrid7.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2337. this.ultraGrid7.DisplayLayout.Override.CellPadding = 0;
  2338. this.ultraGrid7.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  2339. appearance86.BackColor = System.Drawing.SystemColors.Control;
  2340. appearance86.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2341. appearance86.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2342. appearance86.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2343. appearance86.BorderColor = System.Drawing.SystemColors.Window;
  2344. this.ultraGrid7.DisplayLayout.Override.GroupByRowAppearance = appearance86;
  2345. appearance87.TextHAlignAsString = "Left";
  2346. this.ultraGrid7.DisplayLayout.Override.HeaderAppearance = appearance87;
  2347. this.ultraGrid7.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2348. this.ultraGrid7.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  2349. appearance88.BackColor = System.Drawing.SystemColors.Window;
  2350. appearance88.BorderColor = System.Drawing.Color.Silver;
  2351. this.ultraGrid7.DisplayLayout.Override.RowAppearance = appearance88;
  2352. this.ultraGrid7.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  2353. appearance89.BackColor = System.Drawing.SystemColors.ControlLight;
  2354. this.ultraGrid7.DisplayLayout.Override.TemplateAddRowAppearance = appearance89;
  2355. this.ultraGrid7.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2356. this.ultraGrid7.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2357. this.ultraGrid7.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2358. this.ultraGrid7.Dock = System.Windows.Forms.DockStyle.Fill;
  2359. this.ultraGrid7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2360. this.ultraGrid7.Location = new System.Drawing.Point(1, 78);
  2361. this.ultraGrid7.Name = "ultraGrid7";
  2362. this.ultraGrid7.Size = new System.Drawing.Size(141, 253);
  2363. this.ultraGrid7.TabIndex = 29;
  2364. this.ultraGrid7.Text = "管号队列";
  2365. //
  2366. // panel20
  2367. //
  2368. this.panel20.Controls.Add(this.ultraGX_LOG);
  2369. this.panel20.Controls.Add(this.ultraLabel27);
  2370. this.panel20.Controls.Add(this.CHKISVALID_LOG);
  2371. this.panel20.Dock = System.Windows.Forms.DockStyle.Top;
  2372. this.panel20.Location = new System.Drawing.Point(1, 18);
  2373. this.panel20.Name = "panel20";
  2374. this.panel20.Size = new System.Drawing.Size(141, 60);
  2375. this.panel20.TabIndex = 28;
  2376. //
  2377. // ultraGX_LOG
  2378. //
  2379. this.ultraGX_LOG.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  2380. this.ultraGX_LOG.Location = new System.Drawing.Point(41, 32);
  2381. this.ultraGX_LOG.Name = "ultraGX_LOG";
  2382. this.ultraGX_LOG.ReadOnly = true;
  2383. this.ultraGX_LOG.Size = new System.Drawing.Size(80, 21);
  2384. this.ultraGX_LOG.TabIndex = 219;
  2385. this.ultraGX_LOG.TextChanged += new System.EventHandler(this.ultraGX_LOG_TextChanged);
  2386. //
  2387. // ultraLabel27
  2388. //
  2389. appearance2.TextHAlignAsString = "Right";
  2390. appearance2.TextVAlignAsString = "Middle";
  2391. this.ultraLabel27.Appearance = appearance2;
  2392. this.ultraLabel27.AutoSize = true;
  2393. this.ultraLabel27.Location = new System.Drawing.Point(8, 35);
  2394. this.ultraLabel27.Name = "ultraLabel27";
  2395. this.ultraLabel27.Size = new System.Drawing.Size(29, 16);
  2396. this.ultraLabel27.TabIndex = 218;
  2397. this.ultraLabel27.Text = "工序";
  2398. //
  2399. // CHKISVALID_LOG
  2400. //
  2401. this.CHKISVALID_LOG.AutoSize = true;
  2402. this.CHKISVALID_LOG.Checked = true;
  2403. this.CHKISVALID_LOG.CheckState = System.Windows.Forms.CheckState.Checked;
  2404. this.CHKISVALID_LOG.Location = new System.Drawing.Point(33, 10);
  2405. this.CHKISVALID_LOG.Margin = new System.Windows.Forms.Padding(2);
  2406. this.CHKISVALID_LOG.Name = "CHKISVALID_LOG";
  2407. this.CHKISVALID_LOG.Size = new System.Drawing.Size(71, 19);
  2408. this.CHKISVALID_LOG.TabIndex = 111;
  2409. this.CHKISVALID_LOG.Text = "是否有效";
  2410. this.CHKISVALID_LOG.CheckedChanged += new System.EventHandler(this.CHKISVALID_LOG_CheckedChanged);
  2411. //
  2412. // ultraGroupBox11
  2413. //
  2414. this.ultraGroupBox11.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  2415. this.ultraGroupBox11.Controls.Add(this.panel21);
  2416. this.ultraGroupBox11.Dock = System.Windows.Forms.DockStyle.Top;
  2417. this.ultraGroupBox11.Location = new System.Drawing.Point(0, 0);
  2418. this.ultraGroupBox11.Name = "ultraGroupBox11";
  2419. this.ultraGroupBox11.Size = new System.Drawing.Size(1142, 106);
  2420. this.ultraGroupBox11.TabIndex = 0;
  2421. this.ultraGroupBox11.Text = "基本信息";
  2422. //
  2423. // panel21
  2424. //
  2425. this.panel21.Controls.Add(this.ultraTextEditor4);
  2426. this.panel21.Controls.Add(this.txtSAMPLE_CLASS);
  2427. this.panel21.Controls.Add(this.ultraLabel43);
  2428. this.panel21.Controls.Add(this.txtSAMPLE_NAME);
  2429. this.panel21.Controls.Add(this.ultraLabel44);
  2430. this.panel21.Controls.Add(this.txtSAMPLE_TIME);
  2431. this.panel21.Controls.Add(this.ultraLabel45);
  2432. this.panel21.Controls.Add(this.txtBATCH_CLASS);
  2433. this.panel21.Controls.Add(this.ultraLabel42);
  2434. this.panel21.Controls.Add(this.txtBATCH_NAME);
  2435. this.panel21.Controls.Add(this.ultraLabel41);
  2436. this.panel21.Controls.Add(this.txtBATCH_TIME);
  2437. this.panel21.Controls.Add(this.ultraLabel40);
  2438. this.panel21.Controls.Add(this.ultraTextEditor5);
  2439. this.panel21.Controls.Add(this.ultraTextEditor6);
  2440. this.panel21.Controls.Add(this.ultraLabel28);
  2441. this.panel21.Controls.Add(this.ultraTextEditor7);
  2442. this.panel21.Controls.Add(this.ultraLabel29);
  2443. this.panel21.Controls.Add(this.ultraLabel30);
  2444. this.panel21.Controls.Add(this.ultraLabel31);
  2445. this.panel21.Controls.Add(this.txtBATCH_MAX_LOG);
  2446. this.panel21.Controls.Add(this.ultraLabel32);
  2447. this.panel21.Controls.Add(this.ultraTextEditor9);
  2448. this.panel21.Controls.Add(this.ultraLabel33);
  2449. this.panel21.Controls.Add(this.ultraTextEditor10);
  2450. this.panel21.Controls.Add(this.ultraTextEditor11);
  2451. this.panel21.Controls.Add(this.ultraLabel34);
  2452. this.panel21.Controls.Add(this.ultraLabel35);
  2453. this.panel21.Controls.Add(this.ultraTextEditor12);
  2454. this.panel21.Controls.Add(this.ultraLabel36);
  2455. this.panel21.Controls.Add(this.ultraTextEditor13);
  2456. this.panel21.Controls.Add(this.ultraTextEditor14);
  2457. this.panel21.Controls.Add(this.ultraLabel37);
  2458. this.panel21.Controls.Add(this.ultraLabel38);
  2459. this.panel21.Controls.Add(this.ultraTextEditor15);
  2460. this.panel21.Controls.Add(this.ultraLabel39);
  2461. this.panel21.Dock = System.Windows.Forms.DockStyle.Fill;
  2462. this.panel21.Location = new System.Drawing.Point(1, 18);
  2463. this.panel21.Name = "panel21";
  2464. this.panel21.Size = new System.Drawing.Size(1140, 87);
  2465. this.panel21.TabIndex = 24;
  2466. //
  2467. // ultraTextEditor4
  2468. //
  2469. this.ultraTextEditor4.Location = new System.Drawing.Point(648, 59);
  2470. this.ultraTextEditor4.MaxLength = 200;
  2471. this.ultraTextEditor4.Name = "ultraTextEditor4";
  2472. this.ultraTextEditor4.Size = new System.Drawing.Size(100, 21);
  2473. this.ultraTextEditor4.TabIndex = 166;
  2474. //
  2475. // txtSAMPLE_CLASS
  2476. //
  2477. this.txtSAMPLE_CLASS.Location = new System.Drawing.Point(972, 59);
  2478. this.txtSAMPLE_CLASS.MaxLength = 200;
  2479. this.txtSAMPLE_CLASS.Name = "txtSAMPLE_CLASS";
  2480. this.txtSAMPLE_CLASS.Size = new System.Drawing.Size(100, 21);
  2481. this.txtSAMPLE_CLASS.TabIndex = 165;
  2482. //
  2483. // ultraLabel43
  2484. //
  2485. appearance162.TextHAlignAsString = "Right";
  2486. appearance162.TextVAlignAsString = "Middle";
  2487. this.ultraLabel43.Appearance = appearance162;
  2488. this.ultraLabel43.AutoSize = true;
  2489. this.ultraLabel43.Location = new System.Drawing.Point(914, 62);
  2490. this.ultraLabel43.Name = "ultraLabel43";
  2491. this.ultraLabel43.Size = new System.Drawing.Size(54, 16);
  2492. this.ultraLabel43.TabIndex = 164;
  2493. this.ultraLabel43.Text = "取样班组";
  2494. //
  2495. // txtSAMPLE_NAME
  2496. //
  2497. this.txtSAMPLE_NAME.Location = new System.Drawing.Point(972, 9);
  2498. this.txtSAMPLE_NAME.MaxLength = 200;
  2499. this.txtSAMPLE_NAME.Name = "txtSAMPLE_NAME";
  2500. this.txtSAMPLE_NAME.Size = new System.Drawing.Size(100, 21);
  2501. this.txtSAMPLE_NAME.TabIndex = 163;
  2502. //
  2503. // ultraLabel44
  2504. //
  2505. appearance107.TextHAlignAsString = "Right";
  2506. appearance107.TextVAlignAsString = "Middle";
  2507. this.ultraLabel44.Appearance = appearance107;
  2508. this.ultraLabel44.AutoSize = true;
  2509. this.ultraLabel44.Location = new System.Drawing.Point(926, 12);
  2510. this.ultraLabel44.Name = "ultraLabel44";
  2511. this.ultraLabel44.Size = new System.Drawing.Size(42, 16);
  2512. this.ultraLabel44.TabIndex = 162;
  2513. this.ultraLabel44.Text = "取样人";
  2514. //
  2515. // txtSAMPLE_TIME
  2516. //
  2517. this.txtSAMPLE_TIME.Location = new System.Drawing.Point(972, 34);
  2518. this.txtSAMPLE_TIME.MaxLength = 200;
  2519. this.txtSAMPLE_TIME.Name = "txtSAMPLE_TIME";
  2520. this.txtSAMPLE_TIME.Size = new System.Drawing.Size(100, 21);
  2521. this.txtSAMPLE_TIME.TabIndex = 161;
  2522. //
  2523. // ultraLabel45
  2524. //
  2525. appearance163.TextHAlignAsString = "Right";
  2526. appearance163.TextVAlignAsString = "Middle";
  2527. this.ultraLabel45.Appearance = appearance163;
  2528. this.ultraLabel45.AutoSize = true;
  2529. this.ultraLabel45.Location = new System.Drawing.Point(914, 37);
  2530. this.ultraLabel45.Name = "ultraLabel45";
  2531. this.ultraLabel45.Size = new System.Drawing.Size(54, 16);
  2532. this.ultraLabel45.TabIndex = 160;
  2533. this.ultraLabel45.Text = "取样时间";
  2534. //
  2535. // txtBATCH_CLASS
  2536. //
  2537. this.txtBATCH_CLASS.Location = new System.Drawing.Point(810, 59);
  2538. this.txtBATCH_CLASS.MaxLength = 200;
  2539. this.txtBATCH_CLASS.Name = "txtBATCH_CLASS";
  2540. this.txtBATCH_CLASS.Size = new System.Drawing.Size(100, 21);
  2541. this.txtBATCH_CLASS.TabIndex = 159;
  2542. //
  2543. // ultraLabel42
  2544. //
  2545. appearance164.TextHAlignAsString = "Right";
  2546. appearance164.TextVAlignAsString = "Middle";
  2547. this.ultraLabel42.Appearance = appearance164;
  2548. this.ultraLabel42.AutoSize = true;
  2549. this.ultraLabel42.Location = new System.Drawing.Point(752, 62);
  2550. this.ultraLabel42.Name = "ultraLabel42";
  2551. this.ultraLabel42.Size = new System.Drawing.Size(54, 16);
  2552. this.ultraLabel42.TabIndex = 158;
  2553. this.ultraLabel42.Text = "组批班组";
  2554. //
  2555. // txtBATCH_NAME
  2556. //
  2557. this.txtBATCH_NAME.Location = new System.Drawing.Point(810, 9);
  2558. this.txtBATCH_NAME.MaxLength = 200;
  2559. this.txtBATCH_NAME.Name = "txtBATCH_NAME";
  2560. this.txtBATCH_NAME.Size = new System.Drawing.Size(100, 21);
  2561. this.txtBATCH_NAME.TabIndex = 157;
  2562. //
  2563. // ultraLabel41
  2564. //
  2565. appearance165.TextHAlignAsString = "Right";
  2566. appearance165.TextVAlignAsString = "Middle";
  2567. this.ultraLabel41.Appearance = appearance165;
  2568. this.ultraLabel41.AutoSize = true;
  2569. this.ultraLabel41.Location = new System.Drawing.Point(764, 12);
  2570. this.ultraLabel41.Name = "ultraLabel41";
  2571. this.ultraLabel41.Size = new System.Drawing.Size(42, 16);
  2572. this.ultraLabel41.TabIndex = 156;
  2573. this.ultraLabel41.Text = "组批人";
  2574. //
  2575. // txtBATCH_TIME
  2576. //
  2577. this.txtBATCH_TIME.Location = new System.Drawing.Point(810, 34);
  2578. this.txtBATCH_TIME.MaxLength = 200;
  2579. this.txtBATCH_TIME.Name = "txtBATCH_TIME";
  2580. this.txtBATCH_TIME.Size = new System.Drawing.Size(100, 21);
  2581. this.txtBATCH_TIME.TabIndex = 155;
  2582. //
  2583. // ultraLabel40
  2584. //
  2585. appearance166.TextHAlignAsString = "Right";
  2586. appearance166.TextVAlignAsString = "Middle";
  2587. this.ultraLabel40.Appearance = appearance166;
  2588. this.ultraLabel40.AutoSize = true;
  2589. this.ultraLabel40.Location = new System.Drawing.Point(752, 37);
  2590. this.ultraLabel40.Name = "ultraLabel40";
  2591. this.ultraLabel40.Size = new System.Drawing.Size(54, 16);
  2592. this.ultraLabel40.TabIndex = 154;
  2593. this.ultraLabel40.Text = "组批时间";
  2594. //
  2595. // ultraTextEditor5
  2596. //
  2597. this.ultraTextEditor5.Location = new System.Drawing.Point(242, 34);
  2598. this.ultraTextEditor5.MaxLength = 200;
  2599. this.ultraTextEditor5.Name = "ultraTextEditor5";
  2600. this.ultraTextEditor5.Size = new System.Drawing.Size(141, 21);
  2601. this.ultraTextEditor5.TabIndex = 153;
  2602. //
  2603. // ultraTextEditor6
  2604. //
  2605. this.ultraTextEditor6.Location = new System.Drawing.Point(242, 59);
  2606. this.ultraTextEditor6.Name = "ultraTextEditor6";
  2607. this.ultraTextEditor6.Size = new System.Drawing.Size(141, 21);
  2608. this.ultraTextEditor6.TabIndex = 152;
  2609. //
  2610. // ultraLabel28
  2611. //
  2612. appearance11.TextHAlignAsString = "Right";
  2613. appearance11.TextVAlignAsString = "Middle";
  2614. this.ultraLabel28.Appearance = appearance11;
  2615. this.ultraLabel28.AutoSize = true;
  2616. this.ultraLabel28.Location = new System.Drawing.Point(184, 62);
  2617. this.ultraLabel28.Name = "ultraLabel28";
  2618. this.ultraLabel28.Size = new System.Drawing.Size(54, 16);
  2619. this.ultraLabel28.TabIndex = 151;
  2620. this.ultraLabel28.Text = "标准类别";
  2621. //
  2622. // ultraTextEditor7
  2623. //
  2624. this.ultraTextEditor7.Location = new System.Drawing.Point(241, 9);
  2625. this.ultraTextEditor7.MaxLength = 200;
  2626. this.ultraTextEditor7.Name = "ultraTextEditor7";
  2627. this.ultraTextEditor7.Size = new System.Drawing.Size(142, 21);
  2628. this.ultraTextEditor7.TabIndex = 150;
  2629. //
  2630. // ultraLabel29
  2631. //
  2632. appearance25.TextHAlignAsString = "Right";
  2633. appearance25.TextVAlignAsString = "Middle";
  2634. this.ultraLabel29.Appearance = appearance25;
  2635. this.ultraLabel29.AutoSize = true;
  2636. this.ultraLabel29.Location = new System.Drawing.Point(209, 37);
  2637. this.ultraLabel29.Name = "ultraLabel29";
  2638. this.ultraLabel29.Size = new System.Drawing.Size(29, 16);
  2639. this.ultraLabel29.TabIndex = 149;
  2640. this.ultraLabel29.Text = "标准";
  2641. //
  2642. // ultraLabel30
  2643. //
  2644. appearance26.TextHAlignAsString = "Right";
  2645. appearance26.TextVAlignAsString = "Middle";
  2646. this.ultraLabel30.Appearance = appearance26;
  2647. this.ultraLabel30.AutoSize = true;
  2648. this.ultraLabel30.Location = new System.Drawing.Point(208, 12);
  2649. this.ultraLabel30.Name = "ultraLabel30";
  2650. this.ultraLabel30.RightToLeft = System.Windows.Forms.RightToLeft.No;
  2651. this.ultraLabel30.Size = new System.Drawing.Size(29, 16);
  2652. this.ultraLabel30.TabIndex = 148;
  2653. this.ultraLabel30.Text = "品名";
  2654. //
  2655. // ultraLabel31
  2656. //
  2657. appearance76.TextHAlignAsString = "Right";
  2658. appearance76.TextVAlignAsString = "Middle";
  2659. this.ultraLabel31.Appearance = appearance76;
  2660. this.ultraLabel31.AutoSize = true;
  2661. this.ultraLabel31.Location = new System.Drawing.Point(590, 62);
  2662. this.ultraLabel31.Name = "ultraLabel31";
  2663. this.ultraLabel31.Size = new System.Drawing.Size(54, 16);
  2664. this.ultraLabel31.TabIndex = 146;
  2665. this.ultraLabel31.Text = "长度范围";
  2666. //
  2667. // txtBATCH_MAX_LOG
  2668. //
  2669. this.txtBATCH_MAX_LOG.Location = new System.Drawing.Point(70, 59);
  2670. this.txtBATCH_MAX_LOG.MaxLength = 100;
  2671. this.txtBATCH_MAX_LOG.Name = "txtBATCH_MAX_LOG";
  2672. this.txtBATCH_MAX_LOG.ReadOnly = true;
  2673. this.txtBATCH_MAX_LOG.Size = new System.Drawing.Size(110, 21);
  2674. this.txtBATCH_MAX_LOG.TabIndex = 144;
  2675. //
  2676. // ultraLabel32
  2677. //
  2678. appearance96.TextHAlignAsString = "Right";
  2679. appearance96.TextVAlignAsString = "Middle";
  2680. this.ultraLabel32.Appearance = appearance96;
  2681. this.ultraLabel32.AutoSize = true;
  2682. this.ultraLabel32.Location = new System.Drawing.Point(12, 62);
  2683. this.ultraLabel32.Name = "ultraLabel32";
  2684. this.ultraLabel32.Size = new System.Drawing.Size(54, 16);
  2685. this.ultraLabel32.TabIndex = 145;
  2686. this.ultraLabel32.Text = "分批上限";
  2687. //
  2688. // ultraTextEditor9
  2689. //
  2690. this.ultraTextEditor9.Location = new System.Drawing.Point(648, 9);
  2691. this.ultraTextEditor9.MaxLength = 200;
  2692. this.ultraTextEditor9.Name = "ultraTextEditor9";
  2693. this.ultraTextEditor9.Size = new System.Drawing.Size(100, 21);
  2694. this.ultraTextEditor9.TabIndex = 143;
  2695. //
  2696. // ultraLabel33
  2697. //
  2698. appearance161.TextHAlignAsString = "Right";
  2699. appearance161.TextVAlignAsString = "Middle";
  2700. this.ultraLabel33.Appearance = appearance161;
  2701. this.ultraLabel33.AutoSize = true;
  2702. this.ultraLabel33.Location = new System.Drawing.Point(615, 12);
  2703. this.ultraLabel33.Name = "ultraLabel33";
  2704. this.ultraLabel33.Size = new System.Drawing.Size(29, 16);
  2705. this.ultraLabel33.TabIndex = 142;
  2706. this.ultraLabel33.Text = "扣型";
  2707. //
  2708. // ultraTextEditor10
  2709. //
  2710. this.ultraTextEditor10.Location = new System.Drawing.Point(648, 34);
  2711. this.ultraTextEditor10.MaxLength = 200;
  2712. this.ultraTextEditor10.Name = "ultraTextEditor10";
  2713. this.ultraTextEditor10.Size = new System.Drawing.Size(100, 21);
  2714. this.ultraTextEditor10.TabIndex = 137;
  2715. //
  2716. // ultraTextEditor11
  2717. //
  2718. this.ultraTextEditor11.Location = new System.Drawing.Point(445, 34);
  2719. this.ultraTextEditor11.MaxLength = 200;
  2720. this.ultraTextEditor11.Name = "ultraTextEditor11";
  2721. this.ultraTextEditor11.Size = new System.Drawing.Size(141, 21);
  2722. this.ultraTextEditor11.TabIndex = 131;
  2723. //
  2724. // ultraLabel34
  2725. //
  2726. appearance34.TextHAlignAsString = "Right";
  2727. appearance34.TextVAlignAsString = "Middle";
  2728. this.ultraLabel34.Appearance = appearance34;
  2729. this.ultraLabel34.AutoSize = true;
  2730. this.ultraLabel34.Location = new System.Drawing.Point(590, 37);
  2731. this.ultraLabel34.Name = "ultraLabel34";
  2732. this.ultraLabel34.Size = new System.Drawing.Size(54, 16);
  2733. this.ultraLabel34.TabIndex = 130;
  2734. this.ultraLabel34.Text = "目标长度";
  2735. //
  2736. // ultraLabel35
  2737. //
  2738. appearance52.TextHAlignAsString = "Right";
  2739. appearance52.TextVAlignAsString = "Middle";
  2740. this.ultraLabel35.Appearance = appearance52;
  2741. this.ultraLabel35.AutoSize = true;
  2742. this.ultraLabel35.Location = new System.Drawing.Point(37, 37);
  2743. this.ultraLabel35.Name = "ultraLabel35";
  2744. this.ultraLabel35.Size = new System.Drawing.Size(29, 16);
  2745. this.ultraLabel35.TabIndex = 128;
  2746. this.ultraLabel35.Text = "炉号";
  2747. //
  2748. // ultraTextEditor12
  2749. //
  2750. this.ultraTextEditor12.Location = new System.Drawing.Point(445, 59);
  2751. this.ultraTextEditor12.Name = "ultraTextEditor12";
  2752. this.ultraTextEditor12.Size = new System.Drawing.Size(141, 21);
  2753. this.ultraTextEditor12.TabIndex = 127;
  2754. //
  2755. // ultraLabel36
  2756. //
  2757. appearance5.TextHAlignAsString = "Right";
  2758. appearance5.TextVAlignAsString = "Middle";
  2759. this.ultraLabel36.Appearance = appearance5;
  2760. this.ultraLabel36.AutoSize = true;
  2761. this.ultraLabel36.Location = new System.Drawing.Point(412, 62);
  2762. this.ultraLabel36.Name = "ultraLabel36";
  2763. this.ultraLabel36.Size = new System.Drawing.Size(29, 16);
  2764. this.ultraLabel36.TabIndex = 126;
  2765. this.ultraLabel36.Text = "规格";
  2766. //
  2767. // ultraTextEditor13
  2768. //
  2769. this.ultraTextEditor13.Location = new System.Drawing.Point(444, 9);
  2770. this.ultraTextEditor13.MaxLength = 200;
  2771. this.ultraTextEditor13.Name = "ultraTextEditor13";
  2772. this.ultraTextEditor13.Size = new System.Drawing.Size(142, 21);
  2773. this.ultraTextEditor13.TabIndex = 125;
  2774. //
  2775. // ultraTextEditor14
  2776. //
  2777. this.ultraTextEditor14.Location = new System.Drawing.Point(70, 34);
  2778. this.ultraTextEditor14.MaxLength = 200;
  2779. this.ultraTextEditor14.Name = "ultraTextEditor14";
  2780. this.ultraTextEditor14.Size = new System.Drawing.Size(109, 21);
  2781. this.ultraTextEditor14.TabIndex = 123;
  2782. //
  2783. // ultraLabel37
  2784. //
  2785. appearance8.TextHAlignAsString = "Right";
  2786. appearance8.TextVAlignAsString = "Middle";
  2787. this.ultraLabel37.Appearance = appearance8;
  2788. this.ultraLabel37.AutoSize = true;
  2789. this.ultraLabel37.Location = new System.Drawing.Point(412, 37);
  2790. this.ultraLabel37.Name = "ultraLabel37";
  2791. this.ultraLabel37.Size = new System.Drawing.Size(29, 16);
  2792. this.ultraLabel37.TabIndex = 122;
  2793. this.ultraLabel37.Text = "钢号";
  2794. //
  2795. // ultraLabel38
  2796. //
  2797. appearance33.TextHAlignAsString = "Right";
  2798. appearance33.TextVAlignAsString = "Middle";
  2799. this.ultraLabel38.Appearance = appearance33;
  2800. this.ultraLabel38.AutoSize = true;
  2801. this.ultraLabel38.Location = new System.Drawing.Point(411, 12);
  2802. this.ultraLabel38.Name = "ultraLabel38";
  2803. this.ultraLabel38.RightToLeft = System.Windows.Forms.RightToLeft.No;
  2804. this.ultraLabel38.Size = new System.Drawing.Size(29, 16);
  2805. this.ultraLabel38.TabIndex = 120;
  2806. this.ultraLabel38.Text = "钢级";
  2807. //
  2808. // ultraTextEditor15
  2809. //
  2810. this.ultraTextEditor15.Location = new System.Drawing.Point(70, 9);
  2811. this.ultraTextEditor15.MaxLength = 100;
  2812. this.ultraTextEditor15.Name = "ultraTextEditor15";
  2813. this.ultraTextEditor15.Size = new System.Drawing.Size(110, 21);
  2814. this.ultraTextEditor15.TabIndex = 118;
  2815. //
  2816. // ultraLabel39
  2817. //
  2818. appearance103.TextHAlignAsString = "Right";
  2819. appearance103.TextVAlignAsString = "Middle";
  2820. this.ultraLabel39.Appearance = appearance103;
  2821. this.ultraLabel39.AutoSize = true;
  2822. this.ultraLabel39.Location = new System.Drawing.Point(12, 12);
  2823. this.ultraLabel39.Name = "ultraLabel39";
  2824. this.ultraLabel39.Size = new System.Drawing.Size(54, 16);
  2825. this.ultraLabel39.TabIndex = 119;
  2826. this.ultraLabel39.Text = "生产批号";
  2827. //
  2828. // ultraGroupBox12
  2829. //
  2830. this.ultraGroupBox12.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  2831. this.ultraGroupBox12.Controls.Add(this.ultraGrid6);
  2832. this.ultraGroupBox12.Dock = System.Windows.Forms.DockStyle.Left;
  2833. this.ultraGroupBox12.Location = new System.Drawing.Point(0, 0);
  2834. this.ultraGroupBox12.Name = "ultraGroupBox12";
  2835. this.ultraGroupBox12.Size = new System.Drawing.Size(180, 438);
  2836. this.ultraGroupBox12.TabIndex = 19;
  2837. this.ultraGroupBox12.Text = "生产批号、炉号队列";
  2838. //
  2839. // ultraGrid6
  2840. //
  2841. this.ultraGrid6.DataMember = "Table6";
  2842. this.ultraGrid6.DataSource = this.dataSet2;
  2843. appearance3.BackColor = System.Drawing.SystemColors.Window;
  2844. appearance3.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  2845. this.ultraGrid6.DisplayLayout.Appearance = appearance3;
  2846. ultraGridBand11.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  2847. this.ultraGrid6.DisplayLayout.BandsSerializer.Add(ultraGridBand11);
  2848. this.ultraGrid6.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2849. this.ultraGrid6.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2850. appearance4.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2851. appearance4.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2852. appearance4.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2853. appearance4.BorderColor = System.Drawing.SystemColors.Window;
  2854. this.ultraGrid6.DisplayLayout.GroupByBox.Appearance = appearance4;
  2855. appearance6.ForeColor = System.Drawing.SystemColors.GrayText;
  2856. this.ultraGrid6.DisplayLayout.GroupByBox.BandLabelAppearance = appearance6;
  2857. this.ultraGrid6.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2858. appearance1.BackColor = System.Drawing.SystemColors.ControlLightLight;
  2859. appearance1.BackColor2 = System.Drawing.SystemColors.Control;
  2860. appearance1.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2861. appearance1.ForeColor = System.Drawing.SystemColors.GrayText;
  2862. this.ultraGrid6.DisplayLayout.GroupByBox.PromptAppearance = appearance1;
  2863. this.ultraGrid6.DisplayLayout.MaxColScrollRegions = 1;
  2864. this.ultraGrid6.DisplayLayout.MaxRowScrollRegions = 1;
  2865. appearance9.BackColor = System.Drawing.SystemColors.Window;
  2866. appearance9.ForeColor = System.Drawing.SystemColors.ControlText;
  2867. this.ultraGrid6.DisplayLayout.Override.ActiveCellAppearance = appearance9;
  2868. appearance10.BackColor = System.Drawing.SystemColors.Highlight;
  2869. appearance10.ForeColor = System.Drawing.SystemColors.HighlightText;
  2870. this.ultraGrid6.DisplayLayout.Override.ActiveRowAppearance = appearance10;
  2871. this.ultraGrid6.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  2872. this.ultraGrid6.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  2873. this.ultraGrid6.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  2874. this.ultraGrid6.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  2875. appearance12.BackColor = System.Drawing.SystemColors.Window;
  2876. this.ultraGrid6.DisplayLayout.Override.CardAreaAppearance = appearance12;
  2877. appearance13.BorderColor = System.Drawing.Color.Silver;
  2878. appearance13.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  2879. this.ultraGrid6.DisplayLayout.Override.CellAppearance = appearance13;
  2880. this.ultraGrid6.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2881. this.ultraGrid6.DisplayLayout.Override.CellPadding = 0;
  2882. this.ultraGrid6.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  2883. appearance16.BackColor = System.Drawing.SystemColors.Control;
  2884. appearance16.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2885. appearance16.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2886. appearance16.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2887. appearance16.BorderColor = System.Drawing.SystemColors.Window;
  2888. this.ultraGrid6.DisplayLayout.Override.GroupByRowAppearance = appearance16;
  2889. appearance17.TextHAlignAsString = "Left";
  2890. this.ultraGrid6.DisplayLayout.Override.HeaderAppearance = appearance17;
  2891. this.ultraGrid6.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2892. this.ultraGrid6.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  2893. appearance19.BackColor = System.Drawing.SystemColors.Window;
  2894. appearance19.BorderColor = System.Drawing.Color.Silver;
  2895. this.ultraGrid6.DisplayLayout.Override.RowAppearance = appearance19;
  2896. this.ultraGrid6.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  2897. appearance20.BackColor = System.Drawing.SystemColors.ControlLight;
  2898. this.ultraGrid6.DisplayLayout.Override.TemplateAddRowAppearance = appearance20;
  2899. this.ultraGrid6.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2900. this.ultraGrid6.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2901. this.ultraGrid6.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2902. this.ultraGrid6.Dock = System.Windows.Forms.DockStyle.Fill;
  2903. this.ultraGrid6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2904. this.ultraGrid6.Location = new System.Drawing.Point(1, 18);
  2905. this.ultraGrid6.Name = "ultraGrid6";
  2906. this.ultraGrid6.Size = new System.Drawing.Size(178, 419);
  2907. this.ultraGrid6.TabIndex = 27;
  2908. this.ultraGrid6.Text = "生产批号、炉号队列";
  2909. this.ultraGrid6.AfterRowActivate += new System.EventHandler(this.ultraGrid6_AfterRowActivate);
  2910. //
  2911. // ultraTabPageControl2
  2912. //
  2913. this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
  2914. this.ultraTabPageControl2.Name = "ultraTabPageControl2";
  2915. this.ultraTabPageControl2.Size = new System.Drawing.Size(1322, 438);
  2916. //
  2917. // panel1
  2918. //
  2919. this.panel1.Controls.Add(this.panel3);
  2920. this.panel1.Controls.Add(this.panel2);
  2921. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  2922. this.panel1.Location = new System.Drawing.Point(0, 0);
  2923. this.panel1.Name = "panel1";
  2924. this.panel1.Size = new System.Drawing.Size(1328, 506);
  2925. this.panel1.TabIndex = 0;
  2926. //
  2927. // panel3
  2928. //
  2929. this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2930. this.panel3.Controls.Add(this.ultraTabControl1);
  2931. this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
  2932. this.panel3.Location = new System.Drawing.Point(0, 40);
  2933. this.panel3.Name = "panel3";
  2934. this.panel3.Size = new System.Drawing.Size(1328, 466);
  2935. this.panel3.TabIndex = 18;
  2936. //
  2937. // ultraTabControl1
  2938. //
  2939. this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
  2940. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
  2941. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl3);
  2942. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
  2943. this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  2944. this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
  2945. this.ultraTabControl1.Name = "ultraTabControl1";
  2946. this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
  2947. this.ultraTabControl1.Size = new System.Drawing.Size(1326, 464);
  2948. this.ultraTabControl1.TabIndex = 19;
  2949. ultraTab2.TabPage = this.ultraTabPageControl1;
  2950. ultraTab2.Text = "未组批";
  2951. ultraTab6.TabPage = this.ultraTabPageControl3;
  2952. ultraTab6.Text = "已组批未取样";
  2953. ultraTab7.TabPage = this.ultraTabPageControl2;
  2954. ultraTab7.Text = "委托确认";
  2955. this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  2956. ultraTab2,
  2957. ultraTab6,
  2958. ultraTab7});
  2959. //
  2960. // ultraTabSharedControlsPage1
  2961. //
  2962. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
  2963. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  2964. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1322, 438);
  2965. //
  2966. // panel2
  2967. //
  2968. this.panel2.Controls.Add(this.chkLOT_NO);
  2969. this.panel2.Controls.Add(this.chkJUDGE_STOVE_NO);
  2970. this.panel2.Controls.Add(this.txtQueryJUDGE_STOVE_NO);
  2971. this.panel2.Controls.Add(this.txtQueryLOT_NO);
  2972. this.panel2.Controls.Add(this.ultraLabel8);
  2973. this.panel2.Controls.Add(this.dateEnd);
  2974. this.panel2.Controls.Add(this.chkCONSIGN_TIME);
  2975. this.panel2.Controls.Add(this.dateBegin);
  2976. this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
  2977. this.panel2.Location = new System.Drawing.Point(0, 0);
  2978. this.panel2.Name = "panel2";
  2979. this.panel2.Size = new System.Drawing.Size(1328, 40);
  2980. this.panel2.TabIndex = 17;
  2981. //
  2982. // chkLOT_NO
  2983. //
  2984. this.chkLOT_NO.AutoSize = true;
  2985. this.chkLOT_NO.Location = new System.Drawing.Point(300, 12);
  2986. this.chkLOT_NO.Margin = new System.Windows.Forms.Padding(2);
  2987. this.chkLOT_NO.Name = "chkLOT_NO";
  2988. this.chkLOT_NO.Size = new System.Drawing.Size(71, 19);
  2989. this.chkLOT_NO.TabIndex = 110;
  2990. this.chkLOT_NO.Text = "生产批号";
  2991. //
  2992. // chkJUDGE_STOVE_NO
  2993. //
  2994. this.chkJUDGE_STOVE_NO.AutoSize = true;
  2995. this.chkJUDGE_STOVE_NO.Location = new System.Drawing.Point(471, 12);
  2996. this.chkJUDGE_STOVE_NO.Margin = new System.Windows.Forms.Padding(2);
  2997. this.chkJUDGE_STOVE_NO.Name = "chkJUDGE_STOVE_NO";
  2998. this.chkJUDGE_STOVE_NO.Size = new System.Drawing.Size(46, 19);
  2999. this.chkJUDGE_STOVE_NO.TabIndex = 111;
  3000. this.chkJUDGE_STOVE_NO.Text = "炉号";
  3001. //
  3002. // txtQueryJUDGE_STOVE_NO
  3003. //
  3004. this.txtQueryJUDGE_STOVE_NO.Location = new System.Drawing.Point(521, 11);
  3005. this.txtQueryJUDGE_STOVE_NO.MaxLength = 100;
  3006. this.txtQueryJUDGE_STOVE_NO.Name = "txtQueryJUDGE_STOVE_NO";
  3007. this.txtQueryJUDGE_STOVE_NO.Size = new System.Drawing.Size(92, 21);
  3008. this.txtQueryJUDGE_STOVE_NO.TabIndex = 107;
  3009. //
  3010. // txtQueryLOT_NO
  3011. //
  3012. this.txtQueryLOT_NO.Location = new System.Drawing.Point(375, 11);
  3013. this.txtQueryLOT_NO.MaxLength = 100;
  3014. this.txtQueryLOT_NO.Name = "txtQueryLOT_NO";
  3015. this.txtQueryLOT_NO.Size = new System.Drawing.Size(92, 21);
  3016. this.txtQueryLOT_NO.TabIndex = 106;
  3017. //
  3018. // ultraLabel8
  3019. //
  3020. appearance15.TextHAlignAsString = "Center";
  3021. appearance15.TextVAlignAsString = "Middle";
  3022. this.ultraLabel8.Appearance = appearance15;
  3023. this.ultraLabel8.AutoSize = true;
  3024. this.ultraLabel8.Location = new System.Drawing.Point(183, 14);
  3025. this.ultraLabel8.Name = "ultraLabel8";
  3026. this.ultraLabel8.Size = new System.Drawing.Size(17, 16);
  3027. this.ultraLabel8.TabIndex = 108;
  3028. this.ultraLabel8.Text = "至";
  3029. //
  3030. // dateEnd
  3031. //
  3032. this.dateEnd.DateTime = new System.DateTime(2015, 9, 16, 0, 0, 0, 0);
  3033. this.dateEnd.FormatProvider = new System.Globalization.CultureInfo("sq-AL");
  3034. this.dateEnd.Location = new System.Drawing.Point(204, 11);
  3035. this.dateEnd.Name = "dateEnd";
  3036. this.dateEnd.Size = new System.Drawing.Size(92, 21);
  3037. this.dateEnd.TabIndex = 105;
  3038. this.dateEnd.Value = new System.DateTime(2015, 9, 16, 0, 0, 0, 0);
  3039. //
  3040. // chkCONSIGN_TIME
  3041. //
  3042. appearance7.TextHAlignAsString = "Left";
  3043. this.chkCONSIGN_TIME.Appearance = appearance7;
  3044. this.chkCONSIGN_TIME.AutoSize = true;
  3045. this.chkCONSIGN_TIME.Checked = true;
  3046. this.chkCONSIGN_TIME.CheckState = System.Windows.Forms.CheckState.Checked;
  3047. this.chkCONSIGN_TIME.Location = new System.Drawing.Point(12, 12);
  3048. this.chkCONSIGN_TIME.Name = "chkCONSIGN_TIME";
  3049. this.chkCONSIGN_TIME.Size = new System.Drawing.Size(71, 19);
  3050. this.chkCONSIGN_TIME.TabIndex = 109;
  3051. this.chkCONSIGN_TIME.Text = "生产时间";
  3052. //
  3053. // dateBegin
  3054. //
  3055. this.dateBegin.DateTime = new System.DateTime(2015, 9, 16, 0, 0, 0, 0);
  3056. this.dateBegin.FormatProvider = new System.Globalization.CultureInfo("sq-AL");
  3057. this.dateBegin.FormatString = "";
  3058. this.dateBegin.Location = new System.Drawing.Point(87, 11);
  3059. this.dateBegin.MaskInput = "";
  3060. this.dateBegin.Name = "dateBegin";
  3061. this.dateBegin.Size = new System.Drawing.Size(92, 21);
  3062. this.dateBegin.TabIndex = 104;
  3063. this.dateBegin.Value = new System.DateTime(2015, 9, 16, 0, 0, 0, 0);
  3064. //
  3065. // ultraTabSharedControlsPage2
  3066. //
  3067. this.ultraTabSharedControlsPage2.Location = new System.Drawing.Point(1, 20);
  3068. this.ultraTabSharedControlsPage2.Name = "ultraTabSharedControlsPage2";
  3069. this.ultraTabSharedControlsPage2.Size = new System.Drawing.Size(196, 77);
  3070. //
  3071. // ultraTabControl2
  3072. //
  3073. this.ultraTabControl2.Location = new System.Drawing.Point(0, 0);
  3074. this.ultraTabControl2.Name = "ultraTabControl2";
  3075. this.ultraTabControl2.SharedControlsPage = this.ultraTabSharedControlsPage2;
  3076. this.ultraTabControl2.Size = new System.Drawing.Size(200, 100);
  3077. this.ultraTabControl2.TabIndex = 0;
  3078. //
  3079. // btnSampleSeq
  3080. //
  3081. this.btnSampleSeq.Location = new System.Drawing.Point(231, 8);
  3082. this.btnSampleSeq.Name = "btnSampleSeq";
  3083. this.btnSampleSeq.Size = new System.Drawing.Size(33, 73);
  3084. this.btnSampleSeq.TabIndex = 225;
  3085. this.btnSampleSeq.Text = "试样号对齐";
  3086. this.btnSampleSeq.UseVisualStyleBackColor = true;
  3087. this.btnSampleSeq.Click += new System.EventHandler(this.btnSampleSeq_Click);
  3088. //
  3089. // FrmGetBatchAndSamples
  3090. //
  3091. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  3092. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  3093. this.ClientSize = new System.Drawing.Size(1328, 506);
  3094. this.Controls.Add(this.panel1);
  3095. this.Name = "FrmGetBatchAndSamples";
  3096. this.Text = "取样实绩";
  3097. this.Load += new System.EventHandler(this.FrmGetSample_Load);
  3098. this.ultraTabPageControl1.ResumeLayout(false);
  3099. this.panel4.ResumeLayout(false);
  3100. this.panel5.ResumeLayout(false);
  3101. this.panel7.ResumeLayout(false);
  3102. this.panel8.ResumeLayout(false);
  3103. this.panel10.ResumeLayout(false);
  3104. this.splitContainer1.Panel1.ResumeLayout(false);
  3105. this.splitContainer1.Panel2.ResumeLayout(false);
  3106. this.splitContainer1.ResumeLayout(false);
  3107. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).EndInit();
  3108. this.ultraGroupBox5.ResumeLayout(false);
  3109. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
  3110. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  3111. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  3112. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  3113. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
  3114. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
  3115. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
  3116. this.panel11.ResumeLayout(false);
  3117. this.panel11.PerformLayout();
  3118. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MIN)).EndInit();
  3119. ((System.ComponentModel.ISupportInitialize)(this.txtPIPE_NUM)).EndInit();
  3120. ((System.ComponentModel.ISupportInitialize)(this.ultraEND_PIPE_NO)).EndInit();
  3121. ((System.ComponentModel.ISupportInitialize)(this.ultraSTART_PIPE_NO)).EndInit();
  3122. this.splitContainer2.Panel1.ResumeLayout(false);
  3123. this.splitContainer2.Panel2.ResumeLayout(false);
  3124. this.splitContainer2.ResumeLayout(false);
  3125. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
  3126. this.ultraGroupBox4.ResumeLayout(false);
  3127. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
  3128. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).EndInit();
  3129. this.ultraGroupBox6.ResumeLayout(false);
  3130. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).EndInit();
  3131. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
  3132. this.ultraGroupBox3.ResumeLayout(false);
  3133. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
  3134. this.panel9.ResumeLayout(false);
  3135. this.panel9.PerformLayout();
  3136. ((System.ComponentModel.ISupportInitialize)(this.ultraGX)).EndInit();
  3137. ((System.ComponentModel.ISupportInitialize)(this.CHKISVALID)).EndInit();
  3138. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
  3139. this.ultraGroupBox2.ResumeLayout(false);
  3140. this.panel6.ResumeLayout(false);
  3141. this.panel6.PerformLayout();
  3142. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).EndInit();
  3143. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
  3144. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
  3145. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
  3146. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MAX)).EndInit();
  3147. ((System.ComponentModel.ISupportInitialize)(this.txtCONSIGN_NAME)).EndInit();
  3148. ((System.ComponentModel.ISupportInitialize)(this.txtCONSIGN_TIME)).EndInit();
  3149. ((System.ComponentModel.ISupportInitialize)(this.txtSTEEL_NO)).EndInit();
  3150. ((System.ComponentModel.ISupportInitialize)(this.txtPRODUCT_STD)).EndInit();
  3151. ((System.ComponentModel.ISupportInitialize)(this.txtSTEEL_GRADE)).EndInit();
  3152. ((System.ComponentModel.ISupportInitialize)(this.txtHEAT_NO)).EndInit();
  3153. ((System.ComponentModel.ISupportInitialize)(this.txtCHECK_NO)).EndInit();
  3154. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  3155. this.ultraGroupBox1.ResumeLayout(false);
  3156. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  3157. this.ultraTabPageControl3.ResumeLayout(false);
  3158. this.panel13.ResumeLayout(false);
  3159. this.panel14.ResumeLayout(false);
  3160. this.panel15.ResumeLayout(false);
  3161. this.panel16.ResumeLayout(false);
  3162. this.panel17.ResumeLayout(false);
  3163. this.splitContainer3.Panel1.ResumeLayout(false);
  3164. this.splitContainer3.Panel2.ResumeLayout(false);
  3165. this.splitContainer3.ResumeLayout(false);
  3166. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox7)).EndInit();
  3167. this.ultraGroupBox7.ResumeLayout(false);
  3168. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid9)).EndInit();
  3169. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
  3170. ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
  3171. ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).EndInit();
  3172. ((System.ComponentModel.ISupportInitialize)(this.dataTable8)).EndInit();
  3173. ((System.ComponentModel.ISupportInitialize)(this.dataTable9)).EndInit();
  3174. ((System.ComponentModel.ISupportInitialize)(this.dataTable10)).EndInit();
  3175. ((System.ComponentModel.ISupportInitialize)(this.dataTable11)).EndInit();
  3176. this.panel18.ResumeLayout(false);
  3177. this.panel18.PerformLayout();
  3178. ((System.ComponentModel.ISupportInitialize)(this.CHKISALL_LOG)).EndInit();
  3179. ((System.ComponentModel.ISupportInitialize)(this.ultraPOSITION_LOG)).EndInit();
  3180. ((System.ComponentModel.ISupportInitialize)(this.ultraPIPE_NO_LOG)).EndInit();
  3181. ((System.ComponentModel.ISupportInitialize)(this.ultraBATCH_NO_LOG)).EndInit();
  3182. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox8)).EndInit();
  3183. this.ultraGroupBox8.ResumeLayout(false);
  3184. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid8)).EndInit();
  3185. this.panel19.ResumeLayout(false);
  3186. this.panel19.PerformLayout();
  3187. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MIN_LOG)).EndInit();
  3188. ((System.ComponentModel.ISupportInitialize)(this.txtPIPE_NUM_LOG)).EndInit();
  3189. ((System.ComponentModel.ISupportInitialize)(this.ultraEND_PIPE_NO_LOG)).EndInit();
  3190. ((System.ComponentModel.ISupportInitialize)(this.ultraSTART_PIPE_NO_LOG)).EndInit();
  3191. this.splitContainer4.Panel1.ResumeLayout(false);
  3192. this.splitContainer4.Panel2.ResumeLayout(false);
  3193. this.splitContainer4.ResumeLayout(false);
  3194. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox9)).EndInit();
  3195. this.ultraGroupBox9.ResumeLayout(false);
  3196. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid10)).EndInit();
  3197. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox13)).EndInit();
  3198. this.ultraGroupBox13.ResumeLayout(false);
  3199. this.ultraGroupBox13.PerformLayout();
  3200. ((System.ComponentModel.ISupportInitialize)(this.CHKISAllSampleReq_LOG)).EndInit();
  3201. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid11)).EndInit();
  3202. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox10)).EndInit();
  3203. this.ultraGroupBox10.ResumeLayout(false);
  3204. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).EndInit();
  3205. this.panel20.ResumeLayout(false);
  3206. this.panel20.PerformLayout();
  3207. ((System.ComponentModel.ISupportInitialize)(this.ultraGX_LOG)).EndInit();
  3208. ((System.ComponentModel.ISupportInitialize)(this.CHKISVALID_LOG)).EndInit();
  3209. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox11)).EndInit();
  3210. this.ultraGroupBox11.ResumeLayout(false);
  3211. this.panel21.ResumeLayout(false);
  3212. this.panel21.PerformLayout();
  3213. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).EndInit();
  3214. ((System.ComponentModel.ISupportInitialize)(this.txtSAMPLE_CLASS)).EndInit();
  3215. ((System.ComponentModel.ISupportInitialize)(this.txtSAMPLE_NAME)).EndInit();
  3216. ((System.ComponentModel.ISupportInitialize)(this.txtSAMPLE_TIME)).EndInit();
  3217. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_CLASS)).EndInit();
  3218. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_NAME)).EndInit();
  3219. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_TIME)).EndInit();
  3220. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).EndInit();
  3221. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
  3222. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).EndInit();
  3223. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MAX_LOG)).EndInit();
  3224. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).EndInit();
  3225. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).EndInit();
  3226. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).EndInit();
  3227. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).EndInit();
  3228. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).EndInit();
  3229. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).EndInit();
  3230. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).EndInit();
  3231. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox12)).EndInit();
  3232. this.ultraGroupBox12.ResumeLayout(false);
  3233. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid6)).EndInit();
  3234. this.panel1.ResumeLayout(false);
  3235. this.panel3.ResumeLayout(false);
  3236. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
  3237. this.ultraTabControl1.ResumeLayout(false);
  3238. this.panel2.ResumeLayout(false);
  3239. this.panel2.PerformLayout();
  3240. ((System.ComponentModel.ISupportInitialize)(this.chkLOT_NO)).EndInit();
  3241. ((System.ComponentModel.ISupportInitialize)(this.chkJUDGE_STOVE_NO)).EndInit();
  3242. ((System.ComponentModel.ISupportInitialize)(this.txtQueryJUDGE_STOVE_NO)).EndInit();
  3243. ((System.ComponentModel.ISupportInitialize)(this.txtQueryLOT_NO)).EndInit();
  3244. ((System.ComponentModel.ISupportInitialize)(this.dateEnd)).EndInit();
  3245. ((System.ComponentModel.ISupportInitialize)(this.chkCONSIGN_TIME)).EndInit();
  3246. ((System.ComponentModel.ISupportInitialize)(this.dateBegin)).EndInit();
  3247. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).EndInit();
  3248. this.ResumeLayout(false);
  3249. }
  3250. #endregion
  3251. private System.Windows.Forms.Panel panel1;
  3252. private System.Windows.Forms.Panel panel2;
  3253. private System.Data.DataSet dataSet1;
  3254. private System.Data.DataTable dataTable1;
  3255. private System.Windows.Forms.Panel panel3;
  3256. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
  3257. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  3258. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  3259. private System.Windows.Forms.Panel panel4;
  3260. private System.Windows.Forms.Panel panel5;
  3261. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  3262. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  3263. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
  3264. private System.Windows.Forms.Panel panel6;
  3265. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtCONSIGN_NAME;
  3266. private Infragistics.Win.Misc.UltraLabel ultraLabel10;
  3267. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtCONSIGN_TIME;
  3268. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSTEEL_NO;
  3269. private Infragistics.Win.Misc.UltraLabel ultraLabel11;
  3270. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  3271. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPRODUCT_STD;
  3272. private Infragistics.Win.Misc.UltraLabel ultraLabel6;
  3273. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSTEEL_GRADE;
  3274. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtHEAT_NO;
  3275. private Infragistics.Win.Misc.UltraLabel ultraLabel5;
  3276. private Infragistics.Win.Misc.UltraLabel ultraLabel4;
  3277. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtCHECK_NO;
  3278. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  3279. private System.Windows.Forms.Panel panel7;
  3280. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
  3281. private System.Data.DataTable dataTable2;
  3282. private System.Windows.Forms.Panel panel8;
  3283. private System.Data.DataTable dataTable3;
  3284. private System.Windows.Forms.Panel panel10;
  3285. private System.Data.DataTable dataTable4;
  3286. private System.Data.DataTable dataTable5;
  3287. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  3288. private Infragistics.Win.Misc.UltraLabel ultraLabel7;
  3289. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_MAX;
  3290. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkLOT_NO;
  3291. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkJUDGE_STOVE_NO;
  3292. internal Infragistics.Win.UltraWinEditors.UltraTextEditor txtQueryJUDGE_STOVE_NO;
  3293. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtQueryLOT_NO;
  3294. private Infragistics.Win.Misc.UltraLabel ultraLabel8;
  3295. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dateEnd;
  3296. internal Infragistics.Win.UltraWinEditors.UltraCheckEditor chkCONSIGN_TIME;
  3297. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dateBegin;
  3298. private System.Windows.Forms.SplitContainer splitContainer1;
  3299. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
  3300. private System.Windows.Forms.Panel panel9;
  3301. private Infragistics.Win.UltraWinEditors.UltraCheckEditor CHKISVALID;
  3302. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraGX;
  3303. private Infragistics.Win.Misc.UltraLabel ultraLabel9;
  3304. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox5;
  3305. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
  3306. private System.Windows.Forms.Panel panel11;
  3307. private System.Windows.Forms.Button btnCancel;
  3308. private System.Windows.Forms.Button btnAuto;
  3309. private System.Windows.Forms.Button btnConfirm;
  3310. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraEND_PIPE_NO;
  3311. private Infragistics.Win.Misc.UltraLabel ultraLabel15;
  3312. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraSTART_PIPE_NO;
  3313. private Infragistics.Win.Misc.UltraLabel ultraLabel18;
  3314. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPIPE_NUM;
  3315. private Infragistics.Win.Misc.UltraLabel ultraLabel12;
  3316. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
  3317. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
  3318. private Infragistics.Win.Misc.UltraLabel ultraLabel13;
  3319. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor3;
  3320. private Infragistics.Win.Misc.UltraLabel ultraLabel14;
  3321. private Infragistics.Win.Misc.UltraLabel ultraLabel17;
  3322. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor22;
  3323. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_MIN;
  3324. private Infragistics.Win.Misc.UltraLabel ultraLabel47;
  3325. private System.Windows.Forms.SplitContainer splitContainer2;
  3326. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
  3327. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
  3328. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox6;
  3329. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid5;
  3330. private System.Windows.Forms.Button btnFindSampleReq;
  3331. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage2;
  3332. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl2;
  3333. private System.Data.DataSet dataSet2;
  3334. private System.Data.DataTable dataTable6;
  3335. private System.Data.DataTable dataTable7;
  3336. private System.Data.DataTable dataTable8;
  3337. private System.Data.DataTable dataTable9;
  3338. private System.Data.DataTable dataTable10;
  3339. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
  3340. private System.Windows.Forms.Panel panel13;
  3341. private System.Windows.Forms.Panel panel14;
  3342. private System.Windows.Forms.Panel panel15;
  3343. private System.Windows.Forms.Panel panel16;
  3344. private System.Windows.Forms.Panel panel17;
  3345. private System.Windows.Forms.SplitContainer splitContainer3;
  3346. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox7;
  3347. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid9;
  3348. private System.Windows.Forms.Panel panel18;
  3349. private Infragistics.Win.UltraWinEditors.UltraCheckEditor CHKISALL_LOG;
  3350. private System.Windows.Forms.Button btnDeleteSample_LOG;
  3351. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraPOSITION_LOG;
  3352. private Infragistics.Win.Misc.UltraLabel ultraLabel21;
  3353. private System.Windows.Forms.Button btnAddSample_LOG;
  3354. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraPIPE_NO_LOG;
  3355. private Infragistics.Win.Misc.UltraLabel ultraLabel22;
  3356. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraBATCH_NO_LOG;
  3357. private Infragistics.Win.Misc.UltraLabel ultraLabel23;
  3358. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox8;
  3359. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid8;
  3360. private System.Windows.Forms.Panel panel19;
  3361. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_MIN_LOG;
  3362. private Infragistics.Win.Misc.UltraLabel ultraLabel46;
  3363. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPIPE_NUM_LOG;
  3364. private Infragistics.Win.Misc.UltraLabel ultraLabel24;
  3365. private System.Windows.Forms.Button btnCancel_LOG;
  3366. private System.Windows.Forms.Button btnAuto_LOG;
  3367. private System.Windows.Forms.Button btnConfirm_LOG;
  3368. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraEND_PIPE_NO_LOG;
  3369. private Infragistics.Win.Misc.UltraLabel ultraLabel25;
  3370. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraSTART_PIPE_NO_LOG;
  3371. private Infragistics.Win.Misc.UltraLabel ultraLabel26;
  3372. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox10;
  3373. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid7;
  3374. private System.Windows.Forms.Panel panel20;
  3375. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraGX_LOG;
  3376. private Infragistics.Win.Misc.UltraLabel ultraLabel27;
  3377. private Infragistics.Win.UltraWinEditors.UltraCheckEditor CHKISVALID_LOG;
  3378. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox11;
  3379. private System.Windows.Forms.Panel panel21;
  3380. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor4;
  3381. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSAMPLE_CLASS;
  3382. private Infragistics.Win.Misc.UltraLabel ultraLabel43;
  3383. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSAMPLE_NAME;
  3384. private Infragistics.Win.Misc.UltraLabel ultraLabel44;
  3385. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSAMPLE_TIME;
  3386. private Infragistics.Win.Misc.UltraLabel ultraLabel45;
  3387. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_CLASS;
  3388. private Infragistics.Win.Misc.UltraLabel ultraLabel42;
  3389. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_NAME;
  3390. private Infragistics.Win.Misc.UltraLabel ultraLabel41;
  3391. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_TIME;
  3392. private Infragistics.Win.Misc.UltraLabel ultraLabel40;
  3393. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor5;
  3394. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
  3395. private Infragistics.Win.Misc.UltraLabel ultraLabel28;
  3396. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor7;
  3397. private Infragistics.Win.Misc.UltraLabel ultraLabel29;
  3398. private Infragistics.Win.Misc.UltraLabel ultraLabel30;
  3399. private Infragistics.Win.Misc.UltraLabel ultraLabel31;
  3400. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_MAX_LOG;
  3401. private Infragistics.Win.Misc.UltraLabel ultraLabel32;
  3402. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor9;
  3403. private Infragistics.Win.Misc.UltraLabel ultraLabel33;
  3404. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor10;
  3405. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor11;
  3406. private Infragistics.Win.Misc.UltraLabel ultraLabel34;
  3407. private Infragistics.Win.Misc.UltraLabel ultraLabel35;
  3408. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor12;
  3409. private Infragistics.Win.Misc.UltraLabel ultraLabel36;
  3410. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor13;
  3411. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor14;
  3412. private Infragistics.Win.Misc.UltraLabel ultraLabel37;
  3413. private Infragistics.Win.Misc.UltraLabel ultraLabel38;
  3414. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor15;
  3415. private Infragistics.Win.Misc.UltraLabel ultraLabel39;
  3416. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox12;
  3417. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid6;
  3418. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
  3419. private System.Windows.Forms.SplitContainer splitContainer4;
  3420. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox9;
  3421. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid10;
  3422. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox13;
  3423. private System.Windows.Forms.Button btnFindSampleReq_LOG;
  3424. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid11;
  3425. private System.Data.DataTable dataTable11;
  3426. private Infragistics.Win.UltraWinEditors.UltraCheckEditor CHKISAllSampleReq_LOG;
  3427. private System.Windows.Forms.Button btnSampleSeq;
  3428. }
  3429. }