FrmSendCheckConsign.designer.cs 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022
  1. namespace Core.StlMes.Client.ZGMil.Result
  2. {
  3. partial class FrmSendCheckConsign
  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 appearance39 = new Infragistics.Win.Appearance();
  29. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table5", -1);
  30. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BATCH_NO");
  31. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SAMPLE_NO");
  32. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PIPE_NO");
  33. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DESC_POSITION");
  34. Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
  35. Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
  36. Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
  37. Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
  38. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  39. Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
  40. Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
  41. Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
  42. Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
  43. Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
  44. Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
  45. Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
  46. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table6", -1);
  47. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SIC");
  48. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_CODE_MIN");
  49. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PHY_NAME_MIN");
  50. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LENGTH");
  51. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DESC_LENGTH");
  52. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RATE");
  53. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DESC_RATE");
  54. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DESC_COUNT");
  55. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("POSITION");
  56. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DESC_POSITION");
  57. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_CODE");
  58. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_NAME");
  59. Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
  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 appearance108 = new Infragistics.Win.Appearance();
  70. Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
  71. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table4", -1);
  72. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BATCH_NO");
  73. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("START_PIPE_NO");
  74. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("END_PIPE_NO");
  75. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PIPE_NUM");
  76. Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
  77. Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
  78. Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
  79. Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
  80. Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
  81. Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
  82. Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
  83. Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
  84. Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
  85. Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
  86. Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
  87. Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
  88. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table7", -1);
  89. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BATCH_NO");
  90. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SAMPLE_NO");
  91. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  92. Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
  93. Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
  94. Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
  95. Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
  96. Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
  97. Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
  98. Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
  99. Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
  100. Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
  101. Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
  102. Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
  103. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  104. Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
  105. Infragistics.Win.Appearance appearance149 = new Infragistics.Win.Appearance();
  106. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table3", -1);
  107. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDER_NO");
  108. Infragistics.Win.Appearance appearance150 = new Infragistics.Win.Appearance();
  109. Infragistics.Win.Appearance appearance151 = new Infragistics.Win.Appearance();
  110. Infragistics.Win.Appearance appearance152 = new Infragistics.Win.Appearance();
  111. Infragistics.Win.Appearance appearance153 = new Infragistics.Win.Appearance();
  112. Infragistics.Win.Appearance appearance154 = new Infragistics.Win.Appearance();
  113. Infragistics.Win.Appearance appearance155 = new Infragistics.Win.Appearance();
  114. Infragistics.Win.Appearance appearance156 = new Infragistics.Win.Appearance();
  115. Infragistics.Win.Appearance appearance157 = new Infragistics.Win.Appearance();
  116. Infragistics.Win.Appearance appearance158 = new Infragistics.Win.Appearance();
  117. Infragistics.Win.Appearance appearance159 = new Infragistics.Win.Appearance();
  118. Infragistics.Win.Appearance appearance160 = new Infragistics.Win.Appearance();
  119. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  120. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand6 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
  121. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRODUCT_ORDER_NO");
  122. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  123. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  124. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  125. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  126. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  127. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  128. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  129. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  130. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  131. Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
  132. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  133. Infragistics.Win.Appearance appearance137 = new Infragistics.Win.Appearance();
  134. Infragistics.Win.Appearance appearance138 = new Infragistics.Win.Appearance();
  135. Infragistics.Win.Appearance appearance139 = new Infragistics.Win.Appearance();
  136. Infragistics.Win.Appearance appearance140 = new Infragistics.Win.Appearance();
  137. Infragistics.Win.Appearance appearance141 = new Infragistics.Win.Appearance();
  138. Infragistics.Win.Appearance appearance142 = new Infragistics.Win.Appearance();
  139. Infragistics.Win.Appearance appearance143 = new Infragistics.Win.Appearance();
  140. Infragistics.Win.Appearance appearance144 = new Infragistics.Win.Appearance();
  141. Infragistics.Win.Appearance appearance145 = new Infragistics.Win.Appearance();
  142. Infragistics.Win.Appearance appearance146 = new Infragistics.Win.Appearance();
  143. Infragistics.Win.Appearance appearance147 = new Infragistics.Win.Appearance();
  144. Infragistics.Win.Appearance appearance148 = new Infragistics.Win.Appearance();
  145. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  146. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand7 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  147. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LOT_NO");
  148. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_STOVE_NO");
  149. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  150. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  151. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  152. Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
  153. Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
  154. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  155. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  156. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  157. Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
  158. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  159. Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
  160. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  161. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  162. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  163. Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
  164. Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
  165. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  166. this.panel4 = new System.Windows.Forms.Panel();
  167. this.panel5 = new System.Windows.Forms.Panel();
  168. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  169. this.ultraGrid5 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  170. this.dataSet1 = new System.Data.DataSet();
  171. this.dataTable1 = new System.Data.DataTable();
  172. this.dataColumn1 = new System.Data.DataColumn();
  173. this.dataColumn2 = new System.Data.DataColumn();
  174. this.dataTable2 = new System.Data.DataTable();
  175. this.dataColumn3 = new System.Data.DataColumn();
  176. this.dataTable3 = new System.Data.DataTable();
  177. this.dataColumn4 = new System.Data.DataColumn();
  178. this.dataTable4 = new System.Data.DataTable();
  179. this.dataColumn16 = new System.Data.DataColumn();
  180. this.dataColumn20 = new System.Data.DataColumn();
  181. this.dataColumn11 = new System.Data.DataColumn();
  182. this.dataColumn12 = new System.Data.DataColumn();
  183. this.dataTable5 = new System.Data.DataTable();
  184. this.dataColumn5 = new System.Data.DataColumn();
  185. this.dataColumn6 = new System.Data.DataColumn();
  186. this.dataColumn7 = new System.Data.DataColumn();
  187. this.dataColumn8 = new System.Data.DataColumn();
  188. this.dataTable6 = new System.Data.DataTable();
  189. this.dataColumn9 = new System.Data.DataColumn();
  190. this.dataColumn10 = new System.Data.DataColumn();
  191. this.dataColumn15 = new System.Data.DataColumn();
  192. this.dataColumn17 = new System.Data.DataColumn();
  193. this.dataColumn18 = new System.Data.DataColumn();
  194. this.dataColumn19 = new System.Data.DataColumn();
  195. this.dataColumn21 = new System.Data.DataColumn();
  196. this.dataColumn22 = new System.Data.DataColumn();
  197. this.dataColumn23 = new System.Data.DataColumn();
  198. this.dataColumn24 = new System.Data.DataColumn();
  199. this.dataColumn25 = new System.Data.DataColumn();
  200. this.dataColumn26 = new System.Data.DataColumn();
  201. this.dataTable7 = new System.Data.DataTable();
  202. this.dataColumn13 = new System.Data.DataColumn();
  203. this.dataColumn14 = new System.Data.DataColumn();
  204. this.ultraGrid6 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  205. this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  206. this.ultraGrid7 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  207. this.panel9 = new System.Windows.Forms.Panel();
  208. this.btnDeleteSample = new System.Windows.Forms.Button();
  209. this.CHKISALL = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  210. this.ultraSAMPLE_NO = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  211. this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
  212. this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
  213. this.ultraBATCH_NO = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  214. this.panel7 = new System.Windows.Forms.Panel();
  215. this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
  216. this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  217. this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  218. this.panel8 = new System.Windows.Forms.Panel();
  219. this.CHKSHOWSAMPLE_NO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  220. this.CHKSHOWBATCH_NO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  221. this.btnConfirm = new System.Windows.Forms.Button();
  222. this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
  223. this.panel6 = new System.Windows.Forms.Panel();
  224. this.ultraTextEditor4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  225. this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  226. this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  227. this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
  228. this.ultraTextEditor3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  229. this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
  230. this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
  231. this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
  232. this.txtBATCH_MAX = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  233. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  234. this.txtCONSIGN_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  235. this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
  236. this.txtCONSIGN_TIME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  237. this.txtSTEEL_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  238. this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
  239. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  240. this.txtPRODUCT_STD = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  241. this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
  242. this.txtSTEEL_GRADE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  243. this.txtHEAT_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  244. this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
  245. this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
  246. this.txtCHECK_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  247. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  248. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  249. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  250. this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  251. this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  252. this.panel1 = new System.Windows.Forms.Panel();
  253. this.panel3 = new System.Windows.Forms.Panel();
  254. this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  255. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  256. this.panel2 = new System.Windows.Forms.Panel();
  257. this.chkCHECK_NO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  258. this.chkHEAT_NO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  259. this.txtQuerySTOVE_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  260. this.txtQueryLOT_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  261. this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
  262. this.dateEnd = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  263. this.chkCONSIGN_TIME = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  264. this.dateBegin = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  265. this.ultraTabPageControl1.SuspendLayout();
  266. this.panel4.SuspendLayout();
  267. this.panel5.SuspendLayout();
  268. this.splitContainer1.Panel1.SuspendLayout();
  269. this.splitContainer1.Panel2.SuspendLayout();
  270. this.splitContainer1.SuspendLayout();
  271. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).BeginInit();
  272. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  273. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  274. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  275. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
  276. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
  277. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
  278. ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
  279. ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).BeginInit();
  280. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid6)).BeginInit();
  281. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
  282. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).BeginInit();
  283. this.panel9.SuspendLayout();
  284. ((System.ComponentModel.ISupportInitialize)(this.CHKISALL)).BeginInit();
  285. ((System.ComponentModel.ISupportInitialize)(this.ultraSAMPLE_NO)).BeginInit();
  286. ((System.ComponentModel.ISupportInitialize)(this.ultraBATCH_NO)).BeginInit();
  287. this.panel7.SuspendLayout();
  288. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
  289. this.ultraGroupBox3.SuspendLayout();
  290. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
  291. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
  292. this.panel8.SuspendLayout();
  293. ((System.ComponentModel.ISupportInitialize)(this.CHKSHOWSAMPLE_NO)).BeginInit();
  294. ((System.ComponentModel.ISupportInitialize)(this.CHKSHOWBATCH_NO)).BeginInit();
  295. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
  296. this.ultraGroupBox2.SuspendLayout();
  297. this.panel6.SuspendLayout();
  298. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).BeginInit();
  299. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
  300. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
  301. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
  302. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MAX)).BeginInit();
  303. ((System.ComponentModel.ISupportInitialize)(this.txtCONSIGN_NAME)).BeginInit();
  304. ((System.ComponentModel.ISupportInitialize)(this.txtCONSIGN_TIME)).BeginInit();
  305. ((System.ComponentModel.ISupportInitialize)(this.txtSTEEL_NO)).BeginInit();
  306. ((System.ComponentModel.ISupportInitialize)(this.txtPRODUCT_STD)).BeginInit();
  307. ((System.ComponentModel.ISupportInitialize)(this.txtSTEEL_GRADE)).BeginInit();
  308. ((System.ComponentModel.ISupportInitialize)(this.txtHEAT_NO)).BeginInit();
  309. ((System.ComponentModel.ISupportInitialize)(this.txtCHECK_NO)).BeginInit();
  310. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  311. this.ultraGroupBox1.SuspendLayout();
  312. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  313. this.panel1.SuspendLayout();
  314. this.panel3.SuspendLayout();
  315. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
  316. this.ultraTabControl1.SuspendLayout();
  317. this.panel2.SuspendLayout();
  318. ((System.ComponentModel.ISupportInitialize)(this.chkCHECK_NO)).BeginInit();
  319. ((System.ComponentModel.ISupportInitialize)(this.chkHEAT_NO)).BeginInit();
  320. ((System.ComponentModel.ISupportInitialize)(this.txtQuerySTOVE_NO)).BeginInit();
  321. ((System.ComponentModel.ISupportInitialize)(this.txtQueryLOT_NO)).BeginInit();
  322. ((System.ComponentModel.ISupportInitialize)(this.dateEnd)).BeginInit();
  323. ((System.ComponentModel.ISupportInitialize)(this.chkCONSIGN_TIME)).BeginInit();
  324. ((System.ComponentModel.ISupportInitialize)(this.dateBegin)).BeginInit();
  325. this.SuspendLayout();
  326. //
  327. // ultraTabPageControl1
  328. //
  329. this.ultraTabPageControl1.Controls.Add(this.panel4);
  330. this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 23);
  331. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  332. this.ultraTabPageControl1.Size = new System.Drawing.Size(1322, 438);
  333. //
  334. // panel4
  335. //
  336. this.panel4.Controls.Add(this.panel5);
  337. this.panel4.Controls.Add(this.ultraGroupBox1);
  338. this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
  339. this.panel4.Location = new System.Drawing.Point(0, 0);
  340. this.panel4.Name = "panel4";
  341. this.panel4.Size = new System.Drawing.Size(1322, 438);
  342. this.panel4.TabIndex = 21;
  343. //
  344. // panel5
  345. //
  346. this.panel5.Controls.Add(this.splitContainer1);
  347. this.panel5.Controls.Add(this.panel7);
  348. this.panel5.Controls.Add(this.ultraGroupBox2);
  349. this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
  350. this.panel5.Location = new System.Drawing.Point(232, 0);
  351. this.panel5.Name = "panel5";
  352. this.panel5.Size = new System.Drawing.Size(1090, 438);
  353. this.panel5.TabIndex = 20;
  354. //
  355. // splitContainer1
  356. //
  357. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  358. this.splitContainer1.Location = new System.Drawing.Point(160, 106);
  359. this.splitContainer1.Name = "splitContainer1";
  360. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  361. //
  362. // splitContainer1.Panel1
  363. //
  364. this.splitContainer1.Panel1.Controls.Add(this.ultraGrid5);
  365. this.splitContainer1.Panel1.Controls.Add(this.ultraGrid6);
  366. this.splitContainer1.Panel1.Controls.Add(this.ultraGrid4);
  367. this.splitContainer1.Panel1Collapsed = true;
  368. //
  369. // splitContainer1.Panel2
  370. //
  371. this.splitContainer1.Panel2.Controls.Add(this.ultraGrid7);
  372. this.splitContainer1.Panel2.Controls.Add(this.panel9);
  373. this.splitContainer1.Size = new System.Drawing.Size(930, 332);
  374. this.splitContainer1.SplitterDistance = 145;
  375. this.splitContainer1.SplitterWidth = 1;
  376. this.splitContainer1.TabIndex = 2;
  377. //
  378. // ultraGrid5
  379. //
  380. this.ultraGrid5.DataMember = "Table5";
  381. this.ultraGrid5.DataSource = this.dataSet1;
  382. appearance39.BackColor = System.Drawing.SystemColors.Window;
  383. appearance39.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  384. this.ultraGrid5.DisplayLayout.Appearance = appearance39;
  385. ultraGridColumn1.Header.VisiblePosition = 0;
  386. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
  387. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  388. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
  389. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
  390. ultraGridColumn2.Header.VisiblePosition = 1;
  391. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 1;
  392. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  393. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
  394. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
  395. ultraGridColumn3.Header.VisiblePosition = 2;
  396. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 2;
  397. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  398. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
  399. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
  400. ultraGridColumn4.Header.VisiblePosition = 3;
  401. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 3;
  402. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  403. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
  404. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
  405. ultraGridBand1.Columns.AddRange(new object[] {
  406. ultraGridColumn1,
  407. ultraGridColumn2,
  408. ultraGridColumn3,
  409. ultraGridColumn4});
  410. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  411. this.ultraGrid5.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  412. this.ultraGrid5.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  413. this.ultraGrid5.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  414. appearance40.BackColor = System.Drawing.SystemColors.ActiveBorder;
  415. appearance40.BackColor2 = System.Drawing.SystemColors.ControlDark;
  416. appearance40.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  417. appearance40.BorderColor = System.Drawing.SystemColors.Window;
  418. this.ultraGrid5.DisplayLayout.GroupByBox.Appearance = appearance40;
  419. appearance41.ForeColor = System.Drawing.SystemColors.GrayText;
  420. this.ultraGrid5.DisplayLayout.GroupByBox.BandLabelAppearance = appearance41;
  421. this.ultraGrid5.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  422. appearance42.BackColor = System.Drawing.SystemColors.ControlLightLight;
  423. appearance42.BackColor2 = System.Drawing.SystemColors.Control;
  424. appearance42.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  425. appearance42.ForeColor = System.Drawing.SystemColors.GrayText;
  426. this.ultraGrid5.DisplayLayout.GroupByBox.PromptAppearance = appearance42;
  427. this.ultraGrid5.DisplayLayout.MaxColScrollRegions = 1;
  428. this.ultraGrid5.DisplayLayout.MaxRowScrollRegions = 1;
  429. appearance43.BackColor = System.Drawing.SystemColors.Window;
  430. appearance43.ForeColor = System.Drawing.SystemColors.ControlText;
  431. this.ultraGrid5.DisplayLayout.Override.ActiveCellAppearance = appearance43;
  432. appearance44.BackColor = System.Drawing.SystemColors.Highlight;
  433. appearance44.ForeColor = System.Drawing.SystemColors.HighlightText;
  434. this.ultraGrid5.DisplayLayout.Override.ActiveRowAppearance = appearance44;
  435. this.ultraGrid5.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  436. this.ultraGrid5.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  437. this.ultraGrid5.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  438. this.ultraGrid5.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  439. appearance45.BackColor = System.Drawing.SystemColors.Window;
  440. this.ultraGrid5.DisplayLayout.Override.CardAreaAppearance = appearance45;
  441. appearance46.BorderColor = System.Drawing.Color.Silver;
  442. appearance46.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  443. this.ultraGrid5.DisplayLayout.Override.CellAppearance = appearance46;
  444. this.ultraGrid5.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  445. this.ultraGrid5.DisplayLayout.Override.CellPadding = 0;
  446. this.ultraGrid5.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  447. appearance47.BackColor = System.Drawing.SystemColors.Control;
  448. appearance47.BackColor2 = System.Drawing.SystemColors.ControlDark;
  449. appearance47.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  450. appearance47.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  451. appearance47.BorderColor = System.Drawing.SystemColors.Window;
  452. this.ultraGrid5.DisplayLayout.Override.GroupByRowAppearance = appearance47;
  453. appearance48.TextHAlignAsString = "Left";
  454. this.ultraGrid5.DisplayLayout.Override.HeaderAppearance = appearance48;
  455. this.ultraGrid5.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  456. this.ultraGrid5.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  457. appearance49.BackColor = System.Drawing.SystemColors.Window;
  458. appearance49.BorderColor = System.Drawing.Color.Silver;
  459. this.ultraGrid5.DisplayLayout.Override.RowAppearance = appearance49;
  460. this.ultraGrid5.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  461. appearance50.BackColor = System.Drawing.SystemColors.ControlLight;
  462. this.ultraGrid5.DisplayLayout.Override.TemplateAddRowAppearance = appearance50;
  463. this.ultraGrid5.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  464. this.ultraGrid5.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  465. this.ultraGrid5.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  466. this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
  467. this.ultraGrid5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  468. this.ultraGrid5.Location = new System.Drawing.Point(300, 0);
  469. this.ultraGrid5.Name = "ultraGrid5";
  470. this.ultraGrid5.Size = new System.Drawing.Size(0, 145);
  471. this.ultraGrid5.TabIndex = 32;
  472. this.ultraGrid5.Text = "试样号队列";
  473. //
  474. // dataSet1
  475. //
  476. this.dataSet1.DataSetName = "NewDataSet";
  477. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  478. this.dataTable1,
  479. this.dataTable2,
  480. this.dataTable3,
  481. this.dataTable4,
  482. this.dataTable5,
  483. this.dataTable6,
  484. this.dataTable7});
  485. //
  486. // dataTable1
  487. //
  488. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  489. this.dataColumn1,
  490. this.dataColumn2});
  491. this.dataTable1.TableName = "Table1";
  492. //
  493. // dataColumn1
  494. //
  495. this.dataColumn1.Caption = "生产批号";
  496. this.dataColumn1.ColumnName = "LOT_NO";
  497. //
  498. // dataColumn2
  499. //
  500. this.dataColumn2.Caption = "炉号";
  501. this.dataColumn2.ColumnName = "JUDGE_STOVE_NO";
  502. //
  503. // dataTable2
  504. //
  505. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  506. this.dataColumn3});
  507. this.dataTable2.TableName = "Table2";
  508. //
  509. // dataColumn3
  510. //
  511. this.dataColumn3.Caption = "生产合同号";
  512. this.dataColumn3.ColumnName = "PRODUCT_ORDER_NO";
  513. //
  514. // dataTable3
  515. //
  516. this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
  517. this.dataColumn4});
  518. this.dataTable3.TableName = "Table3";
  519. //
  520. // dataColumn4
  521. //
  522. this.dataColumn4.Caption = "销售合同号";
  523. this.dataColumn4.ColumnName = "ORDER_NO";
  524. //
  525. // dataTable4
  526. //
  527. this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
  528. this.dataColumn16,
  529. this.dataColumn20,
  530. this.dataColumn11,
  531. this.dataColumn12});
  532. this.dataTable4.TableName = "Table4";
  533. //
  534. // dataColumn16
  535. //
  536. this.dataColumn16.Caption = "性能批号";
  537. this.dataColumn16.ColumnName = "BATCH_NO";
  538. //
  539. // dataColumn20
  540. //
  541. this.dataColumn20.Caption = "起始管号";
  542. this.dataColumn20.ColumnName = "START_PIPE_NO";
  543. //
  544. // dataColumn11
  545. //
  546. this.dataColumn11.Caption = "结束管号";
  547. this.dataColumn11.ColumnName = "END_PIPE_NO";
  548. //
  549. // dataColumn12
  550. //
  551. this.dataColumn12.Caption = "有效管数";
  552. this.dataColumn12.ColumnName = "PIPE_NUM";
  553. //
  554. // dataTable5
  555. //
  556. this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
  557. this.dataColumn5,
  558. this.dataColumn6,
  559. this.dataColumn7,
  560. this.dataColumn8});
  561. this.dataTable5.TableName = "Table5";
  562. //
  563. // dataColumn5
  564. //
  565. this.dataColumn5.Caption = "性能批号";
  566. this.dataColumn5.ColumnName = "BATCH_NO";
  567. //
  568. // dataColumn6
  569. //
  570. this.dataColumn6.Caption = "试样号";
  571. this.dataColumn6.ColumnName = "SAMPLE_NO";
  572. //
  573. // dataColumn7
  574. //
  575. this.dataColumn7.Caption = "管号";
  576. this.dataColumn7.ColumnName = "PIPE_NO";
  577. //
  578. // dataColumn8
  579. //
  580. this.dataColumn8.Caption = "取样位置";
  581. this.dataColumn8.ColumnName = "DESC_POSITION";
  582. //
  583. // dataTable6
  584. //
  585. this.dataTable6.Columns.AddRange(new System.Data.DataColumn[] {
  586. this.dataColumn9,
  587. this.dataColumn10,
  588. this.dataColumn15,
  589. this.dataColumn17,
  590. this.dataColumn18,
  591. this.dataColumn19,
  592. this.dataColumn21,
  593. this.dataColumn22,
  594. this.dataColumn23,
  595. this.dataColumn24,
  596. this.dataColumn25,
  597. this.dataColumn26});
  598. this.dataTable6.TableName = "Table6";
  599. //
  600. // dataColumn9
  601. //
  602. this.dataColumn9.Caption = "取样码索引号";
  603. this.dataColumn9.ColumnName = "SIC";
  604. //
  605. // dataColumn10
  606. //
  607. this.dataColumn10.Caption = "取样码";
  608. this.dataColumn10.ColumnName = "PHY_CODE_MIN";
  609. //
  610. // dataColumn15
  611. //
  612. this.dataColumn15.Caption = "取样码";
  613. this.dataColumn15.ColumnName = "PHY_NAME_MIN";
  614. //
  615. // dataColumn17
  616. //
  617. this.dataColumn17.Caption = "取样长度";
  618. this.dataColumn17.ColumnName = "LENGTH";
  619. //
  620. // dataColumn18
  621. //
  622. this.dataColumn18.Caption = "取样长度";
  623. this.dataColumn18.ColumnName = "DESC_LENGTH";
  624. //
  625. // dataColumn19
  626. //
  627. this.dataColumn19.Caption = "取样频次";
  628. this.dataColumn19.ColumnName = "RATE";
  629. //
  630. // dataColumn21
  631. //
  632. this.dataColumn21.Caption = "取样频次";
  633. this.dataColumn21.ColumnName = "DESC_RATE";
  634. //
  635. // dataColumn22
  636. //
  637. this.dataColumn22.Caption = "取样数量";
  638. this.dataColumn22.ColumnName = "DESC_COUNT";
  639. //
  640. // dataColumn23
  641. //
  642. this.dataColumn23.Caption = "取样位置";
  643. this.dataColumn23.ColumnName = "POSITION";
  644. //
  645. // dataColumn24
  646. //
  647. this.dataColumn24.Caption = "取样位置";
  648. this.dataColumn24.ColumnName = "DESC_POSITION";
  649. //
  650. // dataColumn25
  651. //
  652. this.dataColumn25.Caption = "标准代码";
  653. this.dataColumn25.ColumnName = "STD_CODE";
  654. //
  655. // dataColumn26
  656. //
  657. this.dataColumn26.Caption = "标准名称";
  658. this.dataColumn26.ColumnName = "STD_NAME";
  659. //
  660. // dataTable7
  661. //
  662. this.dataTable7.Columns.AddRange(new System.Data.DataColumn[] {
  663. this.dataColumn13,
  664. this.dataColumn14});
  665. this.dataTable7.TableName = "Table7";
  666. //
  667. // dataColumn13
  668. //
  669. this.dataColumn13.Caption = "性能批号";
  670. this.dataColumn13.ColumnName = "BATCH_NO";
  671. //
  672. // dataColumn14
  673. //
  674. this.dataColumn14.Caption = "试样号";
  675. this.dataColumn14.ColumnName = "SAMPLE_NO";
  676. //
  677. // ultraGrid6
  678. //
  679. this.ultraGrid6.DataMember = "Table6";
  680. this.ultraGrid6.DataSource = this.dataSet1;
  681. appearance93.BackColor = System.Drawing.SystemColors.Window;
  682. appearance93.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  683. this.ultraGrid6.DisplayLayout.Appearance = appearance93;
  684. ultraGridColumn5.Header.VisiblePosition = 0;
  685. ultraGridColumn5.Hidden = true;
  686. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 0;
  687. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  688. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
  689. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
  690. ultraGridColumn6.Header.VisiblePosition = 1;
  691. ultraGridColumn6.Hidden = true;
  692. ultraGridColumn6.RowLayoutColumnInfo.OriginX = 1;
  693. ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
  694. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
  695. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
  696. ultraGridColumn7.Header.VisiblePosition = 2;
  697. ultraGridColumn7.RowLayoutColumnInfo.OriginX = 2;
  698. ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
  699. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
  700. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
  701. ultraGridColumn8.Header.VisiblePosition = 3;
  702. ultraGridColumn8.Hidden = true;
  703. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 3;
  704. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  705. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
  706. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
  707. ultraGridColumn9.Header.VisiblePosition = 4;
  708. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 4;
  709. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  710. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
  711. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
  712. ultraGridColumn10.Header.VisiblePosition = 5;
  713. ultraGridColumn10.Hidden = true;
  714. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 5;
  715. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  716. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
  717. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
  718. ultraGridColumn11.Header.VisiblePosition = 6;
  719. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 6;
  720. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  721. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
  722. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
  723. ultraGridColumn12.Header.VisiblePosition = 7;
  724. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 7;
  725. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  726. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
  727. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
  728. ultraGridColumn13.Header.VisiblePosition = 8;
  729. ultraGridColumn13.Hidden = true;
  730. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 8;
  731. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  732. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
  733. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
  734. ultraGridColumn14.Header.VisiblePosition = 9;
  735. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 9;
  736. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  737. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
  738. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
  739. ultraGridColumn15.Header.VisiblePosition = 10;
  740. ultraGridColumn15.Hidden = true;
  741. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 10;
  742. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  743. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
  744. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
  745. ultraGridColumn16.Header.VisiblePosition = 11;
  746. ultraGridColumn16.Hidden = true;
  747. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 11;
  748. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  749. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
  750. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
  751. ultraGridBand2.Columns.AddRange(new object[] {
  752. ultraGridColumn5,
  753. ultraGridColumn6,
  754. ultraGridColumn7,
  755. ultraGridColumn8,
  756. ultraGridColumn9,
  757. ultraGridColumn10,
  758. ultraGridColumn11,
  759. ultraGridColumn12,
  760. ultraGridColumn13,
  761. ultraGridColumn14,
  762. ultraGridColumn15,
  763. ultraGridColumn16});
  764. ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  765. this.ultraGrid6.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  766. this.ultraGrid6.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  767. this.ultraGrid6.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  768. appearance94.BackColor = System.Drawing.SystemColors.ActiveBorder;
  769. appearance94.BackColor2 = System.Drawing.SystemColors.ControlDark;
  770. appearance94.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  771. appearance94.BorderColor = System.Drawing.SystemColors.Window;
  772. this.ultraGrid6.DisplayLayout.GroupByBox.Appearance = appearance94;
  773. appearance95.ForeColor = System.Drawing.SystemColors.GrayText;
  774. this.ultraGrid6.DisplayLayout.GroupByBox.BandLabelAppearance = appearance95;
  775. this.ultraGrid6.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  776. appearance97.BackColor = System.Drawing.SystemColors.ControlLightLight;
  777. appearance97.BackColor2 = System.Drawing.SystemColors.Control;
  778. appearance97.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  779. appearance97.ForeColor = System.Drawing.SystemColors.GrayText;
  780. this.ultraGrid6.DisplayLayout.GroupByBox.PromptAppearance = appearance97;
  781. this.ultraGrid6.DisplayLayout.MaxColScrollRegions = 1;
  782. this.ultraGrid6.DisplayLayout.MaxRowScrollRegions = 1;
  783. appearance98.BackColor = System.Drawing.SystemColors.Window;
  784. appearance98.ForeColor = System.Drawing.SystemColors.ControlText;
  785. this.ultraGrid6.DisplayLayout.Override.ActiveCellAppearance = appearance98;
  786. appearance99.BackColor = System.Drawing.SystemColors.Highlight;
  787. appearance99.ForeColor = System.Drawing.SystemColors.HighlightText;
  788. this.ultraGrid6.DisplayLayout.Override.ActiveRowAppearance = appearance99;
  789. this.ultraGrid6.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  790. this.ultraGrid6.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  791. this.ultraGrid6.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  792. this.ultraGrid6.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  793. appearance100.BackColor = System.Drawing.SystemColors.Window;
  794. this.ultraGrid6.DisplayLayout.Override.CardAreaAppearance = appearance100;
  795. appearance101.BorderColor = System.Drawing.Color.Silver;
  796. appearance101.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  797. this.ultraGrid6.DisplayLayout.Override.CellAppearance = appearance101;
  798. this.ultraGrid6.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  799. this.ultraGrid6.DisplayLayout.Override.CellPadding = 0;
  800. this.ultraGrid6.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  801. appearance102.BackColor = System.Drawing.SystemColors.Control;
  802. appearance102.BackColor2 = System.Drawing.SystemColors.ControlDark;
  803. appearance102.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  804. appearance102.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  805. appearance102.BorderColor = System.Drawing.SystemColors.Window;
  806. this.ultraGrid6.DisplayLayout.Override.GroupByRowAppearance = appearance102;
  807. appearance104.TextHAlignAsString = "Left";
  808. this.ultraGrid6.DisplayLayout.Override.HeaderAppearance = appearance104;
  809. this.ultraGrid6.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  810. this.ultraGrid6.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  811. appearance105.BackColor = System.Drawing.SystemColors.Window;
  812. appearance105.BorderColor = System.Drawing.Color.Silver;
  813. this.ultraGrid6.DisplayLayout.Override.RowAppearance = appearance105;
  814. this.ultraGrid6.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  815. appearance108.BackColor = System.Drawing.SystemColors.ControlLight;
  816. this.ultraGrid6.DisplayLayout.Override.TemplateAddRowAppearance = appearance108;
  817. this.ultraGrid6.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  818. this.ultraGrid6.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  819. this.ultraGrid6.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  820. this.ultraGrid6.Dock = System.Windows.Forms.DockStyle.Right;
  821. this.ultraGrid6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  822. this.ultraGrid6.Location = new System.Drawing.Point(-230, 0);
  823. this.ultraGrid6.Name = "ultraGrid6";
  824. this.ultraGrid6.Size = new System.Drawing.Size(380, 145);
  825. this.ultraGrid6.TabIndex = 31;
  826. this.ultraGrid6.Text = "取样要求";
  827. //
  828. // ultraGrid4
  829. //
  830. this.ultraGrid4.DataMember = "Table4";
  831. this.ultraGrid4.DataSource = this.dataSet1;
  832. appearance51.BackColor = System.Drawing.SystemColors.Window;
  833. appearance51.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  834. this.ultraGrid4.DisplayLayout.Appearance = appearance51;
  835. ultraGridColumn17.Header.VisiblePosition = 0;
  836. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 0;
  837. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  838. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
  839. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
  840. ultraGridColumn18.Header.VisiblePosition = 1;
  841. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 1;
  842. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  843. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
  844. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
  845. ultraGridColumn19.Header.VisiblePosition = 2;
  846. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 2;
  847. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  848. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
  849. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
  850. ultraGridColumn20.Header.VisiblePosition = 3;
  851. ultraGridColumn20.RowLayoutColumnInfo.OriginX = 3;
  852. ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
  853. ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
  854. ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
  855. ultraGridBand3.Columns.AddRange(new object[] {
  856. ultraGridColumn17,
  857. ultraGridColumn18,
  858. ultraGridColumn19,
  859. ultraGridColumn20});
  860. ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  861. this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  862. this.ultraGrid4.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  863. this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  864. appearance52.BackColor = System.Drawing.SystemColors.ActiveBorder;
  865. appearance52.BackColor2 = System.Drawing.SystemColors.ControlDark;
  866. appearance52.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  867. appearance52.BorderColor = System.Drawing.SystemColors.Window;
  868. this.ultraGrid4.DisplayLayout.GroupByBox.Appearance = appearance52;
  869. appearance53.ForeColor = System.Drawing.SystemColors.GrayText;
  870. this.ultraGrid4.DisplayLayout.GroupByBox.BandLabelAppearance = appearance53;
  871. this.ultraGrid4.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  872. appearance54.BackColor = System.Drawing.SystemColors.ControlLightLight;
  873. appearance54.BackColor2 = System.Drawing.SystemColors.Control;
  874. appearance54.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  875. appearance54.ForeColor = System.Drawing.SystemColors.GrayText;
  876. this.ultraGrid4.DisplayLayout.GroupByBox.PromptAppearance = appearance54;
  877. this.ultraGrid4.DisplayLayout.MaxColScrollRegions = 1;
  878. this.ultraGrid4.DisplayLayout.MaxRowScrollRegions = 1;
  879. appearance55.BackColor = System.Drawing.SystemColors.Window;
  880. appearance55.ForeColor = System.Drawing.SystemColors.ControlText;
  881. this.ultraGrid4.DisplayLayout.Override.ActiveCellAppearance = appearance55;
  882. appearance56.BackColor = System.Drawing.SystemColors.Highlight;
  883. appearance56.ForeColor = System.Drawing.SystemColors.HighlightText;
  884. this.ultraGrid4.DisplayLayout.Override.ActiveRowAppearance = appearance56;
  885. this.ultraGrid4.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  886. this.ultraGrid4.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  887. this.ultraGrid4.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  888. this.ultraGrid4.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  889. appearance57.BackColor = System.Drawing.SystemColors.Window;
  890. this.ultraGrid4.DisplayLayout.Override.CardAreaAppearance = appearance57;
  891. appearance58.BorderColor = System.Drawing.Color.Silver;
  892. appearance58.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  893. this.ultraGrid4.DisplayLayout.Override.CellAppearance = appearance58;
  894. this.ultraGrid4.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  895. this.ultraGrid4.DisplayLayout.Override.CellPadding = 0;
  896. this.ultraGrid4.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  897. appearance59.BackColor = System.Drawing.SystemColors.Control;
  898. appearance59.BackColor2 = System.Drawing.SystemColors.ControlDark;
  899. appearance59.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  900. appearance59.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  901. appearance59.BorderColor = System.Drawing.SystemColors.Window;
  902. this.ultraGrid4.DisplayLayout.Override.GroupByRowAppearance = appearance59;
  903. appearance60.TextHAlignAsString = "Left";
  904. this.ultraGrid4.DisplayLayout.Override.HeaderAppearance = appearance60;
  905. this.ultraGrid4.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  906. this.ultraGrid4.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  907. appearance61.BackColor = System.Drawing.SystemColors.Window;
  908. appearance61.BorderColor = System.Drawing.Color.Silver;
  909. this.ultraGrid4.DisplayLayout.Override.RowAppearance = appearance61;
  910. this.ultraGrid4.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  911. this.ultraGrid4.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
  912. appearance62.BackColor = System.Drawing.SystemColors.ControlLight;
  913. this.ultraGrid4.DisplayLayout.Override.TemplateAddRowAppearance = appearance62;
  914. this.ultraGrid4.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  915. this.ultraGrid4.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  916. this.ultraGrid4.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  917. this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Left;
  918. this.ultraGrid4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  919. this.ultraGrid4.Location = new System.Drawing.Point(0, 0);
  920. this.ultraGrid4.Name = "ultraGrid4";
  921. this.ultraGrid4.Size = new System.Drawing.Size(300, 145);
  922. this.ultraGrid4.TabIndex = 29;
  923. this.ultraGrid4.Text = "性能批号队列";
  924. this.ultraGrid4.AfterRowActivate += new System.EventHandler(this.ultraGrid4_AfterRowActivate);
  925. //
  926. // ultraGrid7
  927. //
  928. this.ultraGrid7.DataMember = "Table7";
  929. this.ultraGrid7.DataSource = this.dataSet1;
  930. appearance63.BackColor = System.Drawing.SystemColors.Window;
  931. appearance63.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  932. this.ultraGrid7.DisplayLayout.Appearance = appearance63;
  933. ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  934. ultraGridColumn21.Header.VisiblePosition = 0;
  935. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 0;
  936. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  937. ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 0);
  938. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
  939. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
  940. ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  941. ultraGridColumn22.Header.VisiblePosition = 1;
  942. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 1;
  943. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  944. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
  945. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
  946. ultraGridBand4.Columns.AddRange(new object[] {
  947. ultraGridColumn21,
  948. ultraGridColumn22});
  949. appearance1.TextHAlignAsString = "Center";
  950. ultraGridBand4.Override.RowAppearance = appearance1;
  951. ultraGridBand4.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  952. this.ultraGrid7.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
  953. this.ultraGrid7.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  954. this.ultraGrid7.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  955. appearance70.BackColor = System.Drawing.SystemColors.ActiveBorder;
  956. appearance70.BackColor2 = System.Drawing.SystemColors.ControlDark;
  957. appearance70.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  958. appearance70.BorderColor = System.Drawing.SystemColors.Window;
  959. this.ultraGrid7.DisplayLayout.GroupByBox.Appearance = appearance70;
  960. appearance71.ForeColor = System.Drawing.SystemColors.GrayText;
  961. this.ultraGrid7.DisplayLayout.GroupByBox.BandLabelAppearance = appearance71;
  962. this.ultraGrid7.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  963. appearance72.BackColor = System.Drawing.SystemColors.ControlLightLight;
  964. appearance72.BackColor2 = System.Drawing.SystemColors.Control;
  965. appearance72.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  966. appearance72.ForeColor = System.Drawing.SystemColors.GrayText;
  967. this.ultraGrid7.DisplayLayout.GroupByBox.PromptAppearance = appearance72;
  968. this.ultraGrid7.DisplayLayout.MaxColScrollRegions = 1;
  969. this.ultraGrid7.DisplayLayout.MaxRowScrollRegions = 1;
  970. appearance73.BackColor = System.Drawing.SystemColors.Window;
  971. appearance73.ForeColor = System.Drawing.SystemColors.ControlText;
  972. this.ultraGrid7.DisplayLayout.Override.ActiveCellAppearance = appearance73;
  973. appearance74.BackColor = System.Drawing.SystemColors.Highlight;
  974. appearance74.ForeColor = System.Drawing.SystemColors.HighlightText;
  975. this.ultraGrid7.DisplayLayout.Override.ActiveRowAppearance = appearance74;
  976. this.ultraGrid7.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  977. this.ultraGrid7.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  978. this.ultraGrid7.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  979. appearance75.BackColor = System.Drawing.SystemColors.Window;
  980. this.ultraGrid7.DisplayLayout.Override.CardAreaAppearance = appearance75;
  981. appearance76.BorderColor = System.Drawing.Color.Silver;
  982. appearance76.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  983. this.ultraGrid7.DisplayLayout.Override.CellAppearance = appearance76;
  984. this.ultraGrid7.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  985. this.ultraGrid7.DisplayLayout.Override.CellPadding = 0;
  986. this.ultraGrid7.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  987. appearance77.BackColor = System.Drawing.SystemColors.Control;
  988. appearance77.BackColor2 = System.Drawing.SystemColors.ControlDark;
  989. appearance77.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  990. appearance77.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  991. appearance77.BorderColor = System.Drawing.SystemColors.Window;
  992. this.ultraGrid7.DisplayLayout.Override.GroupByRowAppearance = appearance77;
  993. appearance78.TextHAlignAsString = "Left";
  994. this.ultraGrid7.DisplayLayout.Override.HeaderAppearance = appearance78;
  995. this.ultraGrid7.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  996. this.ultraGrid7.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  997. appearance79.BackColor = System.Drawing.SystemColors.Window;
  998. appearance79.BorderColor = System.Drawing.Color.Silver;
  999. this.ultraGrid7.DisplayLayout.Override.RowAppearance = appearance79;
  1000. this.ultraGrid7.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1001. appearance80.BackColor = System.Drawing.SystemColors.ControlLight;
  1002. this.ultraGrid7.DisplayLayout.Override.TemplateAddRowAppearance = appearance80;
  1003. this.ultraGrid7.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1004. this.ultraGrid7.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1005. this.ultraGrid7.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1006. this.ultraGrid7.Dock = System.Windows.Forms.DockStyle.Fill;
  1007. this.ultraGrid7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1008. this.ultraGrid7.Location = new System.Drawing.Point(0, 40);
  1009. this.ultraGrid7.Name = "ultraGrid7";
  1010. this.ultraGrid7.Size = new System.Drawing.Size(930, 292);
  1011. this.ultraGrid7.TabIndex = 31;
  1012. this.ultraGrid7.Text = "委托要求";
  1013. //
  1014. // panel9
  1015. //
  1016. this.panel9.Controls.Add(this.btnDeleteSample);
  1017. this.panel9.Controls.Add(this.CHKISALL);
  1018. this.panel9.Controls.Add(this.ultraSAMPLE_NO);
  1019. this.panel9.Controls.Add(this.ultraLabel16);
  1020. this.panel9.Controls.Add(this.ultraLabel19);
  1021. this.panel9.Controls.Add(this.ultraBATCH_NO);
  1022. this.panel9.Dock = System.Windows.Forms.DockStyle.Top;
  1023. this.panel9.Location = new System.Drawing.Point(0, 0);
  1024. this.panel9.Name = "panel9";
  1025. this.panel9.Size = new System.Drawing.Size(930, 40);
  1026. this.panel9.TabIndex = 30;
  1027. //
  1028. // btnDeleteSample
  1029. //
  1030. this.btnDeleteSample.Location = new System.Drawing.Point(340, 9);
  1031. this.btnDeleteSample.Name = "btnDeleteSample";
  1032. this.btnDeleteSample.Size = new System.Drawing.Size(75, 23);
  1033. this.btnDeleteSample.TabIndex = 225;
  1034. this.btnDeleteSample.Text = "-试样号";
  1035. this.btnDeleteSample.UseVisualStyleBackColor = true;
  1036. this.btnDeleteSample.Click += new System.EventHandler(this.btnDeleteSample_Click);
  1037. //
  1038. // CHKISALL
  1039. //
  1040. this.CHKISALL.AutoSize = true;
  1041. this.CHKISALL.Checked = true;
  1042. this.CHKISALL.CheckState = System.Windows.Forms.CheckState.Checked;
  1043. this.CHKISALL.Location = new System.Drawing.Point(266, 12);
  1044. this.CHKISALL.Margin = new System.Windows.Forms.Padding(2);
  1045. this.CHKISALL.Name = "CHKISALL";
  1046. this.CHKISALL.Size = new System.Drawing.Size(71, 19);
  1047. this.CHKISALL.TabIndex = 224;
  1048. this.CHKISALL.Text = "增加全部";
  1049. this.CHKISALL.CheckedChanged += new System.EventHandler(this.CHKISALL_CheckedChanged);
  1050. //
  1051. // ultraSAMPLE_NO
  1052. //
  1053. this.ultraSAMPLE_NO.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1054. this.ultraSAMPLE_NO.Location = new System.Drawing.Point(180, 11);
  1055. this.ultraSAMPLE_NO.Name = "ultraSAMPLE_NO";
  1056. this.ultraSAMPLE_NO.Size = new System.Drawing.Size(82, 21);
  1057. this.ultraSAMPLE_NO.TabIndex = 219;
  1058. this.ultraSAMPLE_NO.TextChanged += new System.EventHandler(this.ultraSAMPLE_NO_TextChanged);
  1059. //
  1060. // ultraLabel16
  1061. //
  1062. appearance15.TextHAlignAsString = "Right";
  1063. appearance15.TextVAlignAsString = "Middle";
  1064. this.ultraLabel16.Appearance = appearance15;
  1065. this.ultraLabel16.AutoSize = true;
  1066. this.ultraLabel16.Location = new System.Drawing.Point(134, 14);
  1067. this.ultraLabel16.Name = "ultraLabel16";
  1068. this.ultraLabel16.Size = new System.Drawing.Size(42, 16);
  1069. this.ultraLabel16.TabIndex = 218;
  1070. this.ultraLabel16.Text = "试样号";
  1071. //
  1072. // ultraLabel19
  1073. //
  1074. appearance65.TextHAlignAsString = "Right";
  1075. appearance65.TextVAlignAsString = "Middle";
  1076. this.ultraLabel19.Appearance = appearance65;
  1077. this.ultraLabel19.AutoSize = true;
  1078. this.ultraLabel19.Location = new System.Drawing.Point(12, 14);
  1079. this.ultraLabel19.Name = "ultraLabel19";
  1080. this.ultraLabel19.Size = new System.Drawing.Size(54, 16);
  1081. this.ultraLabel19.TabIndex = 217;
  1082. this.ultraLabel19.Text = "性能批号";
  1083. //
  1084. // ultraBATCH_NO
  1085. //
  1086. this.ultraBATCH_NO.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1087. this.ultraBATCH_NO.Location = new System.Drawing.Point(70, 11);
  1088. this.ultraBATCH_NO.Name = "ultraBATCH_NO";
  1089. this.ultraBATCH_NO.Size = new System.Drawing.Size(60, 21);
  1090. this.ultraBATCH_NO.TabIndex = 216;
  1091. this.ultraBATCH_NO.TextChanged += new System.EventHandler(this.ultraBATCH_NO_TextChanged);
  1092. //
  1093. // panel7
  1094. //
  1095. this.panel7.Controls.Add(this.ultraGroupBox3);
  1096. this.panel7.Controls.Add(this.panel8);
  1097. this.panel7.Dock = System.Windows.Forms.DockStyle.Left;
  1098. this.panel7.Location = new System.Drawing.Point(0, 106);
  1099. this.panel7.Name = "panel7";
  1100. this.panel7.Size = new System.Drawing.Size(160, 332);
  1101. this.panel7.TabIndex = 1;
  1102. //
  1103. // ultraGroupBox3
  1104. //
  1105. this.ultraGroupBox3.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  1106. this.ultraGroupBox3.Controls.Add(this.ultraGrid3);
  1107. this.ultraGroupBox3.Controls.Add(this.ultraGrid2);
  1108. this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
  1109. this.ultraGroupBox3.Location = new System.Drawing.Point(0, 80);
  1110. this.ultraGroupBox3.Name = "ultraGroupBox3";
  1111. this.ultraGroupBox3.Size = new System.Drawing.Size(160, 252);
  1112. this.ultraGroupBox3.TabIndex = 157;
  1113. this.ultraGroupBox3.Text = "生产合同、销售合同队列";
  1114. //
  1115. // ultraGrid3
  1116. //
  1117. this.ultraGrid3.DataMember = "Table3";
  1118. this.ultraGrid3.DataSource = this.dataSet1;
  1119. appearance149.BackColor = System.Drawing.SystemColors.Window;
  1120. appearance149.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1121. this.ultraGrid3.DisplayLayout.Appearance = appearance149;
  1122. ultraGridColumn23.Header.VisiblePosition = 0;
  1123. ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(130, 0);
  1124. ultraGridBand5.Columns.AddRange(new object[] {
  1125. ultraGridColumn23});
  1126. ultraGridBand5.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  1127. this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
  1128. this.ultraGrid3.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1129. this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1130. appearance150.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1131. appearance150.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1132. appearance150.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1133. appearance150.BorderColor = System.Drawing.SystemColors.Window;
  1134. this.ultraGrid3.DisplayLayout.GroupByBox.Appearance = appearance150;
  1135. appearance151.ForeColor = System.Drawing.SystemColors.GrayText;
  1136. this.ultraGrid3.DisplayLayout.GroupByBox.BandLabelAppearance = appearance151;
  1137. this.ultraGrid3.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1138. appearance152.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1139. appearance152.BackColor2 = System.Drawing.SystemColors.Control;
  1140. appearance152.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1141. appearance152.ForeColor = System.Drawing.SystemColors.GrayText;
  1142. this.ultraGrid3.DisplayLayout.GroupByBox.PromptAppearance = appearance152;
  1143. this.ultraGrid3.DisplayLayout.MaxColScrollRegions = 1;
  1144. this.ultraGrid3.DisplayLayout.MaxRowScrollRegions = 1;
  1145. appearance153.BackColor = System.Drawing.SystemColors.Window;
  1146. appearance153.ForeColor = System.Drawing.SystemColors.ControlText;
  1147. this.ultraGrid3.DisplayLayout.Override.ActiveCellAppearance = appearance153;
  1148. appearance154.BackColor = System.Drawing.SystemColors.Highlight;
  1149. appearance154.ForeColor = System.Drawing.SystemColors.HighlightText;
  1150. this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance154;
  1151. this.ultraGrid3.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  1152. this.ultraGrid3.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  1153. this.ultraGrid3.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1154. this.ultraGrid3.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1155. appearance155.BackColor = System.Drawing.SystemColors.Window;
  1156. this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance155;
  1157. appearance156.BorderColor = System.Drawing.Color.Silver;
  1158. appearance156.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1159. this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance156;
  1160. this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1161. this.ultraGrid3.DisplayLayout.Override.CellPadding = 0;
  1162. this.ultraGrid3.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  1163. appearance157.BackColor = System.Drawing.SystemColors.Control;
  1164. appearance157.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1165. appearance157.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1166. appearance157.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1167. appearance157.BorderColor = System.Drawing.SystemColors.Window;
  1168. this.ultraGrid3.DisplayLayout.Override.GroupByRowAppearance = appearance157;
  1169. appearance158.TextHAlignAsString = "Left";
  1170. this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance158;
  1171. this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1172. this.ultraGrid3.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1173. appearance159.BackColor = System.Drawing.SystemColors.Window;
  1174. appearance159.BorderColor = System.Drawing.Color.Silver;
  1175. this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance159;
  1176. this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1177. appearance160.BackColor = System.Drawing.SystemColors.ControlLight;
  1178. this.ultraGrid3.DisplayLayout.Override.TemplateAddRowAppearance = appearance160;
  1179. this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1180. this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1181. this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1182. this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
  1183. this.ultraGrid3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1184. this.ultraGrid3.Location = new System.Drawing.Point(1, 149);
  1185. this.ultraGrid3.Name = "ultraGrid3";
  1186. this.ultraGrid3.Size = new System.Drawing.Size(158, 102);
  1187. this.ultraGrid3.TabIndex = 28;
  1188. this.ultraGrid3.Text = "生产合同队列";
  1189. //
  1190. // ultraGrid2
  1191. //
  1192. this.ultraGrid2.DataMember = "Table2";
  1193. this.ultraGrid2.DataSource = this.dataSet1;
  1194. appearance14.BackColor = System.Drawing.SystemColors.Window;
  1195. appearance14.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1196. this.ultraGrid2.DisplayLayout.Appearance = appearance14;
  1197. ultraGridColumn24.Header.VisiblePosition = 0;
  1198. ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(130, 0);
  1199. ultraGridBand6.Columns.AddRange(new object[] {
  1200. ultraGridColumn24});
  1201. ultraGridBand6.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  1202. this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand6);
  1203. this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1204. this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1205. appearance16.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1206. appearance16.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1207. appearance16.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1208. appearance16.BorderColor = System.Drawing.SystemColors.Window;
  1209. this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance16;
  1210. appearance17.ForeColor = System.Drawing.SystemColors.GrayText;
  1211. this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance17;
  1212. this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1213. appearance18.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1214. appearance18.BackColor2 = System.Drawing.SystemColors.Control;
  1215. appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1216. appearance18.ForeColor = System.Drawing.SystemColors.GrayText;
  1217. this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance18;
  1218. this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
  1219. this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
  1220. appearance19.BackColor = System.Drawing.SystemColors.Window;
  1221. appearance19.ForeColor = System.Drawing.SystemColors.ControlText;
  1222. this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance19;
  1223. appearance20.BackColor = System.Drawing.SystemColors.Highlight;
  1224. appearance20.ForeColor = System.Drawing.SystemColors.HighlightText;
  1225. this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance20;
  1226. this.ultraGrid2.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  1227. this.ultraGrid2.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  1228. this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1229. this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1230. appearance21.BackColor = System.Drawing.SystemColors.Window;
  1231. this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance21;
  1232. appearance23.BorderColor = System.Drawing.Color.Silver;
  1233. appearance23.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1234. this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance23;
  1235. this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1236. this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
  1237. this.ultraGrid2.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  1238. appearance24.BackColor = System.Drawing.SystemColors.Control;
  1239. appearance24.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1240. appearance24.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1241. appearance24.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1242. appearance24.BorderColor = System.Drawing.SystemColors.Window;
  1243. this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance24;
  1244. appearance25.TextHAlignAsString = "Left";
  1245. this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance25;
  1246. this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1247. this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1248. appearance26.BackColor = System.Drawing.SystemColors.Window;
  1249. appearance26.BorderColor = System.Drawing.Color.Silver;
  1250. this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance26;
  1251. this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1252. appearance27.BackColor = System.Drawing.SystemColors.ControlLight;
  1253. this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance27;
  1254. this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1255. this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1256. this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1257. this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Top;
  1258. this.ultraGrid2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1259. this.ultraGrid2.Location = new System.Drawing.Point(1, 18);
  1260. this.ultraGrid2.Name = "ultraGrid2";
  1261. this.ultraGrid2.Size = new System.Drawing.Size(158, 131);
  1262. this.ultraGrid2.TabIndex = 27;
  1263. this.ultraGrid2.Text = "生产合同队列";
  1264. this.ultraGrid2.AfterRowActivate += new System.EventHandler(this.ultraGrid2_AfterRowActivate);
  1265. //
  1266. // panel8
  1267. //
  1268. this.panel8.Controls.Add(this.CHKSHOWSAMPLE_NO);
  1269. this.panel8.Controls.Add(this.CHKSHOWBATCH_NO);
  1270. this.panel8.Controls.Add(this.btnConfirm);
  1271. this.panel8.Dock = System.Windows.Forms.DockStyle.Top;
  1272. this.panel8.Location = new System.Drawing.Point(0, 0);
  1273. this.panel8.Name = "panel8";
  1274. this.panel8.Size = new System.Drawing.Size(160, 80);
  1275. this.panel8.TabIndex = 156;
  1276. //
  1277. // CHKSHOWSAMPLE_NO
  1278. //
  1279. this.CHKSHOWSAMPLE_NO.AutoSize = true;
  1280. this.CHKSHOWSAMPLE_NO.Location = new System.Drawing.Point(26, 29);
  1281. this.CHKSHOWSAMPLE_NO.Margin = new System.Windows.Forms.Padding(2);
  1282. this.CHKSHOWSAMPLE_NO.Name = "CHKSHOWSAMPLE_NO";
  1283. this.CHKSHOWSAMPLE_NO.Size = new System.Drawing.Size(108, 19);
  1284. this.CHKSHOWSAMPLE_NO.TabIndex = 226;
  1285. this.CHKSHOWSAMPLE_NO.Text = "显示全部试样号";
  1286. this.CHKSHOWSAMPLE_NO.CheckedChanged += new System.EventHandler(this.CHKSHOWSAMPLE_NO_CheckedChanged);
  1287. //
  1288. // CHKSHOWBATCH_NO
  1289. //
  1290. this.CHKSHOWBATCH_NO.AutoSize = true;
  1291. this.CHKSHOWBATCH_NO.Location = new System.Drawing.Point(27, 6);
  1292. this.CHKSHOWBATCH_NO.Margin = new System.Windows.Forms.Padding(2);
  1293. this.CHKSHOWBATCH_NO.Name = "CHKSHOWBATCH_NO";
  1294. this.CHKSHOWBATCH_NO.Size = new System.Drawing.Size(108, 19);
  1295. this.CHKSHOWBATCH_NO.TabIndex = 225;
  1296. this.CHKSHOWBATCH_NO.Text = "显示全部性能批";
  1297. this.CHKSHOWBATCH_NO.CheckedChanged += new System.EventHandler(this.CHKSHOWBATCH_NO_CheckedChanged);
  1298. //
  1299. // btnConfirm
  1300. //
  1301. this.btnConfirm.AutoSize = true;
  1302. this.btnConfirm.Location = new System.Drawing.Point(21, 51);
  1303. this.btnConfirm.Name = "btnConfirm";
  1304. this.btnConfirm.Size = new System.Drawing.Size(115, 24);
  1305. this.btnConfirm.TabIndex = 219;
  1306. this.btnConfirm.Text = "查看取样要求明细";
  1307. this.btnConfirm.UseVisualStyleBackColor = true;
  1308. this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
  1309. //
  1310. // ultraGroupBox2
  1311. //
  1312. this.ultraGroupBox2.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  1313. this.ultraGroupBox2.Controls.Add(this.panel6);
  1314. this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
  1315. this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
  1316. this.ultraGroupBox2.Name = "ultraGroupBox2";
  1317. this.ultraGroupBox2.Size = new System.Drawing.Size(1090, 106);
  1318. this.ultraGroupBox2.TabIndex = 0;
  1319. this.ultraGroupBox2.Text = "基本信息";
  1320. //
  1321. // panel6
  1322. //
  1323. this.panel6.Controls.Add(this.ultraTextEditor4);
  1324. this.panel6.Controls.Add(this.ultraTextEditor1);
  1325. this.panel6.Controls.Add(this.ultraTextEditor2);
  1326. this.panel6.Controls.Add(this.ultraLabel13);
  1327. this.panel6.Controls.Add(this.ultraTextEditor3);
  1328. this.panel6.Controls.Add(this.ultraLabel14);
  1329. this.panel6.Controls.Add(this.ultraLabel17);
  1330. this.panel6.Controls.Add(this.ultraLabel7);
  1331. this.panel6.Controls.Add(this.txtBATCH_MAX);
  1332. this.panel6.Controls.Add(this.ultraLabel2);
  1333. this.panel6.Controls.Add(this.txtCONSIGN_NAME);
  1334. this.panel6.Controls.Add(this.ultraLabel10);
  1335. this.panel6.Controls.Add(this.txtCONSIGN_TIME);
  1336. this.panel6.Controls.Add(this.txtSTEEL_NO);
  1337. this.panel6.Controls.Add(this.ultraLabel11);
  1338. this.panel6.Controls.Add(this.ultraLabel3);
  1339. this.panel6.Controls.Add(this.txtPRODUCT_STD);
  1340. this.panel6.Controls.Add(this.ultraLabel6);
  1341. this.panel6.Controls.Add(this.txtSTEEL_GRADE);
  1342. this.panel6.Controls.Add(this.txtHEAT_NO);
  1343. this.panel6.Controls.Add(this.ultraLabel5);
  1344. this.panel6.Controls.Add(this.ultraLabel4);
  1345. this.panel6.Controls.Add(this.txtCHECK_NO);
  1346. this.panel6.Controls.Add(this.ultraLabel1);
  1347. this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
  1348. this.panel6.Location = new System.Drawing.Point(1, 18);
  1349. this.panel6.Name = "panel6";
  1350. this.panel6.Size = new System.Drawing.Size(1088, 87);
  1351. this.panel6.TabIndex = 24;
  1352. //
  1353. // ultraTextEditor4
  1354. //
  1355. this.ultraTextEditor4.Location = new System.Drawing.Point(648, 59);
  1356. this.ultraTextEditor4.MaxLength = 200;
  1357. this.ultraTextEditor4.Name = "ultraTextEditor4";
  1358. this.ultraTextEditor4.Size = new System.Drawing.Size(100, 21);
  1359. this.ultraTextEditor4.TabIndex = 154;
  1360. //
  1361. // ultraTextEditor1
  1362. //
  1363. this.ultraTextEditor1.Location = new System.Drawing.Point(242, 34);
  1364. this.ultraTextEditor1.MaxLength = 200;
  1365. this.ultraTextEditor1.Name = "ultraTextEditor1";
  1366. this.ultraTextEditor1.Size = new System.Drawing.Size(141, 21);
  1367. this.ultraTextEditor1.TabIndex = 153;
  1368. //
  1369. // ultraTextEditor2
  1370. //
  1371. this.ultraTextEditor2.Location = new System.Drawing.Point(242, 59);
  1372. this.ultraTextEditor2.Name = "ultraTextEditor2";
  1373. this.ultraTextEditor2.Size = new System.Drawing.Size(141, 21);
  1374. this.ultraTextEditor2.TabIndex = 152;
  1375. //
  1376. // ultraLabel13
  1377. //
  1378. appearance137.TextHAlignAsString = "Right";
  1379. appearance137.TextVAlignAsString = "Middle";
  1380. this.ultraLabel13.Appearance = appearance137;
  1381. this.ultraLabel13.AutoSize = true;
  1382. this.ultraLabel13.Location = new System.Drawing.Point(184, 62);
  1383. this.ultraLabel13.Name = "ultraLabel13";
  1384. this.ultraLabel13.Size = new System.Drawing.Size(54, 16);
  1385. this.ultraLabel13.TabIndex = 151;
  1386. this.ultraLabel13.Text = "标准类别";
  1387. //
  1388. // ultraTextEditor3
  1389. //
  1390. this.ultraTextEditor3.Location = new System.Drawing.Point(241, 9);
  1391. this.ultraTextEditor3.MaxLength = 200;
  1392. this.ultraTextEditor3.Name = "ultraTextEditor3";
  1393. this.ultraTextEditor3.Size = new System.Drawing.Size(142, 21);
  1394. this.ultraTextEditor3.TabIndex = 150;
  1395. //
  1396. // ultraLabel14
  1397. //
  1398. appearance138.TextHAlignAsString = "Right";
  1399. appearance138.TextVAlignAsString = "Middle";
  1400. this.ultraLabel14.Appearance = appearance138;
  1401. this.ultraLabel14.AutoSize = true;
  1402. this.ultraLabel14.Location = new System.Drawing.Point(209, 37);
  1403. this.ultraLabel14.Name = "ultraLabel14";
  1404. this.ultraLabel14.Size = new System.Drawing.Size(29, 16);
  1405. this.ultraLabel14.TabIndex = 149;
  1406. this.ultraLabel14.Text = "标准";
  1407. //
  1408. // ultraLabel17
  1409. //
  1410. appearance139.TextHAlignAsString = "Right";
  1411. appearance139.TextVAlignAsString = "Middle";
  1412. this.ultraLabel17.Appearance = appearance139;
  1413. this.ultraLabel17.AutoSize = true;
  1414. this.ultraLabel17.Location = new System.Drawing.Point(208, 12);
  1415. this.ultraLabel17.Name = "ultraLabel17";
  1416. this.ultraLabel17.RightToLeft = System.Windows.Forms.RightToLeft.No;
  1417. this.ultraLabel17.Size = new System.Drawing.Size(29, 16);
  1418. this.ultraLabel17.TabIndex = 148;
  1419. this.ultraLabel17.Text = "品名";
  1420. //
  1421. // ultraLabel7
  1422. //
  1423. appearance140.TextHAlignAsString = "Right";
  1424. appearance140.TextVAlignAsString = "Middle";
  1425. this.ultraLabel7.Appearance = appearance140;
  1426. this.ultraLabel7.AutoSize = true;
  1427. this.ultraLabel7.Location = new System.Drawing.Point(590, 62);
  1428. this.ultraLabel7.Name = "ultraLabel7";
  1429. this.ultraLabel7.Size = new System.Drawing.Size(54, 16);
  1430. this.ultraLabel7.TabIndex = 146;
  1431. this.ultraLabel7.Text = "长度范围";
  1432. //
  1433. // txtBATCH_MAX
  1434. //
  1435. this.txtBATCH_MAX.Location = new System.Drawing.Point(70, 59);
  1436. this.txtBATCH_MAX.MaxLength = 100;
  1437. this.txtBATCH_MAX.Name = "txtBATCH_MAX";
  1438. this.txtBATCH_MAX.Size = new System.Drawing.Size(110, 21);
  1439. this.txtBATCH_MAX.TabIndex = 144;
  1440. //
  1441. // ultraLabel2
  1442. //
  1443. appearance141.TextHAlignAsString = "Right";
  1444. appearance141.TextVAlignAsString = "Middle";
  1445. this.ultraLabel2.Appearance = appearance141;
  1446. this.ultraLabel2.AutoSize = true;
  1447. this.ultraLabel2.Location = new System.Drawing.Point(12, 62);
  1448. this.ultraLabel2.Name = "ultraLabel2";
  1449. this.ultraLabel2.Size = new System.Drawing.Size(54, 16);
  1450. this.ultraLabel2.TabIndex = 145;
  1451. this.ultraLabel2.Text = "分批上限";
  1452. //
  1453. // txtCONSIGN_NAME
  1454. //
  1455. this.txtCONSIGN_NAME.Location = new System.Drawing.Point(648, 9);
  1456. this.txtCONSIGN_NAME.MaxLength = 200;
  1457. this.txtCONSIGN_NAME.Name = "txtCONSIGN_NAME";
  1458. this.txtCONSIGN_NAME.Size = new System.Drawing.Size(100, 21);
  1459. this.txtCONSIGN_NAME.TabIndex = 143;
  1460. //
  1461. // ultraLabel10
  1462. //
  1463. appearance142.TextHAlignAsString = "Right";
  1464. appearance142.TextVAlignAsString = "Middle";
  1465. this.ultraLabel10.Appearance = appearance142;
  1466. this.ultraLabel10.AutoSize = true;
  1467. this.ultraLabel10.Location = new System.Drawing.Point(615, 12);
  1468. this.ultraLabel10.Name = "ultraLabel10";
  1469. this.ultraLabel10.Size = new System.Drawing.Size(29, 16);
  1470. this.ultraLabel10.TabIndex = 142;
  1471. this.ultraLabel10.Text = "扣型";
  1472. //
  1473. // txtCONSIGN_TIME
  1474. //
  1475. this.txtCONSIGN_TIME.Location = new System.Drawing.Point(648, 34);
  1476. this.txtCONSIGN_TIME.MaxLength = 200;
  1477. this.txtCONSIGN_TIME.Name = "txtCONSIGN_TIME";
  1478. this.txtCONSIGN_TIME.Size = new System.Drawing.Size(100, 21);
  1479. this.txtCONSIGN_TIME.TabIndex = 137;
  1480. //
  1481. // txtSTEEL_NO
  1482. //
  1483. this.txtSTEEL_NO.Location = new System.Drawing.Point(445, 34);
  1484. this.txtSTEEL_NO.MaxLength = 200;
  1485. this.txtSTEEL_NO.Name = "txtSTEEL_NO";
  1486. this.txtSTEEL_NO.Size = new System.Drawing.Size(141, 21);
  1487. this.txtSTEEL_NO.TabIndex = 131;
  1488. //
  1489. // ultraLabel11
  1490. //
  1491. appearance143.TextHAlignAsString = "Right";
  1492. appearance143.TextVAlignAsString = "Middle";
  1493. this.ultraLabel11.Appearance = appearance143;
  1494. this.ultraLabel11.AutoSize = true;
  1495. this.ultraLabel11.Location = new System.Drawing.Point(590, 37);
  1496. this.ultraLabel11.Name = "ultraLabel11";
  1497. this.ultraLabel11.Size = new System.Drawing.Size(54, 16);
  1498. this.ultraLabel11.TabIndex = 130;
  1499. this.ultraLabel11.Text = "目标长度";
  1500. //
  1501. // ultraLabel3
  1502. //
  1503. appearance144.TextHAlignAsString = "Right";
  1504. appearance144.TextVAlignAsString = "Middle";
  1505. this.ultraLabel3.Appearance = appearance144;
  1506. this.ultraLabel3.AutoSize = true;
  1507. this.ultraLabel3.Location = new System.Drawing.Point(37, 37);
  1508. this.ultraLabel3.Name = "ultraLabel3";
  1509. this.ultraLabel3.Size = new System.Drawing.Size(29, 16);
  1510. this.ultraLabel3.TabIndex = 128;
  1511. this.ultraLabel3.Text = "炉号";
  1512. //
  1513. // txtPRODUCT_STD
  1514. //
  1515. this.txtPRODUCT_STD.Location = new System.Drawing.Point(445, 59);
  1516. this.txtPRODUCT_STD.Name = "txtPRODUCT_STD";
  1517. this.txtPRODUCT_STD.Size = new System.Drawing.Size(141, 21);
  1518. this.txtPRODUCT_STD.TabIndex = 127;
  1519. //
  1520. // ultraLabel6
  1521. //
  1522. appearance145.TextHAlignAsString = "Right";
  1523. appearance145.TextVAlignAsString = "Middle";
  1524. this.ultraLabel6.Appearance = appearance145;
  1525. this.ultraLabel6.AutoSize = true;
  1526. this.ultraLabel6.Location = new System.Drawing.Point(412, 62);
  1527. this.ultraLabel6.Name = "ultraLabel6";
  1528. this.ultraLabel6.Size = new System.Drawing.Size(29, 16);
  1529. this.ultraLabel6.TabIndex = 126;
  1530. this.ultraLabel6.Text = "规格";
  1531. //
  1532. // txtSTEEL_GRADE
  1533. //
  1534. this.txtSTEEL_GRADE.Location = new System.Drawing.Point(444, 9);
  1535. this.txtSTEEL_GRADE.MaxLength = 200;
  1536. this.txtSTEEL_GRADE.Name = "txtSTEEL_GRADE";
  1537. this.txtSTEEL_GRADE.Size = new System.Drawing.Size(142, 21);
  1538. this.txtSTEEL_GRADE.TabIndex = 125;
  1539. //
  1540. // txtHEAT_NO
  1541. //
  1542. this.txtHEAT_NO.Location = new System.Drawing.Point(70, 34);
  1543. this.txtHEAT_NO.MaxLength = 200;
  1544. this.txtHEAT_NO.Name = "txtHEAT_NO";
  1545. this.txtHEAT_NO.Size = new System.Drawing.Size(109, 21);
  1546. this.txtHEAT_NO.TabIndex = 123;
  1547. //
  1548. // ultraLabel5
  1549. //
  1550. appearance146.TextHAlignAsString = "Right";
  1551. appearance146.TextVAlignAsString = "Middle";
  1552. this.ultraLabel5.Appearance = appearance146;
  1553. this.ultraLabel5.AutoSize = true;
  1554. this.ultraLabel5.Location = new System.Drawing.Point(412, 37);
  1555. this.ultraLabel5.Name = "ultraLabel5";
  1556. this.ultraLabel5.Size = new System.Drawing.Size(29, 16);
  1557. this.ultraLabel5.TabIndex = 122;
  1558. this.ultraLabel5.Text = "钢号";
  1559. //
  1560. // ultraLabel4
  1561. //
  1562. appearance147.TextHAlignAsString = "Right";
  1563. appearance147.TextVAlignAsString = "Middle";
  1564. this.ultraLabel4.Appearance = appearance147;
  1565. this.ultraLabel4.AutoSize = true;
  1566. this.ultraLabel4.Location = new System.Drawing.Point(411, 12);
  1567. this.ultraLabel4.Name = "ultraLabel4";
  1568. this.ultraLabel4.RightToLeft = System.Windows.Forms.RightToLeft.No;
  1569. this.ultraLabel4.Size = new System.Drawing.Size(29, 16);
  1570. this.ultraLabel4.TabIndex = 120;
  1571. this.ultraLabel4.Text = "钢级";
  1572. //
  1573. // txtCHECK_NO
  1574. //
  1575. this.txtCHECK_NO.Location = new System.Drawing.Point(70, 9);
  1576. this.txtCHECK_NO.MaxLength = 100;
  1577. this.txtCHECK_NO.Name = "txtCHECK_NO";
  1578. this.txtCHECK_NO.Size = new System.Drawing.Size(110, 21);
  1579. this.txtCHECK_NO.TabIndex = 118;
  1580. //
  1581. // ultraLabel1
  1582. //
  1583. appearance148.TextHAlignAsString = "Right";
  1584. appearance148.TextVAlignAsString = "Middle";
  1585. this.ultraLabel1.Appearance = appearance148;
  1586. this.ultraLabel1.AutoSize = true;
  1587. this.ultraLabel1.Location = new System.Drawing.Point(12, 12);
  1588. this.ultraLabel1.Name = "ultraLabel1";
  1589. this.ultraLabel1.Size = new System.Drawing.Size(54, 16);
  1590. this.ultraLabel1.TabIndex = 119;
  1591. this.ultraLabel1.Text = "生产批号";
  1592. //
  1593. // ultraGroupBox1
  1594. //
  1595. this.ultraGroupBox1.BorderStyle = Infragistics.Win.Misc.GroupBoxBorderStyle.None;
  1596. this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
  1597. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Left;
  1598. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  1599. this.ultraGroupBox1.Name = "ultraGroupBox1";
  1600. this.ultraGroupBox1.Size = new System.Drawing.Size(232, 438);
  1601. this.ultraGroupBox1.TabIndex = 19;
  1602. this.ultraGroupBox1.Text = "生产批号、炉号队列";
  1603. //
  1604. // ultraGrid1
  1605. //
  1606. this.ultraGrid1.DataMember = "Table1";
  1607. this.ultraGrid1.DataSource = this.dataSet1;
  1608. appearance22.BackColor = System.Drawing.SystemColors.Window;
  1609. appearance22.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1610. this.ultraGrid1.DisplayLayout.Appearance = appearance22;
  1611. ultraGridColumn25.Header.VisiblePosition = 0;
  1612. ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
  1613. ultraGridColumn26.Header.VisiblePosition = 1;
  1614. ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
  1615. ultraGridBand7.Columns.AddRange(new object[] {
  1616. ultraGridColumn25,
  1617. ultraGridColumn26});
  1618. ultraGridBand7.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  1619. this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand7);
  1620. this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1621. this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1622. appearance28.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1623. appearance28.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1624. appearance28.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1625. appearance28.BorderColor = System.Drawing.SystemColors.Window;
  1626. this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance28;
  1627. appearance29.ForeColor = System.Drawing.SystemColors.GrayText;
  1628. this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance29;
  1629. this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1630. appearance30.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1631. appearance30.BackColor2 = System.Drawing.SystemColors.Control;
  1632. appearance30.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1633. appearance30.ForeColor = System.Drawing.SystemColors.GrayText;
  1634. this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance30;
  1635. this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
  1636. this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
  1637. appearance31.BackColor = System.Drawing.SystemColors.Window;
  1638. appearance31.ForeColor = System.Drawing.SystemColors.ControlText;
  1639. this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance31;
  1640. appearance32.BackColor = System.Drawing.SystemColors.Highlight;
  1641. appearance32.ForeColor = System.Drawing.SystemColors.HighlightText;
  1642. this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance32;
  1643. this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  1644. this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  1645. this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1646. this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1647. appearance33.BackColor = System.Drawing.SystemColors.Window;
  1648. this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance33;
  1649. appearance34.BorderColor = System.Drawing.Color.Silver;
  1650. appearance34.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1651. this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance34;
  1652. this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1653. this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
  1654. this.ultraGrid1.DisplayLayout.Override.ColumnSizingArea = Infragistics.Win.UltraWinGrid.ColumnSizingArea.CellsOnly;
  1655. appearance35.BackColor = System.Drawing.SystemColors.Control;
  1656. appearance35.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1657. appearance35.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1658. appearance35.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1659. appearance35.BorderColor = System.Drawing.SystemColors.Window;
  1660. this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance35;
  1661. appearance36.TextHAlignAsString = "Left";
  1662. this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance36;
  1663. this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1664. this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1665. appearance37.BackColor = System.Drawing.SystemColors.Window;
  1666. appearance37.BorderColor = System.Drawing.Color.Silver;
  1667. this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance37;
  1668. this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1669. appearance38.BackColor = System.Drawing.SystemColors.ControlLight;
  1670. this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance38;
  1671. this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1672. this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1673. this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1674. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  1675. this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1676. this.ultraGrid1.Location = new System.Drawing.Point(1, 18);
  1677. this.ultraGrid1.Name = "ultraGrid1";
  1678. this.ultraGrid1.Size = new System.Drawing.Size(230, 419);
  1679. this.ultraGrid1.TabIndex = 27;
  1680. this.ultraGrid1.Text = "生产批号、炉号队列";
  1681. this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
  1682. //
  1683. // ultraTabPageControl2
  1684. //
  1685. this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
  1686. this.ultraTabPageControl2.Name = "ultraTabPageControl2";
  1687. this.ultraTabPageControl2.Size = new System.Drawing.Size(1322, 438);
  1688. //
  1689. // ultraTabPageControl3
  1690. //
  1691. this.ultraTabPageControl3.Location = new System.Drawing.Point(-10000, -10000);
  1692. this.ultraTabPageControl3.Name = "ultraTabPageControl3";
  1693. this.ultraTabPageControl3.Size = new System.Drawing.Size(1322, 438);
  1694. //
  1695. // panel1
  1696. //
  1697. this.panel1.Controls.Add(this.panel3);
  1698. this.panel1.Controls.Add(this.panel2);
  1699. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1700. this.panel1.Location = new System.Drawing.Point(0, 0);
  1701. this.panel1.Name = "panel1";
  1702. this.panel1.Size = new System.Drawing.Size(1328, 506);
  1703. this.panel1.TabIndex = 0;
  1704. //
  1705. // panel3
  1706. //
  1707. this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1708. this.panel3.Controls.Add(this.ultraTabControl1);
  1709. this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
  1710. this.panel3.Location = new System.Drawing.Point(0, 40);
  1711. this.panel3.Name = "panel3";
  1712. this.panel3.Size = new System.Drawing.Size(1328, 466);
  1713. this.panel3.TabIndex = 18;
  1714. //
  1715. // ultraTabControl1
  1716. //
  1717. this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
  1718. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
  1719. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
  1720. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl3);
  1721. this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  1722. this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
  1723. this.ultraTabControl1.Name = "ultraTabControl1";
  1724. this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
  1725. this.ultraTabControl1.Size = new System.Drawing.Size(1326, 464);
  1726. this.ultraTabControl1.TabIndex = 19;
  1727. ultraTab1.TabPage = this.ultraTabPageControl1;
  1728. ultraTab1.Text = "未委托";
  1729. ultraTab2.TabPage = this.ultraTabPageControl2;
  1730. ultraTab2.Text = "已委托";
  1731. ultraTab3.TabPage = this.ultraTabPageControl3;
  1732. ultraTab3.Text = "已下发";
  1733. this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  1734. ultraTab1,
  1735. ultraTab2,
  1736. ultraTab3});
  1737. //
  1738. // ultraTabSharedControlsPage1
  1739. //
  1740. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
  1741. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  1742. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1322, 438);
  1743. //
  1744. // panel2
  1745. //
  1746. this.panel2.Controls.Add(this.chkCHECK_NO);
  1747. this.panel2.Controls.Add(this.chkHEAT_NO);
  1748. this.panel2.Controls.Add(this.txtQuerySTOVE_NO);
  1749. this.panel2.Controls.Add(this.txtQueryLOT_NO);
  1750. this.panel2.Controls.Add(this.ultraLabel8);
  1751. this.panel2.Controls.Add(this.dateEnd);
  1752. this.panel2.Controls.Add(this.chkCONSIGN_TIME);
  1753. this.panel2.Controls.Add(this.dateBegin);
  1754. this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
  1755. this.panel2.Location = new System.Drawing.Point(0, 0);
  1756. this.panel2.Name = "panel2";
  1757. this.panel2.Size = new System.Drawing.Size(1328, 40);
  1758. this.panel2.TabIndex = 17;
  1759. //
  1760. // chkCHECK_NO
  1761. //
  1762. this.chkCHECK_NO.AutoSize = true;
  1763. this.chkCHECK_NO.Location = new System.Drawing.Point(300, 12);
  1764. this.chkCHECK_NO.Margin = new System.Windows.Forms.Padding(2);
  1765. this.chkCHECK_NO.Name = "chkCHECK_NO";
  1766. this.chkCHECK_NO.Size = new System.Drawing.Size(71, 19);
  1767. this.chkCHECK_NO.TabIndex = 110;
  1768. this.chkCHECK_NO.Text = "生产批号";
  1769. //
  1770. // chkHEAT_NO
  1771. //
  1772. this.chkHEAT_NO.AutoSize = true;
  1773. this.chkHEAT_NO.Location = new System.Drawing.Point(471, 12);
  1774. this.chkHEAT_NO.Margin = new System.Windows.Forms.Padding(2);
  1775. this.chkHEAT_NO.Name = "chkHEAT_NO";
  1776. this.chkHEAT_NO.Size = new System.Drawing.Size(46, 19);
  1777. this.chkHEAT_NO.TabIndex = 111;
  1778. this.chkHEAT_NO.Text = "炉号";
  1779. //
  1780. // txtQuerySTOVE_NO
  1781. //
  1782. this.txtQuerySTOVE_NO.Location = new System.Drawing.Point(521, 11);
  1783. this.txtQuerySTOVE_NO.MaxLength = 100;
  1784. this.txtQuerySTOVE_NO.Name = "txtQuerySTOVE_NO";
  1785. this.txtQuerySTOVE_NO.Size = new System.Drawing.Size(92, 21);
  1786. this.txtQuerySTOVE_NO.TabIndex = 107;
  1787. //
  1788. // txtQueryLOT_NO
  1789. //
  1790. this.txtQueryLOT_NO.Location = new System.Drawing.Point(375, 11);
  1791. this.txtQueryLOT_NO.MaxLength = 100;
  1792. this.txtQueryLOT_NO.Name = "txtQueryLOT_NO";
  1793. this.txtQueryLOT_NO.Size = new System.Drawing.Size(92, 21);
  1794. this.txtQueryLOT_NO.TabIndex = 106;
  1795. //
  1796. // ultraLabel8
  1797. //
  1798. appearance66.TextHAlignAsString = "Center";
  1799. appearance66.TextVAlignAsString = "Middle";
  1800. this.ultraLabel8.Appearance = appearance66;
  1801. this.ultraLabel8.AutoSize = true;
  1802. this.ultraLabel8.Location = new System.Drawing.Point(183, 14);
  1803. this.ultraLabel8.Name = "ultraLabel8";
  1804. this.ultraLabel8.Size = new System.Drawing.Size(17, 16);
  1805. this.ultraLabel8.TabIndex = 108;
  1806. this.ultraLabel8.Text = "至";
  1807. //
  1808. // dateEnd
  1809. //
  1810. this.dateEnd.FormatProvider = new System.Globalization.CultureInfo("sq-AL");
  1811. this.dateEnd.Location = new System.Drawing.Point(204, 11);
  1812. this.dateEnd.Name = "dateEnd";
  1813. this.dateEnd.Size = new System.Drawing.Size(92, 21);
  1814. this.dateEnd.TabIndex = 105;
  1815. //
  1816. // chkCONSIGN_TIME
  1817. //
  1818. appearance67.TextHAlignAsString = "Left";
  1819. this.chkCONSIGN_TIME.Appearance = appearance67;
  1820. this.chkCONSIGN_TIME.AutoSize = true;
  1821. this.chkCONSIGN_TIME.Checked = true;
  1822. this.chkCONSIGN_TIME.CheckState = System.Windows.Forms.CheckState.Checked;
  1823. this.chkCONSIGN_TIME.Location = new System.Drawing.Point(12, 12);
  1824. this.chkCONSIGN_TIME.Name = "chkCONSIGN_TIME";
  1825. this.chkCONSIGN_TIME.Size = new System.Drawing.Size(71, 19);
  1826. this.chkCONSIGN_TIME.TabIndex = 109;
  1827. this.chkCONSIGN_TIME.Text = "生产时间";
  1828. //
  1829. // dateBegin
  1830. //
  1831. this.dateBegin.FormatProvider = new System.Globalization.CultureInfo("sq-AL");
  1832. this.dateBegin.FormatString = "";
  1833. this.dateBegin.Location = new System.Drawing.Point(87, 11);
  1834. this.dateBegin.MaskInput = "";
  1835. this.dateBegin.Name = "dateBegin";
  1836. this.dateBegin.Size = new System.Drawing.Size(92, 21);
  1837. this.dateBegin.TabIndex = 104;
  1838. //
  1839. // FrmSendCheckConsign
  1840. //
  1841. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1842. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1843. this.ClientSize = new System.Drawing.Size(1328, 506);
  1844. this.Controls.Add(this.panel1);
  1845. this.Name = "FrmSendCheckConsign";
  1846. this.Text = "检验委托实绩";
  1847. this.Load += new System.EventHandler(this.FrmCheckConsign_Load);
  1848. this.ultraTabPageControl1.ResumeLayout(false);
  1849. this.panel4.ResumeLayout(false);
  1850. this.panel5.ResumeLayout(false);
  1851. this.splitContainer1.Panel1.ResumeLayout(false);
  1852. this.splitContainer1.Panel2.ResumeLayout(false);
  1853. this.splitContainer1.ResumeLayout(false);
  1854. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).EndInit();
  1855. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  1856. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  1857. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  1858. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
  1859. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
  1860. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
  1861. ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
  1862. ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).EndInit();
  1863. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid6)).EndInit();
  1864. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
  1865. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).EndInit();
  1866. this.panel9.ResumeLayout(false);
  1867. this.panel9.PerformLayout();
  1868. ((System.ComponentModel.ISupportInitialize)(this.CHKISALL)).EndInit();
  1869. ((System.ComponentModel.ISupportInitialize)(this.ultraSAMPLE_NO)).EndInit();
  1870. ((System.ComponentModel.ISupportInitialize)(this.ultraBATCH_NO)).EndInit();
  1871. this.panel7.ResumeLayout(false);
  1872. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
  1873. this.ultraGroupBox3.ResumeLayout(false);
  1874. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
  1875. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
  1876. this.panel8.ResumeLayout(false);
  1877. this.panel8.PerformLayout();
  1878. ((System.ComponentModel.ISupportInitialize)(this.CHKSHOWSAMPLE_NO)).EndInit();
  1879. ((System.ComponentModel.ISupportInitialize)(this.CHKSHOWBATCH_NO)).EndInit();
  1880. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
  1881. this.ultraGroupBox2.ResumeLayout(false);
  1882. this.panel6.ResumeLayout(false);
  1883. this.panel6.PerformLayout();
  1884. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).EndInit();
  1885. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
  1886. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
  1887. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
  1888. ((System.ComponentModel.ISupportInitialize)(this.txtBATCH_MAX)).EndInit();
  1889. ((System.ComponentModel.ISupportInitialize)(this.txtCONSIGN_NAME)).EndInit();
  1890. ((System.ComponentModel.ISupportInitialize)(this.txtCONSIGN_TIME)).EndInit();
  1891. ((System.ComponentModel.ISupportInitialize)(this.txtSTEEL_NO)).EndInit();
  1892. ((System.ComponentModel.ISupportInitialize)(this.txtPRODUCT_STD)).EndInit();
  1893. ((System.ComponentModel.ISupportInitialize)(this.txtSTEEL_GRADE)).EndInit();
  1894. ((System.ComponentModel.ISupportInitialize)(this.txtHEAT_NO)).EndInit();
  1895. ((System.ComponentModel.ISupportInitialize)(this.txtCHECK_NO)).EndInit();
  1896. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  1897. this.ultraGroupBox1.ResumeLayout(false);
  1898. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  1899. this.panel1.ResumeLayout(false);
  1900. this.panel3.ResumeLayout(false);
  1901. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
  1902. this.ultraTabControl1.ResumeLayout(false);
  1903. this.panel2.ResumeLayout(false);
  1904. this.panel2.PerformLayout();
  1905. ((System.ComponentModel.ISupportInitialize)(this.chkCHECK_NO)).EndInit();
  1906. ((System.ComponentModel.ISupportInitialize)(this.chkHEAT_NO)).EndInit();
  1907. ((System.ComponentModel.ISupportInitialize)(this.txtQuerySTOVE_NO)).EndInit();
  1908. ((System.ComponentModel.ISupportInitialize)(this.txtQueryLOT_NO)).EndInit();
  1909. ((System.ComponentModel.ISupportInitialize)(this.dateEnd)).EndInit();
  1910. ((System.ComponentModel.ISupportInitialize)(this.chkCONSIGN_TIME)).EndInit();
  1911. ((System.ComponentModel.ISupportInitialize)(this.dateBegin)).EndInit();
  1912. this.ResumeLayout(false);
  1913. }
  1914. #endregion
  1915. private System.Windows.Forms.Panel panel1;
  1916. private System.Windows.Forms.Panel panel2;
  1917. private System.Data.DataSet dataSet1;
  1918. private System.Data.DataTable dataTable1;
  1919. private System.Data.DataColumn dataColumn1;
  1920. private System.Data.DataColumn dataColumn2;
  1921. private System.Windows.Forms.Panel panel3;
  1922. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
  1923. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  1924. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  1925. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
  1926. private System.Windows.Forms.Panel panel4;
  1927. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  1928. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  1929. private System.Data.DataTable dataTable2;
  1930. private System.Data.DataTable dataTable3;
  1931. private System.Data.DataTable dataTable4;
  1932. private System.Data.DataColumn dataColumn16;
  1933. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkCHECK_NO;
  1934. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkHEAT_NO;
  1935. internal Infragistics.Win.UltraWinEditors.UltraTextEditor txtQuerySTOVE_NO;
  1936. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtQueryLOT_NO;
  1937. private Infragistics.Win.Misc.UltraLabel ultraLabel8;
  1938. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dateEnd;
  1939. internal Infragistics.Win.UltraWinEditors.UltraCheckEditor chkCONSIGN_TIME;
  1940. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dateBegin;
  1941. private System.Data.DataColumn dataColumn20;
  1942. private System.Windows.Forms.Panel panel5;
  1943. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
  1944. private System.Windows.Forms.Panel panel6;
  1945. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
  1946. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
  1947. private Infragistics.Win.Misc.UltraLabel ultraLabel13;
  1948. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor3;
  1949. private Infragistics.Win.Misc.UltraLabel ultraLabel14;
  1950. private Infragistics.Win.Misc.UltraLabel ultraLabel17;
  1951. private Infragistics.Win.Misc.UltraLabel ultraLabel7;
  1952. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtBATCH_MAX;
  1953. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  1954. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtCONSIGN_NAME;
  1955. private Infragistics.Win.Misc.UltraLabel ultraLabel10;
  1956. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtCONSIGN_TIME;
  1957. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSTEEL_NO;
  1958. private Infragistics.Win.Misc.UltraLabel ultraLabel11;
  1959. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  1960. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPRODUCT_STD;
  1961. private Infragistics.Win.Misc.UltraLabel ultraLabel6;
  1962. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSTEEL_GRADE;
  1963. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtHEAT_NO;
  1964. private Infragistics.Win.Misc.UltraLabel ultraLabel5;
  1965. private Infragistics.Win.Misc.UltraLabel ultraLabel4;
  1966. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtCHECK_NO;
  1967. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  1968. private System.Windows.Forms.Panel panel7;
  1969. private System.Data.DataColumn dataColumn3;
  1970. private System.Data.DataColumn dataColumn4;
  1971. private System.Windows.Forms.Button btnConfirm;
  1972. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor4;
  1973. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraBATCH_NO;
  1974. private System.Windows.Forms.SplitContainer splitContainer1;
  1975. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
  1976. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid6;
  1977. private System.Data.DataColumn dataColumn11;
  1978. private System.Data.DataColumn dataColumn12;
  1979. private System.Data.DataTable dataTable5;
  1980. private System.Data.DataColumn dataColumn5;
  1981. private System.Data.DataColumn dataColumn6;
  1982. private System.Data.DataColumn dataColumn7;
  1983. private System.Data.DataColumn dataColumn8;
  1984. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid5;
  1985. private System.Data.DataTable dataTable6;
  1986. private System.Data.DataColumn dataColumn9;
  1987. private System.Data.DataColumn dataColumn10;
  1988. private System.Data.DataTable dataTable7;
  1989. private System.Data.DataColumn dataColumn13;
  1990. private System.Data.DataColumn dataColumn14;
  1991. private System.Data.DataColumn dataColumn15;
  1992. private System.Data.DataColumn dataColumn17;
  1993. private System.Data.DataColumn dataColumn18;
  1994. private System.Data.DataColumn dataColumn19;
  1995. private System.Data.DataColumn dataColumn21;
  1996. private System.Data.DataColumn dataColumn22;
  1997. private System.Data.DataColumn dataColumn23;
  1998. private System.Data.DataColumn dataColumn24;
  1999. private System.Data.DataColumn dataColumn25;
  2000. private System.Data.DataColumn dataColumn26;
  2001. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
  2002. private System.Windows.Forms.Panel panel9;
  2003. private Infragistics.Win.Misc.UltraLabel ultraLabel19;
  2004. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraSAMPLE_NO;
  2005. private Infragistics.Win.Misc.UltraLabel ultraLabel16;
  2006. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid7;
  2007. private Infragistics.Win.UltraWinEditors.UltraCheckEditor CHKISALL;
  2008. private System.Windows.Forms.Button btnDeleteSample;
  2009. private System.Windows.Forms.Panel panel8;
  2010. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
  2011. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
  2012. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
  2013. private Infragistics.Win.UltraWinEditors.UltraCheckEditor CHKSHOWBATCH_NO;
  2014. private Infragistics.Win.UltraWinEditors.UltraCheckEditor CHKSHOWSAMPLE_NO;
  2015. }
  2016. }