FrmTryRollingMaterial.Designer.cs 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205
  1. namespace Core.StlMes.Client.ZGMil.Popup
  2. {
  3. partial class FrmTryRollingMaterial
  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. this.components = new System.ComponentModel.Container();
  29. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  30. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SLAB_NUM");
  31. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FIX_LEN");
  32. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRADENAME");
  33. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DIMATER");
  34. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_LEN");
  35. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FIX_NUM");
  36. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_WEIGHT");
  37. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_STOVE_NO");
  38. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  39. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  40. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  41. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table3", -1);
  42. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOVE_NO");
  43. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_STOVE_NO");
  44. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MAT_ORIGIN_NAME");
  45. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SOURE_NAME");
  46. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
  47. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRADENAME");
  48. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_NAME");
  49. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PLINE_NAME");
  50. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DIMATER");
  51. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_LEN");
  52. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FIX_NUM");
  53. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FIX_LEN");
  54. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_WEIGHT");
  55. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRODUCNAME");
  56. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STEELNAME");
  57. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_RESULT_CODE");
  58. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DB_WEIGHT");
  59. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_COUNT");
  60. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  61. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GPTYPE");
  62. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STORAGE_NO");
  63. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STORAGE_NAME");
  64. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_RESULT_NAME");
  65. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUGDE_APPLY_CODE");
  66. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHK", 0);
  67. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  68. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  69. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  70. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  71. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  72. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  73. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  74. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CONTRACT_NO");
  75. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SLAB_NUM");
  76. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_STOVE_NO");
  77. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LOT_NO");
  78. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ID");
  79. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_NO");
  80. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATUS");
  81. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRO_PLAN_ID");
  82. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GX_PLAN_NO");
  83. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATUS1");
  84. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("START_TIME");
  85. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  86. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_STOVE_NO");
  87. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PLINE_CODE");
  88. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DB_LENGTH");
  89. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRADENAME");
  90. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DB_HEIGHT");
  91. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOVE_NO");
  92. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_LENGTH");
  93. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FEED_ROW_NO");
  94. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DB_NUM");
  95. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MAT_HEIGHT");
  96. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MAT_TOTAL_HEIGHT");
  97. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FEED_NUM");
  98. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FEED_LENGTH");
  99. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PIPE_SECTION");
  100. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FEED_HEAT_NO");
  101. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
  102. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  103. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  104. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  105. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  106. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  107. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  108. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  109. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  110. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  111. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  112. this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
  113. this.chkNodeQuery = new Infragistics.Win.UltraWinGrid.UltraGrid();
  114. this.dataSet1 = new System.Data.DataSet();
  115. this.dtContratNo = new System.Data.DataTable();
  116. this.dataColumn2 = new System.Data.DataColumn();
  117. this.dataColumn58 = new System.Data.DataColumn();
  118. this.dataColumn59 = new System.Data.DataColumn();
  119. this.dataColumn60 = new System.Data.DataColumn();
  120. this.dataColumn70 = new System.Data.DataColumn();
  121. this.dataColumn71 = new System.Data.DataColumn();
  122. this.dataColumn72 = new System.Data.DataColumn();
  123. this.dataColumn42 = new System.Data.DataColumn();
  124. this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
  125. this.txtJudgeNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  126. this.chkJudgeNo = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  127. this.udtDate = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  128. this.chkDate = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  129. this.chkSection = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  130. this.chkLength = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  131. this.chkSteelName = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  132. this.chkContractNo = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  133. this.txtSection = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  134. this.txtLength = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  135. this.txtSteelName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  136. this.txtContractNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  137. this.btnQuery = new Infragistics.Win.Misc.UltraButton();
  138. this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
  139. this.ugbCol = new Infragistics.Win.Misc.UltraGroupBox();
  140. this.txtZPPipeSize = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  141. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  142. this.txtZPJudgeNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  143. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  144. this.btnZP = new Infragistics.Win.Misc.UltraButton();
  145. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  146. this.ultraGrid_GHDL = new Infragistics.Win.UltraWinGrid.UltraGrid();
  147. this.dataSet3 = new System.Data.DataSet();
  148. this.dataTable1 = new System.Data.DataTable();
  149. this.dataColumn7 = new System.Data.DataColumn();
  150. this.dataColumn8 = new System.Data.DataColumn();
  151. this.dataColumn9 = new System.Data.DataColumn();
  152. this.dataColumn10 = new System.Data.DataColumn();
  153. this.dataColumn11 = new System.Data.DataColumn();
  154. this.dataColumn12 = new System.Data.DataColumn();
  155. this.dataColumn13 = new System.Data.DataColumn();
  156. this.dataColumn14 = new System.Data.DataColumn();
  157. this.dataColumn15 = new System.Data.DataColumn();
  158. this.dataColumn16 = new System.Data.DataColumn();
  159. this.dataColumn17 = new System.Data.DataColumn();
  160. this.dataColumn18 = new System.Data.DataColumn();
  161. this.dataColumn19 = new System.Data.DataColumn();
  162. this.dataColumn20 = new System.Data.DataColumn();
  163. this.dataColumn21 = new System.Data.DataColumn();
  164. this.dataColumn22 = new System.Data.DataColumn();
  165. this.dataColumn23 = new System.Data.DataColumn();
  166. this.dataColumn24 = new System.Data.DataColumn();
  167. this.dataColumn25 = new System.Data.DataColumn();
  168. this.dataColumn26 = new System.Data.DataColumn();
  169. this.dataColumn32 = new System.Data.DataColumn();
  170. this.dataColumn56 = new System.Data.DataColumn();
  171. this.dataColumn1 = new System.Data.DataColumn();
  172. this.dataColumn3 = new System.Data.DataColumn();
  173. this.dataColumn4 = new System.Data.DataColumn();
  174. this.dataColumn5 = new System.Data.DataColumn();
  175. this.dataColumn63 = new System.Data.DataColumn();
  176. this.dataColumn64 = new System.Data.DataColumn();
  177. this.dataColumn65 = new System.Data.DataColumn();
  178. this.dataTable3 = new System.Data.DataTable();
  179. this.dataColumn73 = new System.Data.DataColumn();
  180. this.dataColumn74 = new System.Data.DataColumn();
  181. this.dataColumn75 = new System.Data.DataColumn();
  182. this.dataColumn76 = new System.Data.DataColumn();
  183. this.dataColumn77 = new System.Data.DataColumn();
  184. this.dataColumn78 = new System.Data.DataColumn();
  185. this.dataColumn79 = new System.Data.DataColumn();
  186. this.dataColumn80 = new System.Data.DataColumn();
  187. this.dataColumn81 = new System.Data.DataColumn();
  188. this.dataColumn82 = new System.Data.DataColumn();
  189. this.dataColumn83 = new System.Data.DataColumn();
  190. this.dataColumn84 = new System.Data.DataColumn();
  191. this.dataColumn85 = new System.Data.DataColumn();
  192. this.dataColumn86 = new System.Data.DataColumn();
  193. this.dataColumn87 = new System.Data.DataColumn();
  194. this.dataColumn88 = new System.Data.DataColumn();
  195. this.dataColumn89 = new System.Data.DataColumn();
  196. this.dataColumn90 = new System.Data.DataColumn();
  197. this.dataColumn91 = new System.Data.DataColumn();
  198. this.dataColumn92 = new System.Data.DataColumn();
  199. this.dataColumn93 = new System.Data.DataColumn();
  200. this.dataColumn94 = new System.Data.DataColumn();
  201. this.dataColumn95 = new System.Data.DataColumn();
  202. this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  203. this.splitContainer2 = new System.Windows.Forms.SplitContainer();
  204. this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel();
  205. this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  206. this.dataSet4 = new System.Data.DataSet();
  207. this.dtBackPlan = new System.Data.DataTable();
  208. this.dataColumn27 = new System.Data.DataColumn();
  209. this.dataColumn28 = new System.Data.DataColumn();
  210. this.dataColumn29 = new System.Data.DataColumn();
  211. this.dataColumn30 = new System.Data.DataColumn();
  212. this.dataColumn31 = new System.Data.DataColumn();
  213. this.dataColumn33 = new System.Data.DataColumn();
  214. this.dataColumn55 = new System.Data.DataColumn();
  215. this.dataColumn68 = new System.Data.DataColumn();
  216. this.dataColumn69 = new System.Data.DataColumn();
  217. this.dataColumn41 = new System.Data.DataColumn();
  218. this.ultraGroupBox5 = new Infragistics.Win.Misc.UltraGroupBox();
  219. this.chkIsStart = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  220. this.chkContractNo1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  221. this.txtLotNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  222. this.txtJudgeStoveNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  223. this.txtContractNo1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  224. this.chkJudgeNo1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  225. this.chkLotNo1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  226. this.ultraButton2 = new Infragistics.Win.Misc.UltraButton();
  227. this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
  228. this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
  229. this.ultraButton1 = new Infragistics.Win.Misc.UltraButton();
  230. this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
  231. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  232. this.dataSet2 = new System.Data.DataSet();
  233. this.dataTable2 = new System.Data.DataTable();
  234. this.dataColumn34 = new System.Data.DataColumn();
  235. this.dataColumn43 = new System.Data.DataColumn();
  236. this.dataColumn46 = new System.Data.DataColumn();
  237. this.dataColumn50 = new System.Data.DataColumn();
  238. this.dataColumn53 = new System.Data.DataColumn();
  239. this.dataColumn57 = new System.Data.DataColumn();
  240. this.dataColumn62 = new System.Data.DataColumn();
  241. this.dataColumn6 = new System.Data.DataColumn();
  242. this.dataColumn35 = new System.Data.DataColumn();
  243. this.dataColumn36 = new System.Data.DataColumn();
  244. this.dataColumn37 = new System.Data.DataColumn();
  245. this.dataColumn38 = new System.Data.DataColumn();
  246. this.dataColumn39 = new System.Data.DataColumn();
  247. this.dataColumn40 = new System.Data.DataColumn();
  248. this.dataColumn44 = new System.Data.DataColumn();
  249. this.dataColumn45 = new System.Data.DataColumn();
  250. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  251. this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  252. this.dataColumn47 = new System.Data.DataColumn();
  253. this.matGpMEntityBindingSource = new System.Windows.Forms.BindingSource(this.components);
  254. this.ultraTabPageControl1.SuspendLayout();
  255. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  256. this.splitContainer1.Panel1.SuspendLayout();
  257. this.splitContainer1.Panel2.SuspendLayout();
  258. this.splitContainer1.SuspendLayout();
  259. this.tableLayoutPanel3.SuspendLayout();
  260. ((System.ComponentModel.ISupportInitialize)(this.chkNodeQuery)).BeginInit();
  261. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  262. ((System.ComponentModel.ISupportInitialize)(this.dtContratNo)).BeginInit();
  263. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
  264. this.ultraGroupBox3.SuspendLayout();
  265. ((System.ComponentModel.ISupportInitialize)(this.txtJudgeNo)).BeginInit();
  266. ((System.ComponentModel.ISupportInitialize)(this.chkJudgeNo)).BeginInit();
  267. ((System.ComponentModel.ISupportInitialize)(this.udtDate)).BeginInit();
  268. ((System.ComponentModel.ISupportInitialize)(this.chkDate)).BeginInit();
  269. ((System.ComponentModel.ISupportInitialize)(this.chkSection)).BeginInit();
  270. ((System.ComponentModel.ISupportInitialize)(this.chkLength)).BeginInit();
  271. ((System.ComponentModel.ISupportInitialize)(this.chkSteelName)).BeginInit();
  272. ((System.ComponentModel.ISupportInitialize)(this.chkContractNo)).BeginInit();
  273. ((System.ComponentModel.ISupportInitialize)(this.txtSection)).BeginInit();
  274. ((System.ComponentModel.ISupportInitialize)(this.txtLength)).BeginInit();
  275. ((System.ComponentModel.ISupportInitialize)(this.txtSteelName)).BeginInit();
  276. ((System.ComponentModel.ISupportInitialize)(this.txtContractNo)).BeginInit();
  277. this.tableLayoutPanel4.SuspendLayout();
  278. ((System.ComponentModel.ISupportInitialize)(this.ugbCol)).BeginInit();
  279. this.ugbCol.SuspendLayout();
  280. ((System.ComponentModel.ISupportInitialize)(this.txtZPPipeSize)).BeginInit();
  281. ((System.ComponentModel.ISupportInitialize)(this.txtZPJudgeNo)).BeginInit();
  282. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  283. this.ultraGroupBox1.SuspendLayout();
  284. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid_GHDL)).BeginInit();
  285. ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).BeginInit();
  286. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  287. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
  288. this.ultraTabPageControl2.SuspendLayout();
  289. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
  290. this.splitContainer2.Panel1.SuspendLayout();
  291. this.splitContainer2.Panel2.SuspendLayout();
  292. this.splitContainer2.SuspendLayout();
  293. this.tableLayoutPanel6.SuspendLayout();
  294. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
  295. ((System.ComponentModel.ISupportInitialize)(this.dataSet4)).BeginInit();
  296. ((System.ComponentModel.ISupportInitialize)(this.dtBackPlan)).BeginInit();
  297. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).BeginInit();
  298. this.ultraGroupBox5.SuspendLayout();
  299. ((System.ComponentModel.ISupportInitialize)(this.chkIsStart)).BeginInit();
  300. ((System.ComponentModel.ISupportInitialize)(this.chkContractNo1)).BeginInit();
  301. ((System.ComponentModel.ISupportInitialize)(this.txtLotNo)).BeginInit();
  302. ((System.ComponentModel.ISupportInitialize)(this.txtJudgeStoveNo)).BeginInit();
  303. ((System.ComponentModel.ISupportInitialize)(this.txtContractNo1)).BeginInit();
  304. ((System.ComponentModel.ISupportInitialize)(this.chkJudgeNo1)).BeginInit();
  305. ((System.ComponentModel.ISupportInitialize)(this.chkLotNo1)).BeginInit();
  306. this.tableLayoutPanel5.SuspendLayout();
  307. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
  308. this.ultraGroupBox2.SuspendLayout();
  309. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
  310. this.ultraGroupBox4.SuspendLayout();
  311. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  312. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
  313. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  314. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
  315. this.ultraTabControl1.SuspendLayout();
  316. ((System.ComponentModel.ISupportInitialize)(this.matGpMEntityBindingSource)).BeginInit();
  317. this.SuspendLayout();
  318. //
  319. // ultraTabPageControl1
  320. //
  321. this.ultraTabPageControl1.Controls.Add(this.splitContainer1);
  322. this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
  323. this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(2);
  324. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  325. this.ultraTabPageControl1.Size = new System.Drawing.Size(1024, 574);
  326. //
  327. // splitContainer1
  328. //
  329. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  330. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  331. this.splitContainer1.Margin = new System.Windows.Forms.Padding(2);
  332. this.splitContainer1.Name = "splitContainer1";
  333. //
  334. // splitContainer1.Panel1
  335. //
  336. this.splitContainer1.Panel1.Controls.Add(this.tableLayoutPanel3);
  337. //
  338. // splitContainer1.Panel2
  339. //
  340. this.splitContainer1.Panel2.Controls.Add(this.tableLayoutPanel4);
  341. this.splitContainer1.Size = new System.Drawing.Size(1024, 574);
  342. this.splitContainer1.SplitterDistance = 265;
  343. this.splitContainer1.SplitterWidth = 3;
  344. this.splitContainer1.TabIndex = 0;
  345. //
  346. // tableLayoutPanel3
  347. //
  348. this.tableLayoutPanel3.ColumnCount = 1;
  349. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 288F));
  350. this.tableLayoutPanel3.Controls.Add(this.chkNodeQuery, 0, 1);
  351. this.tableLayoutPanel3.Controls.Add(this.ultraGroupBox3, 0, 0);
  352. this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
  353. this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
  354. this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(2);
  355. this.tableLayoutPanel3.Name = "tableLayoutPanel3";
  356. this.tableLayoutPanel3.RowCount = 2;
  357. this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 30.66202F));
  358. this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 69.33798F));
  359. this.tableLayoutPanel3.Size = new System.Drawing.Size(265, 574);
  360. this.tableLayoutPanel3.TabIndex = 1;
  361. //
  362. // chkNodeQuery
  363. //
  364. this.chkNodeQuery.DataMember = "Table1";
  365. this.chkNodeQuery.DataSource = this.dataSet1;
  366. ultraGridColumn1.Header.VisiblePosition = 0;
  367. ultraGridColumn1.Hidden = true;
  368. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 3;
  369. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  370. ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 0);
  371. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
  372. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
  373. ultraGridColumn1.RowLayoutColumnInfo.WeightY = 40F;
  374. ultraGridColumn2.Header.VisiblePosition = 1;
  375. ultraGridColumn2.Hidden = true;
  376. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 5;
  377. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  378. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
  379. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
  380. ultraGridColumn3.Header.VisiblePosition = 2;
  381. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 1;
  382. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  383. ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 0);
  384. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
  385. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
  386. ultraGridColumn3.RowLayoutColumnInfo.WeightY = 40F;
  387. ultraGridColumn4.Header.VisiblePosition = 3;
  388. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 2;
  389. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  390. ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
  391. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
  392. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
  393. ultraGridColumn5.Header.VisiblePosition = 4;
  394. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 3;
  395. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  396. ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
  397. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
  398. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
  399. ultraGridColumn6.Header.VisiblePosition = 5;
  400. ultraGridColumn6.RowLayoutColumnInfo.OriginX = 4;
  401. ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
  402. ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(62, 0);
  403. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
  404. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
  405. ultraGridColumn7.Header.VisiblePosition = 6;
  406. ultraGridColumn7.Hidden = true;
  407. ultraGridColumn7.RowLayoutColumnInfo.OriginX = 6;
  408. ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
  409. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
  410. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
  411. ultraGridColumn8.Header.VisiblePosition = 7;
  412. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 0;
  413. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  414. ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 0);
  415. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
  416. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
  417. ultraGridBand1.Columns.AddRange(new object[] {
  418. ultraGridColumn1,
  419. ultraGridColumn2,
  420. ultraGridColumn3,
  421. ultraGridColumn4,
  422. ultraGridColumn5,
  423. ultraGridColumn6,
  424. ultraGridColumn7,
  425. ultraGridColumn8});
  426. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  427. this.chkNodeQuery.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  428. this.chkNodeQuery.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  429. this.chkNodeQuery.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
  430. this.chkNodeQuery.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  431. this.chkNodeQuery.Dock = System.Windows.Forms.DockStyle.Fill;
  432. this.chkNodeQuery.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  433. this.chkNodeQuery.Location = new System.Drawing.Point(3, 178);
  434. this.chkNodeQuery.Name = "chkNodeQuery";
  435. this.chkNodeQuery.Size = new System.Drawing.Size(282, 393);
  436. this.chkNodeQuery.TabIndex = 21;
  437. this.chkNodeQuery.AfterRowActivate += new System.EventHandler(this.chkNodeQuery_AfterRowActivate);
  438. //
  439. // dataSet1
  440. //
  441. this.dataSet1.DataSetName = "NewDataSet";
  442. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  443. this.dtContratNo});
  444. //
  445. // dtContratNo
  446. //
  447. this.dtContratNo.Columns.AddRange(new System.Data.DataColumn[] {
  448. this.dataColumn2,
  449. this.dataColumn58,
  450. this.dataColumn59,
  451. this.dataColumn60,
  452. this.dataColumn70,
  453. this.dataColumn71,
  454. this.dataColumn72,
  455. this.dataColumn42});
  456. this.dtContratNo.TableName = "Table1";
  457. //
  458. // dataColumn2
  459. //
  460. this.dataColumn2.Caption = "支数";
  461. this.dataColumn2.ColumnName = "SLAB_NUM";
  462. //
  463. // dataColumn58
  464. //
  465. this.dataColumn58.Caption = "单倍长";
  466. this.dataColumn58.ColumnName = "FIX_LEN";
  467. //
  468. // dataColumn59
  469. //
  470. this.dataColumn59.Caption = "钢种";
  471. this.dataColumn59.ColumnName = "GRADENAME";
  472. //
  473. // dataColumn60
  474. //
  475. this.dataColumn60.Caption = "断面";
  476. this.dataColumn60.ColumnName = "DIMATER";
  477. //
  478. // dataColumn70
  479. //
  480. this.dataColumn70.Caption = "坯料长度";
  481. this.dataColumn70.ColumnName = "ACT_LEN";
  482. //
  483. // dataColumn71
  484. //
  485. this.dataColumn71.Caption = "倍尺数";
  486. this.dataColumn71.ColumnName = "FIX_NUM";
  487. //
  488. // dataColumn72
  489. //
  490. this.dataColumn72.Caption = "材料实重";
  491. this.dataColumn72.ColumnName = "ACT_WEIGHT";
  492. //
  493. // dataColumn42
  494. //
  495. this.dataColumn42.Caption = "炼钢判定炉号";
  496. this.dataColumn42.ColumnName = "JUDGE_STOVE_NO";
  497. //
  498. // ultraGroupBox3
  499. //
  500. this.ultraGroupBox3.Controls.Add(this.txtJudgeNo);
  501. this.ultraGroupBox3.Controls.Add(this.chkJudgeNo);
  502. this.ultraGroupBox3.Controls.Add(this.udtDate);
  503. this.ultraGroupBox3.Controls.Add(this.chkDate);
  504. this.ultraGroupBox3.Controls.Add(this.chkSection);
  505. this.ultraGroupBox3.Controls.Add(this.chkLength);
  506. this.ultraGroupBox3.Controls.Add(this.chkSteelName);
  507. this.ultraGroupBox3.Controls.Add(this.chkContractNo);
  508. this.ultraGroupBox3.Controls.Add(this.txtSection);
  509. this.ultraGroupBox3.Controls.Add(this.txtLength);
  510. this.ultraGroupBox3.Controls.Add(this.txtSteelName);
  511. this.ultraGroupBox3.Controls.Add(this.txtContractNo);
  512. this.ultraGroupBox3.Controls.Add(this.btnQuery);
  513. this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
  514. this.ultraGroupBox3.Location = new System.Drawing.Point(2, 2);
  515. this.ultraGroupBox3.Margin = new System.Windows.Forms.Padding(2);
  516. this.ultraGroupBox3.Name = "ultraGroupBox3";
  517. this.ultraGroupBox3.Size = new System.Drawing.Size(284, 171);
  518. this.ultraGroupBox3.TabIndex = 1;
  519. this.ultraGroupBox3.Text = "试轧料查询";
  520. this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  521. //
  522. // txtJudgeNo
  523. //
  524. this.txtJudgeNo.Enabled = false;
  525. this.txtJudgeNo.Location = new System.Drawing.Point(78, 96);
  526. this.txtJudgeNo.Margin = new System.Windows.Forms.Padding(2);
  527. this.txtJudgeNo.Name = "txtJudgeNo";
  528. this.txtJudgeNo.Size = new System.Drawing.Size(83, 21);
  529. this.txtJudgeNo.TabIndex = 5;
  530. this.txtJudgeNo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSteelName_KeyPress);
  531. //
  532. // chkJudgeNo
  533. //
  534. this.chkJudgeNo.AutoSize = true;
  535. this.chkJudgeNo.BackColor = System.Drawing.Color.Transparent;
  536. this.chkJudgeNo.BackColorInternal = System.Drawing.Color.Transparent;
  537. this.chkJudgeNo.Location = new System.Drawing.Point(15, 99);
  538. this.chkJudgeNo.Margin = new System.Windows.Forms.Padding(2);
  539. this.chkJudgeNo.Name = "chkJudgeNo";
  540. this.chkJudgeNo.Size = new System.Drawing.Size(59, 19);
  541. this.chkJudgeNo.TabIndex = 0;
  542. this.chkJudgeNo.Text = "炉号:";
  543. this.chkJudgeNo.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
  544. //
  545. // udtDate
  546. //
  547. this.udtDate.Enabled = false;
  548. this.udtDate.Location = new System.Drawing.Point(78, 122);
  549. this.udtDate.MaskInput = "{date}";
  550. this.udtDate.Name = "udtDate";
  551. this.udtDate.Size = new System.Drawing.Size(110, 21);
  552. this.udtDate.TabIndex = 3;
  553. //
  554. // chkDate
  555. //
  556. this.chkDate.AutoSize = true;
  557. this.chkDate.BackColor = System.Drawing.Color.Transparent;
  558. this.chkDate.BackColorInternal = System.Drawing.Color.Transparent;
  559. this.chkDate.Location = new System.Drawing.Point(15, 127);
  560. this.chkDate.Name = "chkDate";
  561. this.chkDate.Size = new System.Drawing.Size(59, 19);
  562. this.chkDate.TabIndex = 2;
  563. this.chkDate.Text = "日期:";
  564. this.chkDate.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
  565. //
  566. // chkSection
  567. //
  568. this.chkSection.AutoSize = true;
  569. this.chkSection.BackColor = System.Drawing.Color.Transparent;
  570. this.chkSection.BackColorInternal = System.Drawing.Color.Transparent;
  571. this.chkSection.Location = new System.Drawing.Point(15, 72);
  572. this.chkSection.Margin = new System.Windows.Forms.Padding(2);
  573. this.chkSection.Name = "chkSection";
  574. this.chkSection.Size = new System.Drawing.Size(59, 19);
  575. this.chkSection.TabIndex = 0;
  576. this.chkSection.Text = "断面:";
  577. this.chkSection.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
  578. //
  579. // chkLength
  580. //
  581. this.chkLength.AutoSize = true;
  582. this.chkLength.BackColor = System.Drawing.Color.Transparent;
  583. this.chkLength.BackColorInternal = System.Drawing.Color.Transparent;
  584. this.chkLength.Location = new System.Drawing.Point(15, 47);
  585. this.chkLength.Margin = new System.Windows.Forms.Padding(2);
  586. this.chkLength.Name = "chkLength";
  587. this.chkLength.Size = new System.Drawing.Size(59, 19);
  588. this.chkLength.TabIndex = 0;
  589. this.chkLength.Text = "长度:";
  590. this.chkLength.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
  591. //
  592. // chkSteelName
  593. //
  594. appearance14.BackColor = System.Drawing.Color.Transparent;
  595. this.chkSteelName.Appearance = appearance14;
  596. this.chkSteelName.AutoSize = true;
  597. this.chkSteelName.BackColor = System.Drawing.Color.Transparent;
  598. this.chkSteelName.BackColorInternal = System.Drawing.Color.Transparent;
  599. this.chkSteelName.Location = new System.Drawing.Point(15, 24);
  600. this.chkSteelName.Margin = new System.Windows.Forms.Padding(2);
  601. this.chkSteelName.Name = "chkSteelName";
  602. this.chkSteelName.Size = new System.Drawing.Size(59, 19);
  603. this.chkSteelName.TabIndex = 0;
  604. this.chkSteelName.Text = "钢种:";
  605. this.chkSteelName.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
  606. //
  607. // chkContractNo
  608. //
  609. this.chkContractNo.Location = new System.Drawing.Point(94, 0);
  610. this.chkContractNo.Margin = new System.Windows.Forms.Padding(2);
  611. this.chkContractNo.Name = "chkContractNo";
  612. this.chkContractNo.Size = new System.Drawing.Size(74, 18);
  613. this.chkContractNo.TabIndex = 0;
  614. this.chkContractNo.Text = "合同号:";
  615. this.chkContractNo.Visible = false;
  616. this.chkContractNo.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
  617. //
  618. // txtSection
  619. //
  620. this.txtSection.Enabled = false;
  621. this.txtSection.Location = new System.Drawing.Point(78, 72);
  622. this.txtSection.Margin = new System.Windows.Forms.Padding(2);
  623. this.txtSection.Name = "txtSection";
  624. this.txtSection.Size = new System.Drawing.Size(83, 21);
  625. this.txtSection.TabIndex = 1;
  626. this.txtSection.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSteelName_KeyPress);
  627. //
  628. // txtLength
  629. //
  630. this.txtLength.Enabled = false;
  631. this.txtLength.Location = new System.Drawing.Point(78, 47);
  632. this.txtLength.Margin = new System.Windows.Forms.Padding(2);
  633. this.txtLength.Name = "txtLength";
  634. this.txtLength.Size = new System.Drawing.Size(83, 21);
  635. this.txtLength.TabIndex = 1;
  636. this.txtLength.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSteelName_KeyPress);
  637. //
  638. // txtSteelName
  639. //
  640. this.txtSteelName.Enabled = false;
  641. this.txtSteelName.Location = new System.Drawing.Point(78, 21);
  642. this.txtSteelName.Margin = new System.Windows.Forms.Padding(2);
  643. this.txtSteelName.Name = "txtSteelName";
  644. this.txtSteelName.Size = new System.Drawing.Size(83, 21);
  645. this.txtSteelName.TabIndex = 1;
  646. this.txtSteelName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSteelName_KeyPress);
  647. //
  648. // txtContractNo
  649. //
  650. this.txtContractNo.Enabled = false;
  651. this.txtContractNo.Location = new System.Drawing.Point(179, 0);
  652. this.txtContractNo.Margin = new System.Windows.Forms.Padding(2);
  653. this.txtContractNo.Name = "txtContractNo";
  654. this.txtContractNo.Size = new System.Drawing.Size(84, 21);
  655. this.txtContractNo.TabIndex = 1;
  656. this.txtContractNo.Visible = false;
  657. //
  658. // btnQuery
  659. //
  660. this.btnQuery.Location = new System.Drawing.Point(52, 148);
  661. this.btnQuery.Margin = new System.Windows.Forms.Padding(2);
  662. this.btnQuery.Name = "btnQuery";
  663. this.btnQuery.Size = new System.Drawing.Size(74, 23);
  664. this.btnQuery.TabIndex = 0;
  665. this.btnQuery.Text = "查询";
  666. this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
  667. //
  668. // tableLayoutPanel4
  669. //
  670. this.tableLayoutPanel4.ColumnCount = 1;
  671. this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  672. this.tableLayoutPanel4.Controls.Add(this.ugbCol, 0, 0);
  673. this.tableLayoutPanel4.Controls.Add(this.ultraGroupBox1, 0, 1);
  674. this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
  675. this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 0);
  676. this.tableLayoutPanel4.Margin = new System.Windows.Forms.Padding(2);
  677. this.tableLayoutPanel4.Name = "tableLayoutPanel4";
  678. this.tableLayoutPanel4.RowCount = 2;
  679. this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.92788F));
  680. this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 88.07212F));
  681. this.tableLayoutPanel4.Size = new System.Drawing.Size(756, 574);
  682. this.tableLayoutPanel4.TabIndex = 2;
  683. //
  684. // ugbCol
  685. //
  686. this.ugbCol.Controls.Add(this.txtZPPipeSize);
  687. this.ugbCol.Controls.Add(this.ultraLabel1);
  688. this.ugbCol.Controls.Add(this.txtZPJudgeNo);
  689. this.ugbCol.Controls.Add(this.ultraLabel2);
  690. this.ugbCol.Controls.Add(this.btnZP);
  691. this.ugbCol.Dock = System.Windows.Forms.DockStyle.Fill;
  692. this.ugbCol.Location = new System.Drawing.Point(2, 2);
  693. this.ugbCol.Margin = new System.Windows.Forms.Padding(2);
  694. this.ugbCol.Name = "ugbCol";
  695. this.ugbCol.Size = new System.Drawing.Size(752, 64);
  696. this.ugbCol.TabIndex = 1;
  697. this.ugbCol.Text = "功能操作";
  698. this.ugbCol.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  699. //
  700. // txtZPPipeSize
  701. //
  702. this.txtZPPipeSize.Location = new System.Drawing.Point(271, 25);
  703. this.txtZPPipeSize.Margin = new System.Windows.Forms.Padding(2);
  704. this.txtZPPipeSize.Name = "txtZPPipeSize";
  705. this.txtZPPipeSize.Size = new System.Drawing.Size(140, 21);
  706. this.txtZPPipeSize.TabIndex = 3;
  707. //
  708. // ultraLabel1
  709. //
  710. appearance16.BackColor = System.Drawing.Color.Transparent;
  711. this.ultraLabel1.Appearance = appearance16;
  712. this.ultraLabel1.Location = new System.Drawing.Point(201, 29);
  713. this.ultraLabel1.Margin = new System.Windows.Forms.Padding(2);
  714. this.ultraLabel1.Name = "ultraLabel1";
  715. this.ultraLabel1.Size = new System.Drawing.Size(66, 18);
  716. this.ultraLabel1.TabIndex = 2;
  717. this.ultraLabel1.Text = "组炉规格:";
  718. //
  719. // txtZPJudgeNo
  720. //
  721. this.txtZPJudgeNo.Location = new System.Drawing.Point(93, 25);
  722. this.txtZPJudgeNo.Margin = new System.Windows.Forms.Padding(2);
  723. this.txtZPJudgeNo.Name = "txtZPJudgeNo";
  724. this.txtZPJudgeNo.Size = new System.Drawing.Size(75, 21);
  725. this.txtZPJudgeNo.TabIndex = 1;
  726. //
  727. // ultraLabel2
  728. //
  729. appearance13.BackColor = System.Drawing.Color.Transparent;
  730. this.ultraLabel2.Appearance = appearance13;
  731. this.ultraLabel2.Location = new System.Drawing.Point(23, 28);
  732. this.ultraLabel2.Margin = new System.Windows.Forms.Padding(2);
  733. this.ultraLabel2.Name = "ultraLabel2";
  734. this.ultraLabel2.Size = new System.Drawing.Size(66, 18);
  735. this.ultraLabel2.TabIndex = 0;
  736. this.ultraLabel2.Text = "组炉炉号:";
  737. //
  738. // btnZP
  739. //
  740. this.btnZP.Location = new System.Drawing.Point(437, 23);
  741. this.btnZP.Margin = new System.Windows.Forms.Padding(2);
  742. this.btnZP.Name = "btnZP";
  743. this.btnZP.Size = new System.Drawing.Size(74, 23);
  744. this.btnZP.TabIndex = 0;
  745. this.btnZP.Text = "组炉";
  746. this.btnZP.Click += new System.EventHandler(this.btnZP_Click);
  747. //
  748. // ultraGroupBox1
  749. //
  750. this.ultraGroupBox1.Controls.Add(this.ultraGrid_GHDL);
  751. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  752. this.ultraGroupBox1.Location = new System.Drawing.Point(2, 70);
  753. this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(2);
  754. this.ultraGroupBox1.Name = "ultraGroupBox1";
  755. this.ultraGroupBox1.Size = new System.Drawing.Size(752, 502);
  756. this.ultraGroupBox1.TabIndex = 0;
  757. this.ultraGroupBox1.Text = "试轧料查询";
  758. this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  759. //
  760. // ultraGrid_GHDL
  761. //
  762. this.ultraGrid_GHDL.DataMember = "Table3";
  763. this.ultraGrid_GHDL.DataSource = this.dataSet3;
  764. ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  765. ultraGridColumn9.Header.VisiblePosition = 0;
  766. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 14;
  767. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  768. ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(84, 0);
  769. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
  770. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
  771. ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  772. ultraGridColumn10.Header.VisiblePosition = 1;
  773. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 4;
  774. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  775. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
  776. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
  777. ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  778. ultraGridColumn11.Header.VisiblePosition = 2;
  779. ultraGridColumn11.Hidden = true;
  780. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 19;
  781. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  782. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
  783. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
  784. ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  785. ultraGridColumn12.Header.VisiblePosition = 3;
  786. ultraGridColumn12.Hidden = true;
  787. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 20;
  788. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  789. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
  790. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
  791. ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  792. ultraGridColumn13.Header.VisiblePosition = 4;
  793. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 13;
  794. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  795. ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 0);
  796. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
  797. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
  798. ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  799. ultraGridColumn14.Header.VisiblePosition = 15;
  800. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 5;
  801. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  802. ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(87, 0);
  803. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
  804. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
  805. ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  806. ultraGridColumn15.Header.VisiblePosition = 5;
  807. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 15;
  808. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  809. ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(78, 0);
  810. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
  811. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
  812. ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  813. ultraGridColumn16.Header.VisiblePosition = 6;
  814. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 8;
  815. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  816. ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
  817. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
  818. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
  819. ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  820. ultraGridColumn17.Header.VisiblePosition = 7;
  821. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 6;
  822. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  823. ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
  824. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
  825. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
  826. ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  827. ultraGridColumn18.Header.VisiblePosition = 8;
  828. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 9;
  829. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  830. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
  831. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
  832. ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  833. ultraGridColumn19.Header.VisiblePosition = 9;
  834. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 10;
  835. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  836. ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(72, 0);
  837. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
  838. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
  839. ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  840. ultraGridColumn20.Header.VisiblePosition = 10;
  841. ultraGridColumn20.RowLayoutColumnInfo.OriginX = 11;
  842. ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
  843. ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
  844. ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
  845. ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
  846. ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  847. ultraGridColumn21.Header.VisiblePosition = 11;
  848. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 3;
  849. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  850. ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
  851. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
  852. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
  853. ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  854. ultraGridColumn22.Header.VisiblePosition = 12;
  855. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 16;
  856. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  857. ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
  858. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
  859. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
  860. ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  861. ultraGridColumn23.Header.VisiblePosition = 13;
  862. ultraGridColumn23.RowLayoutColumnInfo.OriginX = 17;
  863. ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
  864. ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(72, 0);
  865. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
  866. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
  867. ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  868. ultraGridColumn24.Header.VisiblePosition = 14;
  869. ultraGridColumn24.Hidden = true;
  870. ultraGridColumn24.RowLayoutColumnInfo.OriginX = 1;
  871. ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
  872. ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
  873. ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
  874. ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  875. ultraGridColumn25.Header.VisiblePosition = 16;
  876. ultraGridColumn25.RowLayoutColumnInfo.OriginX = 12;
  877. ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
  878. ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(89, 0);
  879. ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
  880. ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
  881. appearance17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  882. ultraGridColumn26.CellAppearance = appearance17;
  883. ultraGridColumn26.Header.VisiblePosition = 17;
  884. ultraGridColumn26.MaskInput = "nnnnnnnnn";
  885. ultraGridColumn26.RowLayoutColumnInfo.OriginX = 2;
  886. ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
  887. ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(87, 0);
  888. ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
  889. ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
  890. ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  891. ultraGridColumn27.Header.VisiblePosition = 18;
  892. ultraGridColumn27.RowLayoutColumnInfo.OriginX = 18;
  893. ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
  894. ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 0);
  895. ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
  896. ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
  897. ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  898. ultraGridColumn28.Header.VisiblePosition = 19;
  899. ultraGridColumn28.Hidden = true;
  900. ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
  901. ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
  902. ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  903. ultraGridColumn29.Header.VisiblePosition = 20;
  904. ultraGridColumn29.RowLayoutColumnInfo.OriginX = 7;
  905. ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
  906. ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(88, 0);
  907. ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
  908. ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
  909. ultraGridColumn30.Header.VisiblePosition = 21;
  910. ultraGridColumn30.RowLayoutColumnInfo.OriginX = 1;
  911. ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
  912. ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(93, 0);
  913. ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
  914. ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
  915. ultraGridColumn31.Header.VisiblePosition = 22;
  916. ultraGridColumn31.RowLayoutColumnInfo.OriginX = 19;
  917. ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
  918. ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
  919. ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
  920. ultraGridColumn32.DataType = typeof(bool);
  921. ultraGridColumn32.Header.Caption = "选择";
  922. ultraGridColumn32.Header.VisiblePosition = 23;
  923. ultraGridColumn32.RowLayoutColumnInfo.OriginX = 0;
  924. ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
  925. ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
  926. ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
  927. ultraGridBand2.Columns.AddRange(new object[] {
  928. ultraGridColumn9,
  929. ultraGridColumn10,
  930. ultraGridColumn11,
  931. ultraGridColumn12,
  932. ultraGridColumn13,
  933. ultraGridColumn14,
  934. ultraGridColumn15,
  935. ultraGridColumn16,
  936. ultraGridColumn17,
  937. ultraGridColumn18,
  938. ultraGridColumn19,
  939. ultraGridColumn20,
  940. ultraGridColumn21,
  941. ultraGridColumn22,
  942. ultraGridColumn23,
  943. ultraGridColumn24,
  944. ultraGridColumn25,
  945. ultraGridColumn26,
  946. ultraGridColumn27,
  947. ultraGridColumn28,
  948. ultraGridColumn29,
  949. ultraGridColumn30,
  950. ultraGridColumn31,
  951. ultraGridColumn32});
  952. ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  953. this.ultraGrid_GHDL.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  954. this.ultraGrid_GHDL.DisplayLayout.InterBandSpacing = 8;
  955. appearance1.FontData.BoldAsString = "True";
  956. this.ultraGrid_GHDL.DisplayLayout.Override.ActiveRowAppearance = appearance1;
  957. this.ultraGrid_GHDL.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
  958. this.ultraGrid_GHDL.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  959. this.ultraGrid_GHDL.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.True;
  960. appearance2.BackColor = System.Drawing.Color.Transparent;
  961. this.ultraGrid_GHDL.DisplayLayout.Override.CardAreaAppearance = appearance2;
  962. appearance3.TextVAlignAsString = "Middle";
  963. this.ultraGrid_GHDL.DisplayLayout.Override.CellAppearance = appearance3;
  964. this.ultraGrid_GHDL.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  965. this.ultraGrid_GHDL.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
  966. appearance4.BackColor = System.Drawing.Color.LightSteelBlue;
  967. appearance4.TextHAlignAsString = "Center";
  968. appearance4.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
  969. this.ultraGrid_GHDL.DisplayLayout.Override.HeaderAppearance = appearance4;
  970. this.ultraGrid_GHDL.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  971. this.ultraGrid_GHDL.DisplayLayout.Override.MaxSelectedRows = 1;
  972. this.ultraGrid_GHDL.DisplayLayout.Override.MinRowHeight = 21;
  973. appearance5.BackColor = System.Drawing.Color.LightSteelBlue;
  974. this.ultraGrid_GHDL.DisplayLayout.Override.RowSelectorAppearance = appearance5;
  975. this.ultraGrid_GHDL.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  976. this.ultraGrid_GHDL.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  977. this.ultraGrid_GHDL.DisplayLayout.Override.RowSelectorWidth = 26;
  978. this.ultraGrid_GHDL.DisplayLayout.Override.RowSpacingBefore = 0;
  979. appearance6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
  980. appearance6.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
  981. appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  982. appearance6.ForeColor = System.Drawing.Color.Black;
  983. this.ultraGrid_GHDL.DisplayLayout.Override.SelectedRowAppearance = appearance6;
  984. this.ultraGrid_GHDL.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
  985. this.ultraGrid_GHDL.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
  986. this.ultraGrid_GHDL.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
  987. this.ultraGrid_GHDL.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  988. this.ultraGrid_GHDL.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
  989. this.ultraGrid_GHDL.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  990. this.ultraGrid_GHDL.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  991. this.ultraGrid_GHDL.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
  992. this.ultraGrid_GHDL.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
  993. this.ultraGrid_GHDL.Dock = System.Windows.Forms.DockStyle.Fill;
  994. this.ultraGrid_GHDL.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  995. this.ultraGrid_GHDL.Location = new System.Drawing.Point(3, 18);
  996. this.ultraGrid_GHDL.Name = "ultraGrid_GHDL";
  997. this.ultraGrid_GHDL.Size = new System.Drawing.Size(746, 481);
  998. this.ultraGrid_GHDL.TabIndex = 9;
  999. this.ultraGrid_GHDL.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid_GHDL_CellChange);
  1000. //
  1001. // dataSet3
  1002. //
  1003. this.dataSet3.DataSetName = "NewDataSet";
  1004. this.dataSet3.Tables.AddRange(new System.Data.DataTable[] {
  1005. this.dataTable1,
  1006. this.dataTable3});
  1007. //
  1008. // dataTable1
  1009. //
  1010. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  1011. this.dataColumn7,
  1012. this.dataColumn8,
  1013. this.dataColumn9,
  1014. this.dataColumn10,
  1015. this.dataColumn11,
  1016. this.dataColumn12,
  1017. this.dataColumn13,
  1018. this.dataColumn14,
  1019. this.dataColumn15,
  1020. this.dataColumn16,
  1021. this.dataColumn17,
  1022. this.dataColumn18,
  1023. this.dataColumn19,
  1024. this.dataColumn20,
  1025. this.dataColumn21,
  1026. this.dataColumn22,
  1027. this.dataColumn23,
  1028. this.dataColumn24,
  1029. this.dataColumn25,
  1030. this.dataColumn26,
  1031. this.dataColumn32,
  1032. this.dataColumn56,
  1033. this.dataColumn1,
  1034. this.dataColumn3,
  1035. this.dataColumn4,
  1036. this.dataColumn5,
  1037. this.dataColumn63,
  1038. this.dataColumn64,
  1039. this.dataColumn65});
  1040. this.dataTable1.TableName = "Table1";
  1041. //
  1042. // dataColumn7
  1043. //
  1044. this.dataColumn7.Caption = "炉号";
  1045. this.dataColumn7.ColumnName = "JUDGE_STOVE_NO";
  1046. //
  1047. // dataColumn8
  1048. //
  1049. this.dataColumn8.Caption = "剔除工序";
  1050. this.dataColumn8.ColumnName = "PROCESS_NO";
  1051. //
  1052. // dataColumn9
  1053. //
  1054. this.dataColumn9.Caption = "材料号";
  1055. this.dataColumn9.ColumnName = "MAT_NO";
  1056. //
  1057. // dataColumn10
  1058. //
  1059. this.dataColumn10.Caption = "组炉标识";
  1060. this.dataColumn10.ColumnName = "GROUP_FLAG";
  1061. //
  1062. // dataColumn11
  1063. //
  1064. this.dataColumn11.Caption = "组炉炉号";
  1065. this.dataColumn11.ColumnName = "NEW_HEAT_NO";
  1066. //
  1067. // dataColumn12
  1068. //
  1069. this.dataColumn12.Caption = "处理结果";
  1070. this.dataColumn12.ColumnName = "HANDLE_RESULT";
  1071. //
  1072. // dataColumn13
  1073. //
  1074. this.dataColumn13.Caption = "处理标识";
  1075. this.dataColumn13.ColumnName = "FLAG";
  1076. //
  1077. // dataColumn14
  1078. //
  1079. this.dataColumn14.Caption = "备注";
  1080. this.dataColumn14.ColumnName = "REMARK";
  1081. //
  1082. // dataColumn15
  1083. //
  1084. this.dataColumn15.Caption = "实绩编号";
  1085. this.dataColumn15.ColumnName = "RESULT_NO";
  1086. //
  1087. // dataColumn16
  1088. //
  1089. this.dataColumn16.Caption = "产线";
  1090. this.dataColumn16.ColumnName = "PLINE_CODE";
  1091. //
  1092. // dataColumn17
  1093. //
  1094. this.dataColumn17.Caption = "生产批号";
  1095. this.dataColumn17.ColumnName = "LOT_NO";
  1096. //
  1097. // dataColumn18
  1098. //
  1099. this.dataColumn18.Caption = "合同号";
  1100. this.dataColumn18.ColumnName = "CONTRACT_NO";
  1101. //
  1102. // dataColumn19
  1103. //
  1104. this.dataColumn19.Caption = "单倍长";
  1105. this.dataColumn19.ColumnName = "DB_LENGTH";
  1106. //
  1107. // dataColumn20
  1108. //
  1109. this.dataColumn20.Caption = "品种";
  1110. this.dataColumn20.ColumnName = "VARIETIES";
  1111. //
  1112. // dataColumn21
  1113. //
  1114. this.dataColumn21.Caption = "扣型";
  1115. this.dataColumn21.ColumnName = "BUCKLE_TYPE";
  1116. //
  1117. // dataColumn22
  1118. //
  1119. this.dataColumn22.Caption = "钢级名称";
  1120. this.dataColumn22.ColumnName = "STEELNAME";
  1121. //
  1122. // dataColumn23
  1123. //
  1124. this.dataColumn23.Caption = "钢种名称";
  1125. this.dataColumn23.ColumnName = "GRADENAME";
  1126. //
  1127. // dataColumn24
  1128. //
  1129. this.dataColumn24.Caption = "钢级代码";
  1130. this.dataColumn24.ColumnName = "STEELCODE";
  1131. //
  1132. // dataColumn25
  1133. //
  1134. this.dataColumn25.Caption = "钢种代码";
  1135. this.dataColumn25.ColumnName = "GRADECODE";
  1136. //
  1137. // dataColumn26
  1138. //
  1139. this.dataColumn26.Caption = "单倍重";
  1140. this.dataColumn26.ColumnName = "DB_HEIGHT";
  1141. //
  1142. // dataColumn32
  1143. //
  1144. this.dataColumn32.Caption = "选择";
  1145. this.dataColumn32.ColumnName = "CHK";
  1146. this.dataColumn32.DataType = typeof(bool);
  1147. //
  1148. // dataColumn56
  1149. //
  1150. this.dataColumn56.Caption = "炉号";
  1151. this.dataColumn56.ColumnName = "JUDGE_NO";
  1152. //
  1153. // dataColumn1
  1154. //
  1155. this.dataColumn1.Caption = "剔除时间";
  1156. this.dataColumn1.ColumnName = "TIME";
  1157. //
  1158. // dataColumn3
  1159. //
  1160. this.dataColumn3.Caption = "用户";
  1161. this.dataColumn3.ColumnName = "FINISH_USER";
  1162. //
  1163. // dataColumn4
  1164. //
  1165. this.dataColumn4.Caption = "规格";
  1166. this.dataColumn4.ColumnName = "PIPE_SIZE";
  1167. //
  1168. // dataColumn5
  1169. //
  1170. this.dataColumn5.Caption = "轧制长度";
  1171. this.dataColumn5.ColumnName = "ROLL_LENGTH";
  1172. //
  1173. // dataColumn63
  1174. //
  1175. this.dataColumn63.Caption = "主炉号";
  1176. this.dataColumn63.ColumnName = "CHKMAIN";
  1177. this.dataColumn63.DataType = typeof(bool);
  1178. //
  1179. // dataColumn64
  1180. //
  1181. this.dataColumn64.Caption = "轧管订单编号";
  1182. this.dataColumn64.ColumnName = "PRO_PLAN_ID";
  1183. //
  1184. // dataColumn65
  1185. //
  1186. this.dataColumn65.Caption = "工序排产序号";
  1187. this.dataColumn65.ColumnName = "GX_PLAN_NO";
  1188. //
  1189. // dataTable3
  1190. //
  1191. this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
  1192. this.dataColumn73,
  1193. this.dataColumn74,
  1194. this.dataColumn75,
  1195. this.dataColumn76,
  1196. this.dataColumn77,
  1197. this.dataColumn78,
  1198. this.dataColumn79,
  1199. this.dataColumn80,
  1200. this.dataColumn81,
  1201. this.dataColumn82,
  1202. this.dataColumn83,
  1203. this.dataColumn84,
  1204. this.dataColumn85,
  1205. this.dataColumn86,
  1206. this.dataColumn87,
  1207. this.dataColumn88,
  1208. this.dataColumn89,
  1209. this.dataColumn90,
  1210. this.dataColumn91,
  1211. this.dataColumn92,
  1212. this.dataColumn93,
  1213. this.dataColumn94,
  1214. this.dataColumn95});
  1215. this.dataTable3.TableName = "Table3";
  1216. //
  1217. // dataColumn73
  1218. //
  1219. this.dataColumn73.Caption = "熔炼炉号";
  1220. this.dataColumn73.ColumnName = "STOVE_NO";
  1221. //
  1222. // dataColumn74
  1223. //
  1224. this.dataColumn74.Caption = "炼钢判定炉号";
  1225. this.dataColumn74.ColumnName = "JUDGE_STOVE_NO";
  1226. //
  1227. // dataColumn75
  1228. //
  1229. this.dataColumn75.Caption = "材料来源类型名称";
  1230. this.dataColumn75.ColumnName = "MAT_ORIGIN_NAME";
  1231. //
  1232. // dataColumn76
  1233. //
  1234. this.dataColumn76.Caption = "材料来源地名称";
  1235. this.dataColumn76.ColumnName = "SOURE_NAME";
  1236. //
  1237. // dataColumn77
  1238. //
  1239. this.dataColumn77.Caption = "物料描叙";
  1240. this.dataColumn77.ColumnName = "MATERIAL_NAME";
  1241. //
  1242. // dataColumn78
  1243. //
  1244. this.dataColumn78.Caption = "钢种名称";
  1245. this.dataColumn78.ColumnName = "GRADENAME";
  1246. //
  1247. // dataColumn79
  1248. //
  1249. this.dataColumn79.Caption = "标准名称";
  1250. this.dataColumn79.ColumnName = "STD_NAME";
  1251. //
  1252. // dataColumn80
  1253. //
  1254. this.dataColumn80.Caption = "生产产线名称";
  1255. this.dataColumn80.ColumnName = "PLINE_NAME";
  1256. //
  1257. // dataColumn81
  1258. //
  1259. this.dataColumn81.Caption = "断面";
  1260. this.dataColumn81.ColumnName = "DIMATER";
  1261. //
  1262. // dataColumn82
  1263. //
  1264. this.dataColumn82.Caption = "坯料长度";
  1265. this.dataColumn82.ColumnName = "ACT_LEN";
  1266. //
  1267. // dataColumn83
  1268. //
  1269. this.dataColumn83.Caption = "倍尺数";
  1270. this.dataColumn83.ColumnName = "FIX_NUM";
  1271. //
  1272. // dataColumn84
  1273. //
  1274. this.dataColumn84.Caption = "单倍长度";
  1275. this.dataColumn84.ColumnName = "FIX_LEN";
  1276. //
  1277. // dataColumn85
  1278. //
  1279. this.dataColumn85.Caption = "坯料重量";
  1280. this.dataColumn85.ColumnName = "ACT_WEIGHT";
  1281. //
  1282. // dataColumn86
  1283. //
  1284. this.dataColumn86.Caption = "品名";
  1285. this.dataColumn86.ColumnName = "PRODUCNAME";
  1286. //
  1287. // dataColumn87
  1288. //
  1289. this.dataColumn87.Caption = "钢级";
  1290. this.dataColumn87.ColumnName = "STEELNAME";
  1291. //
  1292. // dataColumn88
  1293. //
  1294. this.dataColumn88.Caption = "综合判定结果";
  1295. this.dataColumn88.ColumnName = "JUDGE_RESULT_CODE";
  1296. //
  1297. // dataColumn89
  1298. //
  1299. this.dataColumn89.Caption = "单支重量";
  1300. this.dataColumn89.ColumnName = "DB_WEIGHT";
  1301. //
  1302. // dataColumn90
  1303. //
  1304. this.dataColumn90.Caption = "支数";
  1305. this.dataColumn90.ColumnName = "ACT_COUNT";
  1306. //
  1307. // dataColumn91
  1308. //
  1309. this.dataColumn91.Caption = "管坯类型";
  1310. this.dataColumn91.ColumnName = "GPTYPE";
  1311. //
  1312. // dataColumn92
  1313. //
  1314. this.dataColumn92.ColumnName = "STORAGE_NO";
  1315. //
  1316. // dataColumn93
  1317. //
  1318. this.dataColumn93.Caption = "仓库";
  1319. this.dataColumn93.ColumnName = "STORAGE_NAME";
  1320. //
  1321. // dataColumn94
  1322. //
  1323. this.dataColumn94.Caption = "综合判定结果";
  1324. this.dataColumn94.ColumnName = "JUDGE_RESULT_NAME";
  1325. //
  1326. // dataColumn95
  1327. //
  1328. this.dataColumn95.Caption = "申请判定单号";
  1329. this.dataColumn95.ColumnName = "JUGDE_APPLY_CODE";
  1330. //
  1331. // ultraTabPageControl2
  1332. //
  1333. this.ultraTabPageControl2.Controls.Add(this.splitContainer2);
  1334. this.ultraTabPageControl2.Location = new System.Drawing.Point(1, 23);
  1335. this.ultraTabPageControl2.Margin = new System.Windows.Forms.Padding(2);
  1336. this.ultraTabPageControl2.Name = "ultraTabPageControl2";
  1337. this.ultraTabPageControl2.Size = new System.Drawing.Size(1024, 574);
  1338. //
  1339. // splitContainer2
  1340. //
  1341. this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
  1342. this.splitContainer2.Location = new System.Drawing.Point(0, 0);
  1343. this.splitContainer2.Margin = new System.Windows.Forms.Padding(2);
  1344. this.splitContainer2.Name = "splitContainer2";
  1345. //
  1346. // splitContainer2.Panel1
  1347. //
  1348. this.splitContainer2.Panel1.Controls.Add(this.tableLayoutPanel6);
  1349. //
  1350. // splitContainer2.Panel2
  1351. //
  1352. this.splitContainer2.Panel2.Controls.Add(this.tableLayoutPanel5);
  1353. this.splitContainer2.Size = new System.Drawing.Size(1024, 574);
  1354. this.splitContainer2.SplitterDistance = 233;
  1355. this.splitContainer2.SplitterWidth = 3;
  1356. this.splitContainer2.TabIndex = 0;
  1357. //
  1358. // tableLayoutPanel6
  1359. //
  1360. this.tableLayoutPanel6.ColumnCount = 1;
  1361. this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 327F));
  1362. this.tableLayoutPanel6.Controls.Add(this.ultraGrid2, 0, 1);
  1363. this.tableLayoutPanel6.Controls.Add(this.ultraGroupBox5, 0, 0);
  1364. this.tableLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
  1365. this.tableLayoutPanel6.Location = new System.Drawing.Point(0, 0);
  1366. this.tableLayoutPanel6.Margin = new System.Windows.Forms.Padding(2);
  1367. this.tableLayoutPanel6.Name = "tableLayoutPanel6";
  1368. this.tableLayoutPanel6.RowCount = 2;
  1369. this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 176F));
  1370. this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  1371. this.tableLayoutPanel6.Size = new System.Drawing.Size(233, 574);
  1372. this.tableLayoutPanel6.TabIndex = 1;
  1373. //
  1374. // ultraGrid2
  1375. //
  1376. this.ultraGrid2.DataMember = "Table1";
  1377. this.ultraGrid2.DataSource = this.dataSet4;
  1378. ultraGridColumn33.Header.VisiblePosition = 0;
  1379. ultraGridColumn33.Hidden = true;
  1380. ultraGridColumn33.RowLayoutColumnInfo.OriginX = 4;
  1381. ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
  1382. ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(127, 0);
  1383. ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
  1384. ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
  1385. ultraGridColumn34.Header.Caption = "支数";
  1386. ultraGridColumn34.Header.VisiblePosition = 1;
  1387. ultraGridColumn34.Hidden = true;
  1388. ultraGridColumn34.RowLayoutColumnInfo.OriginX = 6;
  1389. ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
  1390. ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
  1391. ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
  1392. ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
  1393. ultraGridColumn35.Header.VisiblePosition = 2;
  1394. ultraGridColumn35.RowLayoutColumnInfo.OriginX = 0;
  1395. ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
  1396. ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(102, 0);
  1397. ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
  1398. ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
  1399. ultraGridColumn36.Header.VisiblePosition = 3;
  1400. ultraGridColumn36.Hidden = true;
  1401. ultraGridColumn36.RowLayoutColumnInfo.OriginX = 0;
  1402. ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
  1403. ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(91, 40);
  1404. ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
  1405. ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
  1406. ultraGridColumn37.Header.VisiblePosition = 4;
  1407. ultraGridColumn37.Hidden = true;
  1408. ultraGridColumn38.Header.VisiblePosition = 5;
  1409. ultraGridColumn38.Hidden = true;
  1410. ultraGridColumn38.RowLayoutColumnInfo.OriginX = 2;
  1411. ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
  1412. ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
  1413. ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
  1414. ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
  1415. ultraGridColumn39.Header.VisiblePosition = 6;
  1416. ultraGridColumn39.Hidden = true;
  1417. ultraGridColumn39.RowLayoutColumnInfo.OriginX = 4;
  1418. ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
  1419. ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
  1420. ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
  1421. ultraGridColumn40.Header.VisiblePosition = 7;
  1422. ultraGridColumn40.Hidden = true;
  1423. ultraGridColumn41.Header.VisiblePosition = 8;
  1424. ultraGridColumn41.Hidden = true;
  1425. ultraGridColumn42.Header.VisiblePosition = 9;
  1426. ultraGridColumn42.RowLayoutColumnInfo.OriginX = 2;
  1427. ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
  1428. ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
  1429. ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
  1430. ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
  1431. ultraGridColumn43.Header.VisiblePosition = 10;
  1432. ultraGridBand3.Columns.AddRange(new object[] {
  1433. ultraGridColumn33,
  1434. ultraGridColumn34,
  1435. ultraGridColumn35,
  1436. ultraGridColumn36,
  1437. ultraGridColumn37,
  1438. ultraGridColumn38,
  1439. ultraGridColumn39,
  1440. ultraGridColumn40,
  1441. ultraGridColumn41,
  1442. ultraGridColumn42,
  1443. ultraGridColumn43});
  1444. ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
  1445. this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  1446. this.ultraGrid2.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
  1447. this.ultraGrid2.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
  1448. this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1449. this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
  1450. this.ultraGrid2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1451. this.ultraGrid2.Location = new System.Drawing.Point(3, 179);
  1452. this.ultraGrid2.Name = "ultraGrid2";
  1453. this.ultraGrid2.Size = new System.Drawing.Size(321, 392);
  1454. this.ultraGrid2.TabIndex = 21;
  1455. this.ultraGrid2.AfterRowActivate += new System.EventHandler(this.ultraGrid2_AfterRowActivate);
  1456. //
  1457. // dataSet4
  1458. //
  1459. this.dataSet4.DataSetName = "NewDataSet";
  1460. this.dataSet4.Tables.AddRange(new System.Data.DataTable[] {
  1461. this.dtBackPlan});
  1462. //
  1463. // dtBackPlan
  1464. //
  1465. this.dtBackPlan.Columns.AddRange(new System.Data.DataColumn[] {
  1466. this.dataColumn27,
  1467. this.dataColumn28,
  1468. this.dataColumn29,
  1469. this.dataColumn30,
  1470. this.dataColumn31,
  1471. this.dataColumn33,
  1472. this.dataColumn55,
  1473. this.dataColumn68,
  1474. this.dataColumn69,
  1475. this.dataColumn41,
  1476. this.dataColumn47});
  1477. this.dtBackPlan.TableName = "Table1";
  1478. //
  1479. // dataColumn27
  1480. //
  1481. this.dataColumn27.Caption = "合同号";
  1482. this.dataColumn27.ColumnName = "CONTRACT_NO";
  1483. //
  1484. // dataColumn28
  1485. //
  1486. this.dataColumn28.Caption = "回炉坯总支数";
  1487. this.dataColumn28.ColumnName = "SLAB_NUM";
  1488. //
  1489. // dataColumn29
  1490. //
  1491. this.dataColumn29.Caption = "轧管判定炉号";
  1492. this.dataColumn29.ColumnName = "JUDGE_STOVE_NO";
  1493. //
  1494. // dataColumn30
  1495. //
  1496. this.dataColumn30.Caption = "生产批号";
  1497. this.dataColumn30.ColumnName = "LOT_NO";
  1498. //
  1499. // dataColumn31
  1500. //
  1501. this.dataColumn31.ColumnName = "ID";
  1502. //
  1503. // dataColumn33
  1504. //
  1505. this.dataColumn33.Caption = "炉号";
  1506. this.dataColumn33.ColumnName = "JUDGE_NO";
  1507. //
  1508. // dataColumn55
  1509. //
  1510. this.dataColumn55.Caption = "状态";
  1511. this.dataColumn55.ColumnName = "STATUS";
  1512. //
  1513. // dataColumn68
  1514. //
  1515. this.dataColumn68.Caption = "轧管订单编号";
  1516. this.dataColumn68.ColumnName = "PRO_PLAN_ID";
  1517. //
  1518. // dataColumn69
  1519. //
  1520. this.dataColumn69.Caption = "工序排产序号";
  1521. this.dataColumn69.ColumnName = "GX_PLAN_NO";
  1522. //
  1523. // dataColumn41
  1524. //
  1525. this.dataColumn41.Caption = "状态";
  1526. this.dataColumn41.ColumnName = "STATUS1";
  1527. //
  1528. // ultraGroupBox5
  1529. //
  1530. this.ultraGroupBox5.Controls.Add(this.chkIsStart);
  1531. this.ultraGroupBox5.Controls.Add(this.chkContractNo1);
  1532. this.ultraGroupBox5.Controls.Add(this.txtLotNo);
  1533. this.ultraGroupBox5.Controls.Add(this.txtJudgeStoveNo);
  1534. this.ultraGroupBox5.Controls.Add(this.txtContractNo1);
  1535. this.ultraGroupBox5.Controls.Add(this.chkJudgeNo1);
  1536. this.ultraGroupBox5.Controls.Add(this.chkLotNo1);
  1537. this.ultraGroupBox5.Controls.Add(this.ultraButton2);
  1538. this.ultraGroupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
  1539. this.ultraGroupBox5.Location = new System.Drawing.Point(2, 2);
  1540. this.ultraGroupBox5.Margin = new System.Windows.Forms.Padding(2);
  1541. this.ultraGroupBox5.Name = "ultraGroupBox5";
  1542. this.ultraGroupBox5.Size = new System.Drawing.Size(323, 172);
  1543. this.ultraGroupBox5.TabIndex = 1;
  1544. this.ultraGroupBox5.Text = "合同号查询";
  1545. this.ultraGroupBox5.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1546. //
  1547. // chkIsStart
  1548. //
  1549. this.chkIsStart.Location = new System.Drawing.Point(12, 103);
  1550. this.chkIsStart.Margin = new System.Windows.Forms.Padding(2);
  1551. this.chkIsStart.Name = "chkIsStart";
  1552. this.chkIsStart.Size = new System.Drawing.Size(145, 16);
  1553. this.chkIsStart.TabIndex = 0;
  1554. this.chkIsStart.Text = "查询已生产的炉计划";
  1555. this.chkIsStart.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
  1556. //
  1557. // chkContractNo1
  1558. //
  1559. this.chkContractNo1.Location = new System.Drawing.Point(12, 79);
  1560. this.chkContractNo1.Margin = new System.Windows.Forms.Padding(2);
  1561. this.chkContractNo1.Name = "chkContractNo1";
  1562. this.chkContractNo1.Size = new System.Drawing.Size(74, 16);
  1563. this.chkContractNo1.TabIndex = 0;
  1564. this.chkContractNo1.Text = "合同号:";
  1565. this.chkContractNo1.Visible = false;
  1566. this.chkContractNo1.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
  1567. //
  1568. // txtLotNo
  1569. //
  1570. this.txtLotNo.Enabled = false;
  1571. this.txtLotNo.Location = new System.Drawing.Point(118, 25);
  1572. this.txtLotNo.Margin = new System.Windows.Forms.Padding(2);
  1573. this.txtLotNo.Name = "txtLotNo";
  1574. this.txtLotNo.Size = new System.Drawing.Size(95, 21);
  1575. this.txtLotNo.TabIndex = 1;
  1576. this.txtLotNo.Visible = false;
  1577. //
  1578. // txtJudgeStoveNo
  1579. //
  1580. this.txtJudgeStoveNo.Enabled = false;
  1581. this.txtJudgeStoveNo.Location = new System.Drawing.Point(118, 51);
  1582. this.txtJudgeStoveNo.Margin = new System.Windows.Forms.Padding(2);
  1583. this.txtJudgeStoveNo.Name = "txtJudgeStoveNo";
  1584. this.txtJudgeStoveNo.Size = new System.Drawing.Size(95, 21);
  1585. this.txtJudgeStoveNo.TabIndex = 1;
  1586. this.txtJudgeStoveNo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtJudgeStoveNo_KeyPress);
  1587. //
  1588. // txtContractNo1
  1589. //
  1590. this.txtContractNo1.Enabled = false;
  1591. this.txtContractNo1.Location = new System.Drawing.Point(118, 78);
  1592. this.txtContractNo1.Margin = new System.Windows.Forms.Padding(2);
  1593. this.txtContractNo1.Name = "txtContractNo1";
  1594. this.txtContractNo1.Size = new System.Drawing.Size(95, 21);
  1595. this.txtContractNo1.TabIndex = 1;
  1596. this.txtContractNo1.Visible = false;
  1597. //
  1598. // chkJudgeNo1
  1599. //
  1600. this.chkJudgeNo1.Location = new System.Drawing.Point(12, 53);
  1601. this.chkJudgeNo1.Margin = new System.Windows.Forms.Padding(2);
  1602. this.chkJudgeNo1.Name = "chkJudgeNo1";
  1603. this.chkJudgeNo1.Size = new System.Drawing.Size(62, 16);
  1604. this.chkJudgeNo1.TabIndex = 0;
  1605. this.chkJudgeNo1.Text = "炉号:";
  1606. this.chkJudgeNo1.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
  1607. //
  1608. // chkLotNo1
  1609. //
  1610. this.chkLotNo1.Location = new System.Drawing.Point(12, 26);
  1611. this.chkLotNo1.Margin = new System.Windows.Forms.Padding(2);
  1612. this.chkLotNo1.Name = "chkLotNo1";
  1613. this.chkLotNo1.Size = new System.Drawing.Size(80, 16);
  1614. this.chkLotNo1.TabIndex = 0;
  1615. this.chkLotNo1.Text = "生产批号:";
  1616. this.chkLotNo1.Visible = false;
  1617. this.chkLotNo1.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
  1618. //
  1619. // ultraButton2
  1620. //
  1621. this.ultraButton2.Location = new System.Drawing.Point(18, 140);
  1622. this.ultraButton2.Margin = new System.Windows.Forms.Padding(2);
  1623. this.ultraButton2.Name = "ultraButton2";
  1624. this.ultraButton2.Size = new System.Drawing.Size(74, 23);
  1625. this.ultraButton2.TabIndex = 0;
  1626. this.ultraButton2.Text = "查询";
  1627. this.ultraButton2.Click += new System.EventHandler(this.ultraButton2_Click);
  1628. //
  1629. // tableLayoutPanel5
  1630. //
  1631. this.tableLayoutPanel5.ColumnCount = 1;
  1632. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  1633. this.tableLayoutPanel5.Controls.Add(this.ultraGroupBox2, 0, 0);
  1634. this.tableLayoutPanel5.Controls.Add(this.ultraGroupBox4, 0, 1);
  1635. this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
  1636. this.tableLayoutPanel5.Location = new System.Drawing.Point(0, 0);
  1637. this.tableLayoutPanel5.Margin = new System.Windows.Forms.Padding(2);
  1638. this.tableLayoutPanel5.Name = "tableLayoutPanel5";
  1639. this.tableLayoutPanel5.RowCount = 2;
  1640. this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.92788F));
  1641. this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 88.07212F));
  1642. this.tableLayoutPanel5.Size = new System.Drawing.Size(788, 574);
  1643. this.tableLayoutPanel5.TabIndex = 2;
  1644. //
  1645. // ultraGroupBox2
  1646. //
  1647. this.ultraGroupBox2.Controls.Add(this.ultraButton1);
  1648. this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
  1649. this.ultraGroupBox2.Location = new System.Drawing.Point(2, 2);
  1650. this.ultraGroupBox2.Margin = new System.Windows.Forms.Padding(2);
  1651. this.ultraGroupBox2.Name = "ultraGroupBox2";
  1652. this.ultraGroupBox2.Size = new System.Drawing.Size(784, 64);
  1653. this.ultraGroupBox2.TabIndex = 1;
  1654. this.ultraGroupBox2.Text = "功能操作";
  1655. this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1656. //
  1657. // ultraButton1
  1658. //
  1659. this.ultraButton1.Location = new System.Drawing.Point(22, 25);
  1660. this.ultraButton1.Margin = new System.Windows.Forms.Padding(2);
  1661. this.ultraButton1.Name = "ultraButton1";
  1662. this.ultraButton1.Size = new System.Drawing.Size(74, 23);
  1663. this.ultraButton1.TabIndex = 0;
  1664. this.ultraButton1.Text = "组炉回退";
  1665. this.ultraButton1.Click += new System.EventHandler(this.ultraButton1_Click);
  1666. //
  1667. // ultraGroupBox4
  1668. //
  1669. this.ultraGroupBox4.Controls.Add(this.ultraGrid1);
  1670. this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
  1671. this.ultraGroupBox4.Location = new System.Drawing.Point(2, 70);
  1672. this.ultraGroupBox4.Margin = new System.Windows.Forms.Padding(2);
  1673. this.ultraGroupBox4.Name = "ultraGroupBox4";
  1674. this.ultraGroupBox4.Size = new System.Drawing.Size(784, 502);
  1675. this.ultraGroupBox4.TabIndex = 0;
  1676. this.ultraGroupBox4.Text = "试轧料查询";
  1677. this.ultraGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1678. //
  1679. // ultraGrid1
  1680. //
  1681. this.ultraGrid1.DataMember = "Table1";
  1682. this.ultraGrid1.DataSource = this.dataSet2;
  1683. ultraGridColumn44.Header.VisiblePosition = 0;
  1684. ultraGridColumn44.RowLayoutColumnInfo.OriginX = 3;
  1685. ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
  1686. ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(119, 0);
  1687. ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
  1688. ultraGridColumn44.RowLayoutColumnInfo.SpanY = 1;
  1689. ultraGridColumn45.Header.VisiblePosition = 1;
  1690. ultraGridColumn45.RowLayoutColumnInfo.OriginX = 6;
  1691. ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
  1692. ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
  1693. ultraGridColumn45.RowLayoutColumnInfo.SpanY = 1;
  1694. ultraGridColumn46.Header.VisiblePosition = 2;
  1695. ultraGridColumn46.RowLayoutColumnInfo.OriginX = 10;
  1696. ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
  1697. ultraGridColumn46.RowLayoutColumnInfo.SpanX = 1;
  1698. ultraGridColumn46.RowLayoutColumnInfo.SpanY = 1;
  1699. ultraGridColumn47.Header.VisiblePosition = 3;
  1700. ultraGridColumn47.RowLayoutColumnInfo.OriginX = 8;
  1701. ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
  1702. ultraGridColumn47.RowLayoutColumnInfo.SpanX = 1;
  1703. ultraGridColumn47.RowLayoutColumnInfo.SpanY = 1;
  1704. ultraGridColumn48.Header.VisiblePosition = 4;
  1705. ultraGridColumn48.RowLayoutColumnInfo.OriginX = 11;
  1706. ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
  1707. ultraGridColumn48.RowLayoutColumnInfo.SpanX = 1;
  1708. ultraGridColumn48.RowLayoutColumnInfo.SpanY = 1;
  1709. ultraGridColumn49.Header.VisiblePosition = 5;
  1710. ultraGridColumn49.RowLayoutColumnInfo.OriginX = 13;
  1711. ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
  1712. ultraGridColumn49.RowLayoutColumnInfo.SpanX = 1;
  1713. ultraGridColumn49.RowLayoutColumnInfo.SpanY = 1;
  1714. ultraGridColumn50.Header.VisiblePosition = 6;
  1715. ultraGridColumn50.Hidden = true;
  1716. ultraGridColumn50.RowLayoutColumnInfo.OriginX = 7;
  1717. ultraGridColumn50.RowLayoutColumnInfo.OriginY = 0;
  1718. ultraGridColumn50.RowLayoutColumnInfo.SpanX = 1;
  1719. ultraGridColumn50.RowLayoutColumnInfo.SpanY = 1;
  1720. ultraGridColumn51.Header.VisiblePosition = 7;
  1721. ultraGridColumn51.RowLayoutColumnInfo.OriginX = 0;
  1722. ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
  1723. ultraGridColumn51.RowLayoutColumnInfo.SpanX = 1;
  1724. ultraGridColumn51.RowLayoutColumnInfo.SpanY = 1;
  1725. ultraGridColumn52.Header.VisiblePosition = 8;
  1726. ultraGridColumn52.RowLayoutColumnInfo.OriginX = 7;
  1727. ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
  1728. ultraGridColumn52.RowLayoutColumnInfo.SpanX = 1;
  1729. ultraGridColumn52.RowLayoutColumnInfo.SpanY = 1;
  1730. ultraGridColumn53.Header.VisiblePosition = 9;
  1731. ultraGridColumn53.RowLayoutColumnInfo.OriginX = 14;
  1732. ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
  1733. ultraGridColumn53.RowLayoutColumnInfo.SpanX = 1;
  1734. ultraGridColumn53.RowLayoutColumnInfo.SpanY = 1;
  1735. ultraGridColumn54.Header.VisiblePosition = 10;
  1736. ultraGridColumn54.RowLayoutColumnInfo.OriginX = 4;
  1737. ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
  1738. ultraGridColumn54.RowLayoutColumnInfo.SpanX = 1;
  1739. ultraGridColumn54.RowLayoutColumnInfo.SpanY = 1;
  1740. ultraGridColumn55.Header.VisiblePosition = 11;
  1741. ultraGridColumn55.RowLayoutColumnInfo.OriginX = 5;
  1742. ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
  1743. ultraGridColumn55.RowLayoutColumnInfo.SpanX = 1;
  1744. ultraGridColumn55.RowLayoutColumnInfo.SpanY = 1;
  1745. ultraGridColumn56.Header.VisiblePosition = 12;
  1746. ultraGridColumn56.RowLayoutColumnInfo.OriginX = 12;
  1747. ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
  1748. ultraGridColumn56.RowLayoutColumnInfo.SpanX = 1;
  1749. ultraGridColumn56.RowLayoutColumnInfo.SpanY = 1;
  1750. ultraGridColumn57.Header.VisiblePosition = 13;
  1751. ultraGridColumn57.RowLayoutColumnInfo.OriginX = 9;
  1752. ultraGridColumn57.RowLayoutColumnInfo.OriginY = 0;
  1753. ultraGridColumn57.RowLayoutColumnInfo.SpanX = 1;
  1754. ultraGridColumn57.RowLayoutColumnInfo.SpanY = 1;
  1755. ultraGridColumn58.Header.VisiblePosition = 14;
  1756. ultraGridColumn58.RowLayoutColumnInfo.OriginX = 2;
  1757. ultraGridColumn58.RowLayoutColumnInfo.OriginY = 0;
  1758. ultraGridColumn58.RowLayoutColumnInfo.SpanX = 1;
  1759. ultraGridColumn58.RowLayoutColumnInfo.SpanY = 1;
  1760. ultraGridColumn59.Header.VisiblePosition = 15;
  1761. ultraGridColumn59.Hidden = true;
  1762. ultraGridColumn59.RowLayoutColumnInfo.OriginX = 1;
  1763. ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
  1764. ultraGridColumn59.RowLayoutColumnInfo.SpanX = 1;
  1765. ultraGridColumn59.RowLayoutColumnInfo.SpanY = 1;
  1766. ultraGridBand4.Columns.AddRange(new object[] {
  1767. ultraGridColumn44,
  1768. ultraGridColumn45,
  1769. ultraGridColumn46,
  1770. ultraGridColumn47,
  1771. ultraGridColumn48,
  1772. ultraGridColumn49,
  1773. ultraGridColumn50,
  1774. ultraGridColumn51,
  1775. ultraGridColumn52,
  1776. ultraGridColumn53,
  1777. ultraGridColumn54,
  1778. ultraGridColumn55,
  1779. ultraGridColumn56,
  1780. ultraGridColumn57,
  1781. ultraGridColumn58,
  1782. ultraGridColumn59});
  1783. ultraGridBand4.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  1784. this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
  1785. this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
  1786. appearance7.FontData.BoldAsString = "True";
  1787. this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance7;
  1788. this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
  1789. this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
  1790. this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.True;
  1791. appearance8.BackColor = System.Drawing.Color.Transparent;
  1792. this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance8;
  1793. appearance9.TextVAlignAsString = "Middle";
  1794. this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance9;
  1795. this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1796. this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
  1797. appearance10.BackColor = System.Drawing.Color.LightSteelBlue;
  1798. appearance10.TextHAlignAsString = "Center";
  1799. appearance10.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
  1800. this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance10;
  1801. this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1802. this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
  1803. this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
  1804. appearance11.BackColor = System.Drawing.Color.LightSteelBlue;
  1805. this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance11;
  1806. this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  1807. this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  1808. this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 26;
  1809. this.ultraGrid1.DisplayLayout.Override.RowSpacingBefore = 0;
  1810. appearance12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
  1811. appearance12.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
  1812. appearance12.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1813. appearance12.ForeColor = System.Drawing.Color.Black;
  1814. this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance12;
  1815. this.ultraGrid1.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
  1816. this.ultraGrid1.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
  1817. this.ultraGrid1.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
  1818. this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1819. this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
  1820. this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1821. this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1822. this.ultraGrid1.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
  1823. this.ultraGrid1.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
  1824. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  1825. this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1826. this.ultraGrid1.Location = new System.Drawing.Point(3, 18);
  1827. this.ultraGrid1.Name = "ultraGrid1";
  1828. this.ultraGrid1.Size = new System.Drawing.Size(778, 481);
  1829. this.ultraGrid1.TabIndex = 9;
  1830. //
  1831. // dataSet2
  1832. //
  1833. this.dataSet2.DataSetName = "NewDataSet";
  1834. this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
  1835. this.dataTable2});
  1836. //
  1837. // dataTable2
  1838. //
  1839. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  1840. this.dataColumn34,
  1841. this.dataColumn43,
  1842. this.dataColumn46,
  1843. this.dataColumn50,
  1844. this.dataColumn53,
  1845. this.dataColumn57,
  1846. this.dataColumn62,
  1847. this.dataColumn6,
  1848. this.dataColumn35,
  1849. this.dataColumn36,
  1850. this.dataColumn37,
  1851. this.dataColumn38,
  1852. this.dataColumn39,
  1853. this.dataColumn40,
  1854. this.dataColumn44,
  1855. this.dataColumn45});
  1856. this.dataTable2.TableName = "Table1";
  1857. //
  1858. // dataColumn34
  1859. //
  1860. this.dataColumn34.Caption = "轧管判定炉号";
  1861. this.dataColumn34.ColumnName = "JUDGE_STOVE_NO";
  1862. //
  1863. // dataColumn43
  1864. //
  1865. this.dataColumn43.Caption = "产线";
  1866. this.dataColumn43.ColumnName = "PLINE_CODE";
  1867. //
  1868. // dataColumn46
  1869. //
  1870. this.dataColumn46.Caption = "单倍长";
  1871. this.dataColumn46.ColumnName = "DB_LENGTH";
  1872. //
  1873. // dataColumn50
  1874. //
  1875. this.dataColumn50.Caption = "钢种名称";
  1876. this.dataColumn50.ColumnName = "GRADENAME";
  1877. //
  1878. // dataColumn53
  1879. //
  1880. this.dataColumn53.Caption = "单倍重";
  1881. this.dataColumn53.ColumnName = "DB_HEIGHT";
  1882. //
  1883. // dataColumn57
  1884. //
  1885. this.dataColumn57.Caption = "熔炼炉号";
  1886. this.dataColumn57.ColumnName = "STOVE_NO";
  1887. //
  1888. // dataColumn62
  1889. //
  1890. this.dataColumn62.Caption = "轧制长度";
  1891. this.dataColumn62.ColumnName = "ROLL_LENGTH";
  1892. //
  1893. // dataColumn6
  1894. //
  1895. this.dataColumn6.Caption = "上料行";
  1896. this.dataColumn6.ColumnName = "FEED_ROW_NO";
  1897. //
  1898. // dataColumn35
  1899. //
  1900. this.dataColumn35.Caption = "倍尺数";
  1901. this.dataColumn35.ColumnName = "DB_NUM";
  1902. //
  1903. // dataColumn36
  1904. //
  1905. this.dataColumn36.Caption = "来料单支重量";
  1906. this.dataColumn36.ColumnName = "MAT_HEIGHT";
  1907. //
  1908. // dataColumn37
  1909. //
  1910. this.dataColumn37.Caption = "来料总重量";
  1911. this.dataColumn37.ColumnName = "MAT_TOTAL_HEIGHT";
  1912. //
  1913. // dataColumn38
  1914. //
  1915. this.dataColumn38.Caption = "上料支数";
  1916. this.dataColumn38.ColumnName = "FEED_NUM";
  1917. //
  1918. // dataColumn39
  1919. //
  1920. this.dataColumn39.Caption = "上料长度";
  1921. this.dataColumn39.ColumnName = "FEED_LENGTH";
  1922. //
  1923. // dataColumn40
  1924. //
  1925. this.dataColumn40.Caption = "断面";
  1926. this.dataColumn40.ColumnName = "PIPE_SECTION";
  1927. //
  1928. // dataColumn44
  1929. //
  1930. this.dataColumn44.Caption = "上料炉号";
  1931. this.dataColumn44.ColumnName = "FEED_HEAT_NO";
  1932. //
  1933. // dataColumn45
  1934. //
  1935. this.dataColumn45.Caption = "上料时间";
  1936. this.dataColumn45.ColumnName = "CREATE_TIME";
  1937. //
  1938. // ultraTabSharedControlsPage1
  1939. //
  1940. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
  1941. this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(2);
  1942. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  1943. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1024, 574);
  1944. //
  1945. // ultraTabControl1
  1946. //
  1947. this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
  1948. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
  1949. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
  1950. this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  1951. this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
  1952. this.ultraTabControl1.Margin = new System.Windows.Forms.Padding(2);
  1953. this.ultraTabControl1.Name = "ultraTabControl1";
  1954. this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
  1955. this.ultraTabControl1.Size = new System.Drawing.Size(1028, 600);
  1956. this.ultraTabControl1.TabIndex = 0;
  1957. ultraTab1.TabPage = this.ultraTabPageControl1;
  1958. ultraTab1.Text = "试轧料组炉管理";
  1959. ultraTab2.TabPage = this.ultraTabPageControl2;
  1960. ultraTab2.Text = "已组炉试轧料管理";
  1961. this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  1962. ultraTab1,
  1963. ultraTab2});
  1964. this.ultraTabControl1.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.ultraTabControl1_SelectedTabChanged);
  1965. //
  1966. // dataColumn47
  1967. //
  1968. this.dataColumn47.Caption = "上料时间";
  1969. this.dataColumn47.ColumnName = "START_TIME";
  1970. //
  1971. // matGpMEntityBindingSource
  1972. //
  1973. this.matGpMEntityBindingSource.DataSource = typeof(Core.StlMes.Client.ZGMil.Entity.MatGpMEntity);
  1974. //
  1975. // FrmTryRollingMaterial
  1976. //
  1977. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1978. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1979. this.ClientSize = new System.Drawing.Size(1028, 600);
  1980. this.Controls.Add(this.ultraTabControl1);
  1981. this.Margin = new System.Windows.Forms.Padding(2);
  1982. this.Name = "FrmTryRollingMaterial";
  1983. this.Text = "试轧料管理";
  1984. this.Load += new System.EventHandler(this.FrmBackSlab_Load);
  1985. this.ultraTabPageControl1.ResumeLayout(false);
  1986. this.splitContainer1.Panel1.ResumeLayout(false);
  1987. this.splitContainer1.Panel2.ResumeLayout(false);
  1988. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  1989. this.splitContainer1.ResumeLayout(false);
  1990. this.tableLayoutPanel3.ResumeLayout(false);
  1991. ((System.ComponentModel.ISupportInitialize)(this.chkNodeQuery)).EndInit();
  1992. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  1993. ((System.ComponentModel.ISupportInitialize)(this.dtContratNo)).EndInit();
  1994. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
  1995. this.ultraGroupBox3.ResumeLayout(false);
  1996. this.ultraGroupBox3.PerformLayout();
  1997. ((System.ComponentModel.ISupportInitialize)(this.txtJudgeNo)).EndInit();
  1998. ((System.ComponentModel.ISupportInitialize)(this.chkJudgeNo)).EndInit();
  1999. ((System.ComponentModel.ISupportInitialize)(this.udtDate)).EndInit();
  2000. ((System.ComponentModel.ISupportInitialize)(this.chkDate)).EndInit();
  2001. ((System.ComponentModel.ISupportInitialize)(this.chkSection)).EndInit();
  2002. ((System.ComponentModel.ISupportInitialize)(this.chkLength)).EndInit();
  2003. ((System.ComponentModel.ISupportInitialize)(this.chkSteelName)).EndInit();
  2004. ((System.ComponentModel.ISupportInitialize)(this.chkContractNo)).EndInit();
  2005. ((System.ComponentModel.ISupportInitialize)(this.txtSection)).EndInit();
  2006. ((System.ComponentModel.ISupportInitialize)(this.txtLength)).EndInit();
  2007. ((System.ComponentModel.ISupportInitialize)(this.txtSteelName)).EndInit();
  2008. ((System.ComponentModel.ISupportInitialize)(this.txtContractNo)).EndInit();
  2009. this.tableLayoutPanel4.ResumeLayout(false);
  2010. ((System.ComponentModel.ISupportInitialize)(this.ugbCol)).EndInit();
  2011. this.ugbCol.ResumeLayout(false);
  2012. this.ugbCol.PerformLayout();
  2013. ((System.ComponentModel.ISupportInitialize)(this.txtZPPipeSize)).EndInit();
  2014. ((System.ComponentModel.ISupportInitialize)(this.txtZPJudgeNo)).EndInit();
  2015. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  2016. this.ultraGroupBox1.ResumeLayout(false);
  2017. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid_GHDL)).EndInit();
  2018. ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).EndInit();
  2019. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  2020. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
  2021. this.ultraTabPageControl2.ResumeLayout(false);
  2022. this.splitContainer2.Panel1.ResumeLayout(false);
  2023. this.splitContainer2.Panel2.ResumeLayout(false);
  2024. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
  2025. this.splitContainer2.ResumeLayout(false);
  2026. this.tableLayoutPanel6.ResumeLayout(false);
  2027. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
  2028. ((System.ComponentModel.ISupportInitialize)(this.dataSet4)).EndInit();
  2029. ((System.ComponentModel.ISupportInitialize)(this.dtBackPlan)).EndInit();
  2030. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).EndInit();
  2031. this.ultraGroupBox5.ResumeLayout(false);
  2032. this.ultraGroupBox5.PerformLayout();
  2033. ((System.ComponentModel.ISupportInitialize)(this.chkIsStart)).EndInit();
  2034. ((System.ComponentModel.ISupportInitialize)(this.chkContractNo1)).EndInit();
  2035. ((System.ComponentModel.ISupportInitialize)(this.txtLotNo)).EndInit();
  2036. ((System.ComponentModel.ISupportInitialize)(this.txtJudgeStoveNo)).EndInit();
  2037. ((System.ComponentModel.ISupportInitialize)(this.txtContractNo1)).EndInit();
  2038. ((System.ComponentModel.ISupportInitialize)(this.chkJudgeNo1)).EndInit();
  2039. ((System.ComponentModel.ISupportInitialize)(this.chkLotNo1)).EndInit();
  2040. this.tableLayoutPanel5.ResumeLayout(false);
  2041. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
  2042. this.ultraGroupBox2.ResumeLayout(false);
  2043. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
  2044. this.ultraGroupBox4.ResumeLayout(false);
  2045. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  2046. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
  2047. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  2048. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
  2049. this.ultraTabControl1.ResumeLayout(false);
  2050. ((System.ComponentModel.ISupportInitialize)(this.matGpMEntityBindingSource)).EndInit();
  2051. this.ResumeLayout(false);
  2052. }
  2053. #endregion
  2054. private System.Data.DataSet dataSet1;
  2055. private System.Data.DataTable dtContratNo;
  2056. private System.Data.DataColumn dataColumn2;
  2057. private System.Data.DataSet dataSet3;
  2058. private System.Data.DataTable dataTable1;
  2059. private System.Data.DataColumn dataColumn7;
  2060. private System.Data.DataColumn dataColumn8;
  2061. private System.Data.DataColumn dataColumn9;
  2062. private System.Data.DataColumn dataColumn10;
  2063. private System.Data.DataColumn dataColumn11;
  2064. private System.Data.DataColumn dataColumn12;
  2065. private System.Data.DataColumn dataColumn13;
  2066. private System.Data.DataColumn dataColumn14;
  2067. private System.Data.DataColumn dataColumn15;
  2068. private System.Data.DataColumn dataColumn16;
  2069. private System.Data.DataColumn dataColumn17;
  2070. private System.Data.DataColumn dataColumn18;
  2071. private System.Data.DataColumn dataColumn19;
  2072. private System.Data.DataColumn dataColumn20;
  2073. private System.Data.DataColumn dataColumn21;
  2074. private System.Data.DataColumn dataColumn22;
  2075. private System.Data.DataColumn dataColumn23;
  2076. private System.Data.DataColumn dataColumn24;
  2077. private System.Data.DataColumn dataColumn25;
  2078. private System.Data.DataColumn dataColumn26;
  2079. private System.Data.DataSet dataSet4;
  2080. private System.Data.DataTable dtBackPlan;
  2081. private System.Data.DataColumn dataColumn27;
  2082. private System.Data.DataColumn dataColumn28;
  2083. private System.Data.DataColumn dataColumn29;
  2084. private System.Data.DataColumn dataColumn30;
  2085. private System.Data.DataColumn dataColumn31;
  2086. private System.Data.DataColumn dataColumn32;
  2087. private System.Data.DataColumn dataColumn33;
  2088. private System.Data.DataSet dataSet2;
  2089. private System.Data.DataTable dataTable2;
  2090. private System.Data.DataColumn dataColumn34;
  2091. private System.Data.DataColumn dataColumn43;
  2092. private System.Data.DataColumn dataColumn46;
  2093. private System.Data.DataColumn dataColumn50;
  2094. private System.Data.DataColumn dataColumn53;
  2095. private System.Data.DataColumn dataColumn55;
  2096. private System.Data.DataColumn dataColumn56;
  2097. private System.Data.DataColumn dataColumn57;
  2098. private System.Data.DataColumn dataColumn58;
  2099. private System.Data.DataColumn dataColumn59;
  2100. private System.Data.DataColumn dataColumn60;
  2101. private System.Data.DataColumn dataColumn1;
  2102. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
  2103. private System.Windows.Forms.SplitContainer splitContainer2;
  2104. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel6;
  2105. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel5;
  2106. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
  2107. private Infragistics.Win.Misc.UltraButton ultraButton1;
  2108. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
  2109. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  2110. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  2111. private System.Windows.Forms.SplitContainer splitContainer1;
  2112. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
  2113. private Infragistics.Win.UltraWinGrid.UltraGrid chkNodeQuery;
  2114. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
  2115. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor udtDate;
  2116. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkDate;
  2117. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkSection;
  2118. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkLength;
  2119. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkSteelName;
  2120. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkContractNo;
  2121. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSection;
  2122. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtLength;
  2123. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSteelName;
  2124. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtContractNo;
  2125. private Infragistics.Win.Misc.UltraButton btnQuery;
  2126. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
  2127. private Infragistics.Win.Misc.UltraGroupBox ugbCol;
  2128. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtZPJudgeNo;
  2129. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  2130. private Infragistics.Win.Misc.UltraButton btnZP;
  2131. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  2132. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid_GHDL;
  2133. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  2134. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
  2135. private System.Data.DataColumn dataColumn3;
  2136. private System.Data.DataColumn dataColumn4;
  2137. private System.Data.DataColumn dataColumn5;
  2138. private System.Data.DataColumn dataColumn62;
  2139. private System.Data.DataColumn dataColumn63;
  2140. private System.Data.DataColumn dataColumn64;
  2141. private System.Data.DataColumn dataColumn65;
  2142. private System.Data.DataColumn dataColumn68;
  2143. private System.Data.DataColumn dataColumn69;
  2144. private System.Windows.Forms.BindingSource matGpMEntityBindingSource;
  2145. private System.Data.DataColumn dataColumn70;
  2146. private System.Data.DataColumn dataColumn71;
  2147. private System.Data.DataColumn dataColumn72;
  2148. private System.Data.DataTable dataTable3;
  2149. private System.Data.DataColumn dataColumn73;
  2150. private System.Data.DataColumn dataColumn74;
  2151. private System.Data.DataColumn dataColumn75;
  2152. private System.Data.DataColumn dataColumn76;
  2153. private System.Data.DataColumn dataColumn77;
  2154. private System.Data.DataColumn dataColumn78;
  2155. private System.Data.DataColumn dataColumn79;
  2156. private System.Data.DataColumn dataColumn80;
  2157. private System.Data.DataColumn dataColumn81;
  2158. private System.Data.DataColumn dataColumn82;
  2159. private System.Data.DataColumn dataColumn83;
  2160. private System.Data.DataColumn dataColumn84;
  2161. private System.Data.DataColumn dataColumn85;
  2162. private System.Data.DataColumn dataColumn86;
  2163. private System.Data.DataColumn dataColumn87;
  2164. private System.Data.DataColumn dataColumn88;
  2165. private System.Data.DataColumn dataColumn89;
  2166. private System.Data.DataColumn dataColumn90;
  2167. private System.Data.DataColumn dataColumn91;
  2168. private System.Data.DataColumn dataColumn92;
  2169. private System.Data.DataColumn dataColumn93;
  2170. private System.Data.DataColumn dataColumn94;
  2171. private System.Data.DataColumn dataColumn95;
  2172. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
  2173. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox5;
  2174. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkIsStart;
  2175. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkContractNo1;
  2176. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtLotNo;
  2177. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtJudgeStoveNo;
  2178. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtContractNo1;
  2179. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkJudgeNo1;
  2180. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkLotNo1;
  2181. private Infragistics.Win.Misc.UltraButton ultraButton2;
  2182. private System.Data.DataColumn dataColumn6;
  2183. private System.Data.DataColumn dataColumn35;
  2184. private System.Data.DataColumn dataColumn36;
  2185. private System.Data.DataColumn dataColumn37;
  2186. private System.Data.DataColumn dataColumn38;
  2187. private System.Data.DataColumn dataColumn39;
  2188. private System.Data.DataColumn dataColumn40;
  2189. private System.Data.DataColumn dataColumn41;
  2190. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtJudgeNo;
  2191. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkJudgeNo;
  2192. private System.Data.DataColumn dataColumn42;
  2193. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtZPPipeSize;
  2194. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  2195. private System.Data.DataColumn dataColumn44;
  2196. private System.Data.DataColumn dataColumn45;
  2197. private System.Data.DataColumn dataColumn47;
  2198. }
  2199. }