| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205 |
- namespace Core.StlMes.Client.ZGMil.Popup
- {
- partial class FrmTryRollingMaterial
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SLAB_NUM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FIX_LEN");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRADENAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DIMATER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_LEN");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FIX_NUM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_WEIGHT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_STOVE_NO");
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table3", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOVE_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_STOVE_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MAT_ORIGIN_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SOURE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRADENAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STD_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PLINE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DIMATER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_LEN");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FIX_NUM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FIX_LEN");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_WEIGHT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRODUCNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STEELNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_RESULT_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DB_WEIGHT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_COUNT");
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GPTYPE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STORAGE_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STORAGE_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_RESULT_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUGDE_APPLY_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHK", 0);
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CONTRACT_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SLAB_NUM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_STOVE_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LOT_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATUS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRO_PLAN_ID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GX_PLAN_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATUS1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("START_TIME");
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_STOVE_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PLINE_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DB_LENGTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRADENAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DB_HEIGHT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOVE_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLL_LENGTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FEED_ROW_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DB_NUM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MAT_HEIGHT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MAT_TOTAL_HEIGHT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FEED_NUM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FEED_LENGTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PIPE_SECTION");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FEED_HEAT_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
- this.chkNodeQuery = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet1 = new System.Data.DataSet();
- this.dtContratNo = new System.Data.DataTable();
- this.dataColumn2 = new System.Data.DataColumn();
- this.dataColumn58 = new System.Data.DataColumn();
- this.dataColumn59 = new System.Data.DataColumn();
- this.dataColumn60 = new System.Data.DataColumn();
- this.dataColumn70 = new System.Data.DataColumn();
- this.dataColumn71 = new System.Data.DataColumn();
- this.dataColumn72 = new System.Data.DataColumn();
- this.dataColumn42 = new System.Data.DataColumn();
- this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
- this.txtJudgeNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chkJudgeNo = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.udtDate = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.chkDate = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.chkSection = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.chkLength = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.chkSteelName = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.chkContractNo = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txtSection = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtLength = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtSteelName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtContractNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.btnQuery = new Infragistics.Win.Misc.UltraButton();
- this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
- this.ugbCol = new Infragistics.Win.Misc.UltraGroupBox();
- this.txtZPPipeSize = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.txtZPJudgeNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.btnZP = new Infragistics.Win.Misc.UltraButton();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid_GHDL = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet3 = new System.Data.DataSet();
- this.dataTable1 = new System.Data.DataTable();
- this.dataColumn7 = new System.Data.DataColumn();
- this.dataColumn8 = new System.Data.DataColumn();
- this.dataColumn9 = new System.Data.DataColumn();
- this.dataColumn10 = new System.Data.DataColumn();
- this.dataColumn11 = new System.Data.DataColumn();
- this.dataColumn12 = new System.Data.DataColumn();
- this.dataColumn13 = new System.Data.DataColumn();
- this.dataColumn14 = new System.Data.DataColumn();
- this.dataColumn15 = new System.Data.DataColumn();
- this.dataColumn16 = new System.Data.DataColumn();
- this.dataColumn17 = new System.Data.DataColumn();
- this.dataColumn18 = new System.Data.DataColumn();
- this.dataColumn19 = new System.Data.DataColumn();
- this.dataColumn20 = new System.Data.DataColumn();
- this.dataColumn21 = new System.Data.DataColumn();
- this.dataColumn22 = new System.Data.DataColumn();
- this.dataColumn23 = new System.Data.DataColumn();
- this.dataColumn24 = new System.Data.DataColumn();
- this.dataColumn25 = new System.Data.DataColumn();
- this.dataColumn26 = new System.Data.DataColumn();
- this.dataColumn32 = new System.Data.DataColumn();
- this.dataColumn56 = new System.Data.DataColumn();
- this.dataColumn1 = new System.Data.DataColumn();
- this.dataColumn3 = new System.Data.DataColumn();
- this.dataColumn4 = new System.Data.DataColumn();
- this.dataColumn5 = new System.Data.DataColumn();
- this.dataColumn63 = new System.Data.DataColumn();
- this.dataColumn64 = new System.Data.DataColumn();
- this.dataColumn65 = new System.Data.DataColumn();
- this.dataTable3 = new System.Data.DataTable();
- this.dataColumn73 = new System.Data.DataColumn();
- this.dataColumn74 = new System.Data.DataColumn();
- this.dataColumn75 = new System.Data.DataColumn();
- this.dataColumn76 = new System.Data.DataColumn();
- this.dataColumn77 = new System.Data.DataColumn();
- this.dataColumn78 = new System.Data.DataColumn();
- this.dataColumn79 = new System.Data.DataColumn();
- this.dataColumn80 = new System.Data.DataColumn();
- this.dataColumn81 = new System.Data.DataColumn();
- this.dataColumn82 = new System.Data.DataColumn();
- this.dataColumn83 = new System.Data.DataColumn();
- this.dataColumn84 = new System.Data.DataColumn();
- this.dataColumn85 = new System.Data.DataColumn();
- this.dataColumn86 = new System.Data.DataColumn();
- this.dataColumn87 = new System.Data.DataColumn();
- this.dataColumn88 = new System.Data.DataColumn();
- this.dataColumn89 = new System.Data.DataColumn();
- this.dataColumn90 = new System.Data.DataColumn();
- this.dataColumn91 = new System.Data.DataColumn();
- this.dataColumn92 = new System.Data.DataColumn();
- this.dataColumn93 = new System.Data.DataColumn();
- this.dataColumn94 = new System.Data.DataColumn();
- this.dataColumn95 = new System.Data.DataColumn();
- this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.splitContainer2 = new System.Windows.Forms.SplitContainer();
- this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel();
- this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet4 = new System.Data.DataSet();
- this.dtBackPlan = new System.Data.DataTable();
- this.dataColumn27 = new System.Data.DataColumn();
- this.dataColumn28 = new System.Data.DataColumn();
- this.dataColumn29 = new System.Data.DataColumn();
- this.dataColumn30 = new System.Data.DataColumn();
- this.dataColumn31 = new System.Data.DataColumn();
- this.dataColumn33 = new System.Data.DataColumn();
- this.dataColumn55 = new System.Data.DataColumn();
- this.dataColumn68 = new System.Data.DataColumn();
- this.dataColumn69 = new System.Data.DataColumn();
- this.dataColumn41 = new System.Data.DataColumn();
- this.ultraGroupBox5 = new Infragistics.Win.Misc.UltraGroupBox();
- this.chkIsStart = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.chkContractNo1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txtLotNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtJudgeStoveNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtContractNo1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chkJudgeNo1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.chkLotNo1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultraButton2 = new Infragistics.Win.Misc.UltraButton();
- this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
- this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraButton1 = new Infragistics.Win.Misc.UltraButton();
- this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet2 = new System.Data.DataSet();
- this.dataTable2 = new System.Data.DataTable();
- this.dataColumn34 = new System.Data.DataColumn();
- this.dataColumn43 = new System.Data.DataColumn();
- this.dataColumn46 = new System.Data.DataColumn();
- this.dataColumn50 = new System.Data.DataColumn();
- this.dataColumn53 = new System.Data.DataColumn();
- this.dataColumn57 = new System.Data.DataColumn();
- this.dataColumn62 = new System.Data.DataColumn();
- this.dataColumn6 = new System.Data.DataColumn();
- this.dataColumn35 = new System.Data.DataColumn();
- this.dataColumn36 = new System.Data.DataColumn();
- this.dataColumn37 = new System.Data.DataColumn();
- this.dataColumn38 = new System.Data.DataColumn();
- this.dataColumn39 = new System.Data.DataColumn();
- this.dataColumn40 = new System.Data.DataColumn();
- this.dataColumn44 = new System.Data.DataColumn();
- this.dataColumn45 = new System.Data.DataColumn();
- this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.dataColumn47 = new System.Data.DataColumn();
- this.matGpMEntityBindingSource = new System.Windows.Forms.BindingSource(this.components);
- this.ultraTabPageControl1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- this.tableLayoutPanel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chkNodeQuery)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtContratNo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
- this.ultraGroupBox3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtJudgeNo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkJudgeNo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.udtDate)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkDate)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkSection)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkLength)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkSteelName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkContractNo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSection)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtLength)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSteelName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtContractNo)).BeginInit();
- this.tableLayoutPanel4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ugbCol)).BeginInit();
- this.ugbCol.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtZPPipeSize)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtZPJudgeNo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid_GHDL)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
- this.ultraTabPageControl2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
- this.splitContainer2.Panel1.SuspendLayout();
- this.splitContainer2.Panel2.SuspendLayout();
- this.splitContainer2.SuspendLayout();
- this.tableLayoutPanel6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtBackPlan)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).BeginInit();
- this.ultraGroupBox5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chkIsStart)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkContractNo1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtLotNo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtJudgeStoveNo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtContractNo1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkJudgeNo1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkLotNo1)).BeginInit();
- this.tableLayoutPanel5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
- this.ultraGroupBox2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
- this.ultraGroupBox4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
- this.ultraTabControl1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.matGpMEntityBindingSource)).BeginInit();
- this.SuspendLayout();
- //
- // ultraTabPageControl1
- //
- this.ultraTabPageControl1.Controls.Add(this.splitContainer1);
- this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(2);
- this.ultraTabPageControl1.Name = "ultraTabPageControl1";
- this.ultraTabPageControl1.Size = new System.Drawing.Size(1024, 574);
- //
- // splitContainer1
- //
- this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.Location = new System.Drawing.Point(0, 0);
- this.splitContainer1.Margin = new System.Windows.Forms.Padding(2);
- this.splitContainer1.Name = "splitContainer1";
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.Controls.Add(this.tableLayoutPanel3);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.Controls.Add(this.tableLayoutPanel4);
- this.splitContainer1.Size = new System.Drawing.Size(1024, 574);
- this.splitContainer1.SplitterDistance = 265;
- this.splitContainer1.SplitterWidth = 3;
- this.splitContainer1.TabIndex = 0;
- //
- // tableLayoutPanel3
- //
- this.tableLayoutPanel3.ColumnCount = 1;
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 288F));
- this.tableLayoutPanel3.Controls.Add(this.chkNodeQuery, 0, 1);
- this.tableLayoutPanel3.Controls.Add(this.ultraGroupBox3, 0, 0);
- this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
- this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(2);
- this.tableLayoutPanel3.Name = "tableLayoutPanel3";
- this.tableLayoutPanel3.RowCount = 2;
- this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 30.66202F));
- this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 69.33798F));
- this.tableLayoutPanel3.Size = new System.Drawing.Size(265, 574);
- this.tableLayoutPanel3.TabIndex = 1;
- //
- // chkNodeQuery
- //
- this.chkNodeQuery.DataMember = "Table1";
- this.chkNodeQuery.DataSource = this.dataSet1;
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.Hidden = true;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 0);
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn1.RowLayoutColumnInfo.WeightY = 40F;
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.Hidden = true;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn3.Header.VisiblePosition = 2;
- ultraGridColumn3.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 0);
- ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn3.RowLayoutColumnInfo.WeightY = 40F;
- ultraGridColumn4.Header.VisiblePosition = 3;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn5.Header.VisiblePosition = 4;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn6.Header.VisiblePosition = 5;
- ultraGridColumn6.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(62, 0);
- ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn7.Header.VisiblePosition = 6;
- ultraGridColumn7.Hidden = true;
- ultraGridColumn7.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn8.Header.VisiblePosition = 7;
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 0);
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8});
- ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.chkNodeQuery.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.chkNodeQuery.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.chkNodeQuery.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.chkNodeQuery.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.chkNodeQuery.Dock = System.Windows.Forms.DockStyle.Fill;
- this.chkNodeQuery.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.chkNodeQuery.Location = new System.Drawing.Point(3, 178);
- this.chkNodeQuery.Name = "chkNodeQuery";
- this.chkNodeQuery.Size = new System.Drawing.Size(282, 393);
- this.chkNodeQuery.TabIndex = 21;
- this.chkNodeQuery.AfterRowActivate += new System.EventHandler(this.chkNodeQuery_AfterRowActivate);
- //
- // dataSet1
- //
- this.dataSet1.DataSetName = "NewDataSet";
- this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
- this.dtContratNo});
- //
- // dtContratNo
- //
- this.dtContratNo.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn2,
- this.dataColumn58,
- this.dataColumn59,
- this.dataColumn60,
- this.dataColumn70,
- this.dataColumn71,
- this.dataColumn72,
- this.dataColumn42});
- this.dtContratNo.TableName = "Table1";
- //
- // dataColumn2
- //
- this.dataColumn2.Caption = "支数";
- this.dataColumn2.ColumnName = "SLAB_NUM";
- //
- // dataColumn58
- //
- this.dataColumn58.Caption = "单倍长";
- this.dataColumn58.ColumnName = "FIX_LEN";
- //
- // dataColumn59
- //
- this.dataColumn59.Caption = "钢种";
- this.dataColumn59.ColumnName = "GRADENAME";
- //
- // dataColumn60
- //
- this.dataColumn60.Caption = "断面";
- this.dataColumn60.ColumnName = "DIMATER";
- //
- // dataColumn70
- //
- this.dataColumn70.Caption = "坯料长度";
- this.dataColumn70.ColumnName = "ACT_LEN";
- //
- // dataColumn71
- //
- this.dataColumn71.Caption = "倍尺数";
- this.dataColumn71.ColumnName = "FIX_NUM";
- //
- // dataColumn72
- //
- this.dataColumn72.Caption = "材料实重";
- this.dataColumn72.ColumnName = "ACT_WEIGHT";
- //
- // dataColumn42
- //
- this.dataColumn42.Caption = "炼钢判定炉号";
- this.dataColumn42.ColumnName = "JUDGE_STOVE_NO";
- //
- // ultraGroupBox3
- //
- this.ultraGroupBox3.Controls.Add(this.txtJudgeNo);
- this.ultraGroupBox3.Controls.Add(this.chkJudgeNo);
- this.ultraGroupBox3.Controls.Add(this.udtDate);
- this.ultraGroupBox3.Controls.Add(this.chkDate);
- this.ultraGroupBox3.Controls.Add(this.chkSection);
- this.ultraGroupBox3.Controls.Add(this.chkLength);
- this.ultraGroupBox3.Controls.Add(this.chkSteelName);
- this.ultraGroupBox3.Controls.Add(this.chkContractNo);
- this.ultraGroupBox3.Controls.Add(this.txtSection);
- this.ultraGroupBox3.Controls.Add(this.txtLength);
- this.ultraGroupBox3.Controls.Add(this.txtSteelName);
- this.ultraGroupBox3.Controls.Add(this.txtContractNo);
- this.ultraGroupBox3.Controls.Add(this.btnQuery);
- this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox3.Location = new System.Drawing.Point(2, 2);
- this.ultraGroupBox3.Margin = new System.Windows.Forms.Padding(2);
- this.ultraGroupBox3.Name = "ultraGroupBox3";
- this.ultraGroupBox3.Size = new System.Drawing.Size(284, 171);
- this.ultraGroupBox3.TabIndex = 1;
- this.ultraGroupBox3.Text = "试轧料查询";
- this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // txtJudgeNo
- //
- this.txtJudgeNo.Enabled = false;
- this.txtJudgeNo.Location = new System.Drawing.Point(78, 96);
- this.txtJudgeNo.Margin = new System.Windows.Forms.Padding(2);
- this.txtJudgeNo.Name = "txtJudgeNo";
- this.txtJudgeNo.Size = new System.Drawing.Size(83, 21);
- this.txtJudgeNo.TabIndex = 5;
- this.txtJudgeNo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSteelName_KeyPress);
- //
- // chkJudgeNo
- //
- this.chkJudgeNo.AutoSize = true;
- this.chkJudgeNo.BackColor = System.Drawing.Color.Transparent;
- this.chkJudgeNo.BackColorInternal = System.Drawing.Color.Transparent;
- this.chkJudgeNo.Location = new System.Drawing.Point(15, 99);
- this.chkJudgeNo.Margin = new System.Windows.Forms.Padding(2);
- this.chkJudgeNo.Name = "chkJudgeNo";
- this.chkJudgeNo.Size = new System.Drawing.Size(59, 19);
- this.chkJudgeNo.TabIndex = 0;
- this.chkJudgeNo.Text = "炉号:";
- this.chkJudgeNo.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
- //
- // udtDate
- //
- this.udtDate.Enabled = false;
- this.udtDate.Location = new System.Drawing.Point(78, 122);
- this.udtDate.MaskInput = "{date}";
- this.udtDate.Name = "udtDate";
- this.udtDate.Size = new System.Drawing.Size(110, 21);
- this.udtDate.TabIndex = 3;
- //
- // chkDate
- //
- this.chkDate.AutoSize = true;
- this.chkDate.BackColor = System.Drawing.Color.Transparent;
- this.chkDate.BackColorInternal = System.Drawing.Color.Transparent;
- this.chkDate.Location = new System.Drawing.Point(15, 127);
- this.chkDate.Name = "chkDate";
- this.chkDate.Size = new System.Drawing.Size(59, 19);
- this.chkDate.TabIndex = 2;
- this.chkDate.Text = "日期:";
- this.chkDate.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
- //
- // chkSection
- //
- this.chkSection.AutoSize = true;
- this.chkSection.BackColor = System.Drawing.Color.Transparent;
- this.chkSection.BackColorInternal = System.Drawing.Color.Transparent;
- this.chkSection.Location = new System.Drawing.Point(15, 72);
- this.chkSection.Margin = new System.Windows.Forms.Padding(2);
- this.chkSection.Name = "chkSection";
- this.chkSection.Size = new System.Drawing.Size(59, 19);
- this.chkSection.TabIndex = 0;
- this.chkSection.Text = "断面:";
- this.chkSection.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
- //
- // chkLength
- //
- this.chkLength.AutoSize = true;
- this.chkLength.BackColor = System.Drawing.Color.Transparent;
- this.chkLength.BackColorInternal = System.Drawing.Color.Transparent;
- this.chkLength.Location = new System.Drawing.Point(15, 47);
- this.chkLength.Margin = new System.Windows.Forms.Padding(2);
- this.chkLength.Name = "chkLength";
- this.chkLength.Size = new System.Drawing.Size(59, 19);
- this.chkLength.TabIndex = 0;
- this.chkLength.Text = "长度:";
- this.chkLength.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
- //
- // chkSteelName
- //
- appearance14.BackColor = System.Drawing.Color.Transparent;
- this.chkSteelName.Appearance = appearance14;
- this.chkSteelName.AutoSize = true;
- this.chkSteelName.BackColor = System.Drawing.Color.Transparent;
- this.chkSteelName.BackColorInternal = System.Drawing.Color.Transparent;
- this.chkSteelName.Location = new System.Drawing.Point(15, 24);
- this.chkSteelName.Margin = new System.Windows.Forms.Padding(2);
- this.chkSteelName.Name = "chkSteelName";
- this.chkSteelName.Size = new System.Drawing.Size(59, 19);
- this.chkSteelName.TabIndex = 0;
- this.chkSteelName.Text = "钢种:";
- this.chkSteelName.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
- //
- // chkContractNo
- //
- this.chkContractNo.Location = new System.Drawing.Point(94, 0);
- this.chkContractNo.Margin = new System.Windows.Forms.Padding(2);
- this.chkContractNo.Name = "chkContractNo";
- this.chkContractNo.Size = new System.Drawing.Size(74, 18);
- this.chkContractNo.TabIndex = 0;
- this.chkContractNo.Text = "合同号:";
- this.chkContractNo.Visible = false;
- this.chkContractNo.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
- //
- // txtSection
- //
- this.txtSection.Enabled = false;
- this.txtSection.Location = new System.Drawing.Point(78, 72);
- this.txtSection.Margin = new System.Windows.Forms.Padding(2);
- this.txtSection.Name = "txtSection";
- this.txtSection.Size = new System.Drawing.Size(83, 21);
- this.txtSection.TabIndex = 1;
- this.txtSection.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSteelName_KeyPress);
- //
- // txtLength
- //
- this.txtLength.Enabled = false;
- this.txtLength.Location = new System.Drawing.Point(78, 47);
- this.txtLength.Margin = new System.Windows.Forms.Padding(2);
- this.txtLength.Name = "txtLength";
- this.txtLength.Size = new System.Drawing.Size(83, 21);
- this.txtLength.TabIndex = 1;
- this.txtLength.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSteelName_KeyPress);
- //
- // txtSteelName
- //
- this.txtSteelName.Enabled = false;
- this.txtSteelName.Location = new System.Drawing.Point(78, 21);
- this.txtSteelName.Margin = new System.Windows.Forms.Padding(2);
- this.txtSteelName.Name = "txtSteelName";
- this.txtSteelName.Size = new System.Drawing.Size(83, 21);
- this.txtSteelName.TabIndex = 1;
- this.txtSteelName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSteelName_KeyPress);
- //
- // txtContractNo
- //
- this.txtContractNo.Enabled = false;
- this.txtContractNo.Location = new System.Drawing.Point(179, 0);
- this.txtContractNo.Margin = new System.Windows.Forms.Padding(2);
- this.txtContractNo.Name = "txtContractNo";
- this.txtContractNo.Size = new System.Drawing.Size(84, 21);
- this.txtContractNo.TabIndex = 1;
- this.txtContractNo.Visible = false;
- //
- // btnQuery
- //
- this.btnQuery.Location = new System.Drawing.Point(52, 148);
- this.btnQuery.Margin = new System.Windows.Forms.Padding(2);
- this.btnQuery.Name = "btnQuery";
- this.btnQuery.Size = new System.Drawing.Size(74, 23);
- this.btnQuery.TabIndex = 0;
- this.btnQuery.Text = "查询";
- this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
- //
- // tableLayoutPanel4
- //
- this.tableLayoutPanel4.ColumnCount = 1;
- this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel4.Controls.Add(this.ugbCol, 0, 0);
- this.tableLayoutPanel4.Controls.Add(this.ultraGroupBox1, 0, 1);
- this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 0);
- this.tableLayoutPanel4.Margin = new System.Windows.Forms.Padding(2);
- this.tableLayoutPanel4.Name = "tableLayoutPanel4";
- this.tableLayoutPanel4.RowCount = 2;
- this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.92788F));
- this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 88.07212F));
- this.tableLayoutPanel4.Size = new System.Drawing.Size(756, 574);
- this.tableLayoutPanel4.TabIndex = 2;
- //
- // ugbCol
- //
- this.ugbCol.Controls.Add(this.txtZPPipeSize);
- this.ugbCol.Controls.Add(this.ultraLabel1);
- this.ugbCol.Controls.Add(this.txtZPJudgeNo);
- this.ugbCol.Controls.Add(this.ultraLabel2);
- this.ugbCol.Controls.Add(this.btnZP);
- this.ugbCol.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ugbCol.Location = new System.Drawing.Point(2, 2);
- this.ugbCol.Margin = new System.Windows.Forms.Padding(2);
- this.ugbCol.Name = "ugbCol";
- this.ugbCol.Size = new System.Drawing.Size(752, 64);
- this.ugbCol.TabIndex = 1;
- this.ugbCol.Text = "功能操作";
- this.ugbCol.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // txtZPPipeSize
- //
- this.txtZPPipeSize.Location = new System.Drawing.Point(271, 25);
- this.txtZPPipeSize.Margin = new System.Windows.Forms.Padding(2);
- this.txtZPPipeSize.Name = "txtZPPipeSize";
- this.txtZPPipeSize.Size = new System.Drawing.Size(140, 21);
- this.txtZPPipeSize.TabIndex = 3;
- //
- // ultraLabel1
- //
- appearance16.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel1.Appearance = appearance16;
- this.ultraLabel1.Location = new System.Drawing.Point(201, 29);
- this.ultraLabel1.Margin = new System.Windows.Forms.Padding(2);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(66, 18);
- this.ultraLabel1.TabIndex = 2;
- this.ultraLabel1.Text = "组炉规格:";
- //
- // txtZPJudgeNo
- //
- this.txtZPJudgeNo.Location = new System.Drawing.Point(93, 25);
- this.txtZPJudgeNo.Margin = new System.Windows.Forms.Padding(2);
- this.txtZPJudgeNo.Name = "txtZPJudgeNo";
- this.txtZPJudgeNo.Size = new System.Drawing.Size(75, 21);
- this.txtZPJudgeNo.TabIndex = 1;
- //
- // ultraLabel2
- //
- appearance13.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel2.Appearance = appearance13;
- this.ultraLabel2.Location = new System.Drawing.Point(23, 28);
- this.ultraLabel2.Margin = new System.Windows.Forms.Padding(2);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(66, 18);
- this.ultraLabel2.TabIndex = 0;
- this.ultraLabel2.Text = "组炉炉号:";
- //
- // btnZP
- //
- this.btnZP.Location = new System.Drawing.Point(437, 23);
- this.btnZP.Margin = new System.Windows.Forms.Padding(2);
- this.btnZP.Name = "btnZP";
- this.btnZP.Size = new System.Drawing.Size(74, 23);
- this.btnZP.TabIndex = 0;
- this.btnZP.Text = "组炉";
- this.btnZP.Click += new System.EventHandler(this.btnZP_Click);
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.Controls.Add(this.ultraGrid_GHDL);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox1.Location = new System.Drawing.Point(2, 70);
- this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(2);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(752, 502);
- this.ultraGroupBox1.TabIndex = 0;
- this.ultraGroupBox1.Text = "试轧料查询";
- this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraGrid_GHDL
- //
- this.ultraGrid_GHDL.DataMember = "Table3";
- this.ultraGrid_GHDL.DataSource = this.dataSet3;
- ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn9.Header.VisiblePosition = 0;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(84, 0);
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn10.Header.VisiblePosition = 1;
- ultraGridColumn10.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn11.Header.VisiblePosition = 2;
- ultraGridColumn11.Hidden = true;
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 19;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn12.Header.VisiblePosition = 3;
- ultraGridColumn12.Hidden = true;
- ultraGridColumn12.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn13.Header.VisiblePosition = 4;
- ultraGridColumn13.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 0);
- ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn14.Header.VisiblePosition = 15;
- ultraGridColumn14.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(87, 0);
- ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn15.Header.VisiblePosition = 5;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(78, 0);
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn16.Header.VisiblePosition = 6;
- ultraGridColumn16.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
- ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn17.Header.VisiblePosition = 7;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn18.Header.VisiblePosition = 8;
- ultraGridColumn18.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn19.Header.VisiblePosition = 9;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(72, 0);
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn20.Header.VisiblePosition = 10;
- ultraGridColumn20.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
- ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn21.Header.VisiblePosition = 11;
- ultraGridColumn21.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
- ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn22.Header.VisiblePosition = 12;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn23.Header.VisiblePosition = 13;
- ultraGridColumn23.RowLayoutColumnInfo.OriginX = 17;
- ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(72, 0);
- ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn24.Header.VisiblePosition = 14;
- ultraGridColumn24.Hidden = true;
- ultraGridColumn24.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn25.Header.VisiblePosition = 16;
- ultraGridColumn25.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(89, 0);
- ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
- appearance17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- ultraGridColumn26.CellAppearance = appearance17;
- ultraGridColumn26.Header.VisiblePosition = 17;
- ultraGridColumn26.MaskInput = "nnnnnnnnn";
- ultraGridColumn26.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(87, 0);
- ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn27.Header.VisiblePosition = 18;
- ultraGridColumn27.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 0);
- ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn28.Header.VisiblePosition = 19;
- ultraGridColumn28.Hidden = true;
- ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn29.Header.VisiblePosition = 20;
- ultraGridColumn29.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(88, 0);
- ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn30.Header.VisiblePosition = 21;
- ultraGridColumn30.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(93, 0);
- ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn31.Header.VisiblePosition = 22;
- ultraGridColumn31.RowLayoutColumnInfo.OriginX = 19;
- ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn32.DataType = typeof(bool);
- ultraGridColumn32.Header.Caption = "选择";
- ultraGridColumn32.Header.VisiblePosition = 23;
- ultraGridColumn32.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15,
- ultraGridColumn16,
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19,
- ultraGridColumn20,
- ultraGridColumn21,
- ultraGridColumn22,
- ultraGridColumn23,
- ultraGridColumn24,
- ultraGridColumn25,
- ultraGridColumn26,
- ultraGridColumn27,
- ultraGridColumn28,
- ultraGridColumn29,
- ultraGridColumn30,
- ultraGridColumn31,
- ultraGridColumn32});
- ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid_GHDL.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraGrid_GHDL.DisplayLayout.InterBandSpacing = 8;
- appearance1.FontData.BoldAsString = "True";
- this.ultraGrid_GHDL.DisplayLayout.Override.ActiveRowAppearance = appearance1;
- this.ultraGrid_GHDL.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
- this.ultraGrid_GHDL.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid_GHDL.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.True;
- appearance2.BackColor = System.Drawing.Color.Transparent;
- this.ultraGrid_GHDL.DisplayLayout.Override.CardAreaAppearance = appearance2;
- appearance3.TextVAlignAsString = "Middle";
- this.ultraGrid_GHDL.DisplayLayout.Override.CellAppearance = appearance3;
- this.ultraGrid_GHDL.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid_GHDL.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
- appearance4.BackColor = System.Drawing.Color.LightSteelBlue;
- appearance4.TextHAlignAsString = "Center";
- appearance4.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
- this.ultraGrid_GHDL.DisplayLayout.Override.HeaderAppearance = appearance4;
- this.ultraGrid_GHDL.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid_GHDL.DisplayLayout.Override.MaxSelectedRows = 1;
- this.ultraGrid_GHDL.DisplayLayout.Override.MinRowHeight = 21;
- appearance5.BackColor = System.Drawing.Color.LightSteelBlue;
- this.ultraGrid_GHDL.DisplayLayout.Override.RowSelectorAppearance = appearance5;
- this.ultraGrid_GHDL.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ultraGrid_GHDL.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- this.ultraGrid_GHDL.DisplayLayout.Override.RowSelectorWidth = 26;
- this.ultraGrid_GHDL.DisplayLayout.Override.RowSpacingBefore = 0;
- appearance6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
- appearance6.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
- appearance6.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance6.ForeColor = System.Drawing.Color.Black;
- this.ultraGrid_GHDL.DisplayLayout.Override.SelectedRowAppearance = appearance6;
- this.ultraGrid_GHDL.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.ultraGrid_GHDL.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.ultraGrid_GHDL.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- this.ultraGrid_GHDL.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid_GHDL.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
- this.ultraGrid_GHDL.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid_GHDL.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid_GHDL.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
- this.ultraGrid_GHDL.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
- this.ultraGrid_GHDL.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid_GHDL.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid_GHDL.Location = new System.Drawing.Point(3, 18);
- this.ultraGrid_GHDL.Name = "ultraGrid_GHDL";
- this.ultraGrid_GHDL.Size = new System.Drawing.Size(746, 481);
- this.ultraGrid_GHDL.TabIndex = 9;
- this.ultraGrid_GHDL.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid_GHDL_CellChange);
- //
- // dataSet3
- //
- this.dataSet3.DataSetName = "NewDataSet";
- this.dataSet3.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable1,
- this.dataTable3});
- //
- // dataTable1
- //
- this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn7,
- this.dataColumn8,
- this.dataColumn9,
- this.dataColumn10,
- this.dataColumn11,
- this.dataColumn12,
- this.dataColumn13,
- this.dataColumn14,
- this.dataColumn15,
- this.dataColumn16,
- this.dataColumn17,
- this.dataColumn18,
- this.dataColumn19,
- this.dataColumn20,
- this.dataColumn21,
- this.dataColumn22,
- this.dataColumn23,
- this.dataColumn24,
- this.dataColumn25,
- this.dataColumn26,
- this.dataColumn32,
- this.dataColumn56,
- this.dataColumn1,
- this.dataColumn3,
- this.dataColumn4,
- this.dataColumn5,
- this.dataColumn63,
- this.dataColumn64,
- this.dataColumn65});
- this.dataTable1.TableName = "Table1";
- //
- // dataColumn7
- //
- this.dataColumn7.Caption = "炉号";
- this.dataColumn7.ColumnName = "JUDGE_STOVE_NO";
- //
- // dataColumn8
- //
- this.dataColumn8.Caption = "剔除工序";
- this.dataColumn8.ColumnName = "PROCESS_NO";
- //
- // dataColumn9
- //
- this.dataColumn9.Caption = "材料号";
- this.dataColumn9.ColumnName = "MAT_NO";
- //
- // dataColumn10
- //
- this.dataColumn10.Caption = "组炉标识";
- this.dataColumn10.ColumnName = "GROUP_FLAG";
- //
- // dataColumn11
- //
- this.dataColumn11.Caption = "组炉炉号";
- this.dataColumn11.ColumnName = "NEW_HEAT_NO";
- //
- // dataColumn12
- //
- this.dataColumn12.Caption = "处理结果";
- this.dataColumn12.ColumnName = "HANDLE_RESULT";
- //
- // dataColumn13
- //
- this.dataColumn13.Caption = "处理标识";
- this.dataColumn13.ColumnName = "FLAG";
- //
- // dataColumn14
- //
- this.dataColumn14.Caption = "备注";
- this.dataColumn14.ColumnName = "REMARK";
- //
- // dataColumn15
- //
- this.dataColumn15.Caption = "实绩编号";
- this.dataColumn15.ColumnName = "RESULT_NO";
- //
- // dataColumn16
- //
- this.dataColumn16.Caption = "产线";
- this.dataColumn16.ColumnName = "PLINE_CODE";
- //
- // dataColumn17
- //
- this.dataColumn17.Caption = "生产批号";
- this.dataColumn17.ColumnName = "LOT_NO";
- //
- // dataColumn18
- //
- this.dataColumn18.Caption = "合同号";
- this.dataColumn18.ColumnName = "CONTRACT_NO";
- //
- // dataColumn19
- //
- this.dataColumn19.Caption = "单倍长";
- this.dataColumn19.ColumnName = "DB_LENGTH";
- //
- // dataColumn20
- //
- this.dataColumn20.Caption = "品种";
- this.dataColumn20.ColumnName = "VARIETIES";
- //
- // dataColumn21
- //
- this.dataColumn21.Caption = "扣型";
- this.dataColumn21.ColumnName = "BUCKLE_TYPE";
- //
- // dataColumn22
- //
- this.dataColumn22.Caption = "钢级名称";
- this.dataColumn22.ColumnName = "STEELNAME";
- //
- // dataColumn23
- //
- this.dataColumn23.Caption = "钢种名称";
- this.dataColumn23.ColumnName = "GRADENAME";
- //
- // dataColumn24
- //
- this.dataColumn24.Caption = "钢级代码";
- this.dataColumn24.ColumnName = "STEELCODE";
- //
- // dataColumn25
- //
- this.dataColumn25.Caption = "钢种代码";
- this.dataColumn25.ColumnName = "GRADECODE";
- //
- // dataColumn26
- //
- this.dataColumn26.Caption = "单倍重";
- this.dataColumn26.ColumnName = "DB_HEIGHT";
- //
- // dataColumn32
- //
- this.dataColumn32.Caption = "选择";
- this.dataColumn32.ColumnName = "CHK";
- this.dataColumn32.DataType = typeof(bool);
- //
- // dataColumn56
- //
- this.dataColumn56.Caption = "炉号";
- this.dataColumn56.ColumnName = "JUDGE_NO";
- //
- // dataColumn1
- //
- this.dataColumn1.Caption = "剔除时间";
- this.dataColumn1.ColumnName = "TIME";
- //
- // dataColumn3
- //
- this.dataColumn3.Caption = "用户";
- this.dataColumn3.ColumnName = "FINISH_USER";
- //
- // dataColumn4
- //
- this.dataColumn4.Caption = "规格";
- this.dataColumn4.ColumnName = "PIPE_SIZE";
- //
- // dataColumn5
- //
- this.dataColumn5.Caption = "轧制长度";
- this.dataColumn5.ColumnName = "ROLL_LENGTH";
- //
- // dataColumn63
- //
- this.dataColumn63.Caption = "主炉号";
- this.dataColumn63.ColumnName = "CHKMAIN";
- this.dataColumn63.DataType = typeof(bool);
- //
- // dataColumn64
- //
- this.dataColumn64.Caption = "轧管订单编号";
- this.dataColumn64.ColumnName = "PRO_PLAN_ID";
- //
- // dataColumn65
- //
- this.dataColumn65.Caption = "工序排产序号";
- this.dataColumn65.ColumnName = "GX_PLAN_NO";
- //
- // dataTable3
- //
- this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn73,
- this.dataColumn74,
- this.dataColumn75,
- this.dataColumn76,
- this.dataColumn77,
- this.dataColumn78,
- this.dataColumn79,
- this.dataColumn80,
- this.dataColumn81,
- this.dataColumn82,
- this.dataColumn83,
- this.dataColumn84,
- this.dataColumn85,
- this.dataColumn86,
- this.dataColumn87,
- this.dataColumn88,
- this.dataColumn89,
- this.dataColumn90,
- this.dataColumn91,
- this.dataColumn92,
- this.dataColumn93,
- this.dataColumn94,
- this.dataColumn95});
- this.dataTable3.TableName = "Table3";
- //
- // dataColumn73
- //
- this.dataColumn73.Caption = "熔炼炉号";
- this.dataColumn73.ColumnName = "STOVE_NO";
- //
- // dataColumn74
- //
- this.dataColumn74.Caption = "炼钢判定炉号";
- this.dataColumn74.ColumnName = "JUDGE_STOVE_NO";
- //
- // dataColumn75
- //
- this.dataColumn75.Caption = "材料来源类型名称";
- this.dataColumn75.ColumnName = "MAT_ORIGIN_NAME";
- //
- // dataColumn76
- //
- this.dataColumn76.Caption = "材料来源地名称";
- this.dataColumn76.ColumnName = "SOURE_NAME";
- //
- // dataColumn77
- //
- this.dataColumn77.Caption = "物料描叙";
- this.dataColumn77.ColumnName = "MATERIAL_NAME";
- //
- // dataColumn78
- //
- this.dataColumn78.Caption = "钢种名称";
- this.dataColumn78.ColumnName = "GRADENAME";
- //
- // dataColumn79
- //
- this.dataColumn79.Caption = "标准名称";
- this.dataColumn79.ColumnName = "STD_NAME";
- //
- // dataColumn80
- //
- this.dataColumn80.Caption = "生产产线名称";
- this.dataColumn80.ColumnName = "PLINE_NAME";
- //
- // dataColumn81
- //
- this.dataColumn81.Caption = "断面";
- this.dataColumn81.ColumnName = "DIMATER";
- //
- // dataColumn82
- //
- this.dataColumn82.Caption = "坯料长度";
- this.dataColumn82.ColumnName = "ACT_LEN";
- //
- // dataColumn83
- //
- this.dataColumn83.Caption = "倍尺数";
- this.dataColumn83.ColumnName = "FIX_NUM";
- //
- // dataColumn84
- //
- this.dataColumn84.Caption = "单倍长度";
- this.dataColumn84.ColumnName = "FIX_LEN";
- //
- // dataColumn85
- //
- this.dataColumn85.Caption = "坯料重量";
- this.dataColumn85.ColumnName = "ACT_WEIGHT";
- //
- // dataColumn86
- //
- this.dataColumn86.Caption = "品名";
- this.dataColumn86.ColumnName = "PRODUCNAME";
- //
- // dataColumn87
- //
- this.dataColumn87.Caption = "钢级";
- this.dataColumn87.ColumnName = "STEELNAME";
- //
- // dataColumn88
- //
- this.dataColumn88.Caption = "综合判定结果";
- this.dataColumn88.ColumnName = "JUDGE_RESULT_CODE";
- //
- // dataColumn89
- //
- this.dataColumn89.Caption = "单支重量";
- this.dataColumn89.ColumnName = "DB_WEIGHT";
- //
- // dataColumn90
- //
- this.dataColumn90.Caption = "支数";
- this.dataColumn90.ColumnName = "ACT_COUNT";
- //
- // dataColumn91
- //
- this.dataColumn91.Caption = "管坯类型";
- this.dataColumn91.ColumnName = "GPTYPE";
- //
- // dataColumn92
- //
- this.dataColumn92.ColumnName = "STORAGE_NO";
- //
- // dataColumn93
- //
- this.dataColumn93.Caption = "仓库";
- this.dataColumn93.ColumnName = "STORAGE_NAME";
- //
- // dataColumn94
- //
- this.dataColumn94.Caption = "综合判定结果";
- this.dataColumn94.ColumnName = "JUDGE_RESULT_NAME";
- //
- // dataColumn95
- //
- this.dataColumn95.Caption = "申请判定单号";
- this.dataColumn95.ColumnName = "JUGDE_APPLY_CODE";
- //
- // ultraTabPageControl2
- //
- this.ultraTabPageControl2.Controls.Add(this.splitContainer2);
- this.ultraTabPageControl2.Location = new System.Drawing.Point(1, 23);
- this.ultraTabPageControl2.Margin = new System.Windows.Forms.Padding(2);
- this.ultraTabPageControl2.Name = "ultraTabPageControl2";
- this.ultraTabPageControl2.Size = new System.Drawing.Size(1024, 574);
- //
- // splitContainer2
- //
- this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer2.Location = new System.Drawing.Point(0, 0);
- this.splitContainer2.Margin = new System.Windows.Forms.Padding(2);
- this.splitContainer2.Name = "splitContainer2";
- //
- // splitContainer2.Panel1
- //
- this.splitContainer2.Panel1.Controls.Add(this.tableLayoutPanel6);
- //
- // splitContainer2.Panel2
- //
- this.splitContainer2.Panel2.Controls.Add(this.tableLayoutPanel5);
- this.splitContainer2.Size = new System.Drawing.Size(1024, 574);
- this.splitContainer2.SplitterDistance = 233;
- this.splitContainer2.SplitterWidth = 3;
- this.splitContainer2.TabIndex = 0;
- //
- // tableLayoutPanel6
- //
- this.tableLayoutPanel6.ColumnCount = 1;
- this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 327F));
- this.tableLayoutPanel6.Controls.Add(this.ultraGrid2, 0, 1);
- this.tableLayoutPanel6.Controls.Add(this.ultraGroupBox5, 0, 0);
- this.tableLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel6.Location = new System.Drawing.Point(0, 0);
- this.tableLayoutPanel6.Margin = new System.Windows.Forms.Padding(2);
- this.tableLayoutPanel6.Name = "tableLayoutPanel6";
- this.tableLayoutPanel6.RowCount = 2;
- this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 176F));
- this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayoutPanel6.Size = new System.Drawing.Size(233, 574);
- this.tableLayoutPanel6.TabIndex = 1;
- //
- // ultraGrid2
- //
- this.ultraGrid2.DataMember = "Table1";
- this.ultraGrid2.DataSource = this.dataSet4;
- ultraGridColumn33.Header.VisiblePosition = 0;
- ultraGridColumn33.Hidden = true;
- ultraGridColumn33.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(127, 0);
- ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn34.Header.Caption = "支数";
- ultraGridColumn34.Header.VisiblePosition = 1;
- ultraGridColumn34.Hidden = true;
- ultraGridColumn34.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
- ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn35.Header.VisiblePosition = 2;
- ultraGridColumn35.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(102, 0);
- ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn35.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn36.Header.VisiblePosition = 3;
- ultraGridColumn36.Hidden = true;
- ultraGridColumn36.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(91, 40);
- ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn37.Header.VisiblePosition = 4;
- ultraGridColumn37.Hidden = true;
- ultraGridColumn38.Header.VisiblePosition = 5;
- ultraGridColumn38.Hidden = true;
- ultraGridColumn38.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
- ultraGridColumn38.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn38.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn39.Header.VisiblePosition = 6;
- ultraGridColumn39.Hidden = true;
- ultraGridColumn39.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn40.Header.VisiblePosition = 7;
- ultraGridColumn40.Hidden = true;
- ultraGridColumn41.Header.VisiblePosition = 8;
- ultraGridColumn41.Hidden = true;
- ultraGridColumn42.Header.VisiblePosition = 9;
- ultraGridColumn42.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
- ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn43.Header.VisiblePosition = 10;
- ultraGridBand3.Columns.AddRange(new object[] {
- ultraGridColumn33,
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38,
- ultraGridColumn39,
- ultraGridColumn40,
- ultraGridColumn41,
- ultraGridColumn42,
- ultraGridColumn43});
- ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
- this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.ultraGrid2.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid2.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid2.Location = new System.Drawing.Point(3, 179);
- this.ultraGrid2.Name = "ultraGrid2";
- this.ultraGrid2.Size = new System.Drawing.Size(321, 392);
- this.ultraGrid2.TabIndex = 21;
- this.ultraGrid2.AfterRowActivate += new System.EventHandler(this.ultraGrid2_AfterRowActivate);
- //
- // dataSet4
- //
- this.dataSet4.DataSetName = "NewDataSet";
- this.dataSet4.Tables.AddRange(new System.Data.DataTable[] {
- this.dtBackPlan});
- //
- // dtBackPlan
- //
- this.dtBackPlan.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn27,
- this.dataColumn28,
- this.dataColumn29,
- this.dataColumn30,
- this.dataColumn31,
- this.dataColumn33,
- this.dataColumn55,
- this.dataColumn68,
- this.dataColumn69,
- this.dataColumn41,
- this.dataColumn47});
- this.dtBackPlan.TableName = "Table1";
- //
- // dataColumn27
- //
- this.dataColumn27.Caption = "合同号";
- this.dataColumn27.ColumnName = "CONTRACT_NO";
- //
- // dataColumn28
- //
- this.dataColumn28.Caption = "回炉坯总支数";
- this.dataColumn28.ColumnName = "SLAB_NUM";
- //
- // dataColumn29
- //
- this.dataColumn29.Caption = "轧管判定炉号";
- this.dataColumn29.ColumnName = "JUDGE_STOVE_NO";
- //
- // dataColumn30
- //
- this.dataColumn30.Caption = "生产批号";
- this.dataColumn30.ColumnName = "LOT_NO";
- //
- // dataColumn31
- //
- this.dataColumn31.ColumnName = "ID";
- //
- // dataColumn33
- //
- this.dataColumn33.Caption = "炉号";
- this.dataColumn33.ColumnName = "JUDGE_NO";
- //
- // dataColumn55
- //
- this.dataColumn55.Caption = "状态";
- this.dataColumn55.ColumnName = "STATUS";
- //
- // dataColumn68
- //
- this.dataColumn68.Caption = "轧管订单编号";
- this.dataColumn68.ColumnName = "PRO_PLAN_ID";
- //
- // dataColumn69
- //
- this.dataColumn69.Caption = "工序排产序号";
- this.dataColumn69.ColumnName = "GX_PLAN_NO";
- //
- // dataColumn41
- //
- this.dataColumn41.Caption = "状态";
- this.dataColumn41.ColumnName = "STATUS1";
- //
- // ultraGroupBox5
- //
- this.ultraGroupBox5.Controls.Add(this.chkIsStart);
- this.ultraGroupBox5.Controls.Add(this.chkContractNo1);
- this.ultraGroupBox5.Controls.Add(this.txtLotNo);
- this.ultraGroupBox5.Controls.Add(this.txtJudgeStoveNo);
- this.ultraGroupBox5.Controls.Add(this.txtContractNo1);
- this.ultraGroupBox5.Controls.Add(this.chkJudgeNo1);
- this.ultraGroupBox5.Controls.Add(this.chkLotNo1);
- this.ultraGroupBox5.Controls.Add(this.ultraButton2);
- this.ultraGroupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox5.Location = new System.Drawing.Point(2, 2);
- this.ultraGroupBox5.Margin = new System.Windows.Forms.Padding(2);
- this.ultraGroupBox5.Name = "ultraGroupBox5";
- this.ultraGroupBox5.Size = new System.Drawing.Size(323, 172);
- this.ultraGroupBox5.TabIndex = 1;
- this.ultraGroupBox5.Text = "合同号查询";
- this.ultraGroupBox5.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // chkIsStart
- //
- this.chkIsStart.Location = new System.Drawing.Point(12, 103);
- this.chkIsStart.Margin = new System.Windows.Forms.Padding(2);
- this.chkIsStart.Name = "chkIsStart";
- this.chkIsStart.Size = new System.Drawing.Size(145, 16);
- this.chkIsStart.TabIndex = 0;
- this.chkIsStart.Text = "查询已生产的炉计划";
- this.chkIsStart.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
- //
- // chkContractNo1
- //
- this.chkContractNo1.Location = new System.Drawing.Point(12, 79);
- this.chkContractNo1.Margin = new System.Windows.Forms.Padding(2);
- this.chkContractNo1.Name = "chkContractNo1";
- this.chkContractNo1.Size = new System.Drawing.Size(74, 16);
- this.chkContractNo1.TabIndex = 0;
- this.chkContractNo1.Text = "合同号:";
- this.chkContractNo1.Visible = false;
- this.chkContractNo1.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
- //
- // txtLotNo
- //
- this.txtLotNo.Enabled = false;
- this.txtLotNo.Location = new System.Drawing.Point(118, 25);
- this.txtLotNo.Margin = new System.Windows.Forms.Padding(2);
- this.txtLotNo.Name = "txtLotNo";
- this.txtLotNo.Size = new System.Drawing.Size(95, 21);
- this.txtLotNo.TabIndex = 1;
- this.txtLotNo.Visible = false;
- //
- // txtJudgeStoveNo
- //
- this.txtJudgeStoveNo.Enabled = false;
- this.txtJudgeStoveNo.Location = new System.Drawing.Point(118, 51);
- this.txtJudgeStoveNo.Margin = new System.Windows.Forms.Padding(2);
- this.txtJudgeStoveNo.Name = "txtJudgeStoveNo";
- this.txtJudgeStoveNo.Size = new System.Drawing.Size(95, 21);
- this.txtJudgeStoveNo.TabIndex = 1;
- this.txtJudgeStoveNo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtJudgeStoveNo_KeyPress);
- //
- // txtContractNo1
- //
- this.txtContractNo1.Enabled = false;
- this.txtContractNo1.Location = new System.Drawing.Point(118, 78);
- this.txtContractNo1.Margin = new System.Windows.Forms.Padding(2);
- this.txtContractNo1.Name = "txtContractNo1";
- this.txtContractNo1.Size = new System.Drawing.Size(95, 21);
- this.txtContractNo1.TabIndex = 1;
- this.txtContractNo1.Visible = false;
- //
- // chkJudgeNo1
- //
- this.chkJudgeNo1.Location = new System.Drawing.Point(12, 53);
- this.chkJudgeNo1.Margin = new System.Windows.Forms.Padding(2);
- this.chkJudgeNo1.Name = "chkJudgeNo1";
- this.chkJudgeNo1.Size = new System.Drawing.Size(62, 16);
- this.chkJudgeNo1.TabIndex = 0;
- this.chkJudgeNo1.Text = "炉号:";
- this.chkJudgeNo1.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
- //
- // chkLotNo1
- //
- this.chkLotNo1.Location = new System.Drawing.Point(12, 26);
- this.chkLotNo1.Margin = new System.Windows.Forms.Padding(2);
- this.chkLotNo1.Name = "chkLotNo1";
- this.chkLotNo1.Size = new System.Drawing.Size(80, 16);
- this.chkLotNo1.TabIndex = 0;
- this.chkLotNo1.Text = "生产批号:";
- this.chkLotNo1.Visible = false;
- this.chkLotNo1.CheckedChanged += new System.EventHandler(this.chkContractNo_CheckedChanged);
- //
- // ultraButton2
- //
- this.ultraButton2.Location = new System.Drawing.Point(18, 140);
- this.ultraButton2.Margin = new System.Windows.Forms.Padding(2);
- this.ultraButton2.Name = "ultraButton2";
- this.ultraButton2.Size = new System.Drawing.Size(74, 23);
- this.ultraButton2.TabIndex = 0;
- this.ultraButton2.Text = "查询";
- this.ultraButton2.Click += new System.EventHandler(this.ultraButton2_Click);
- //
- // tableLayoutPanel5
- //
- this.tableLayoutPanel5.ColumnCount = 1;
- this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel5.Controls.Add(this.ultraGroupBox2, 0, 0);
- this.tableLayoutPanel5.Controls.Add(this.ultraGroupBox4, 0, 1);
- this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel5.Location = new System.Drawing.Point(0, 0);
- this.tableLayoutPanel5.Margin = new System.Windows.Forms.Padding(2);
- this.tableLayoutPanel5.Name = "tableLayoutPanel5";
- this.tableLayoutPanel5.RowCount = 2;
- this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.92788F));
- this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 88.07212F));
- this.tableLayoutPanel5.Size = new System.Drawing.Size(788, 574);
- this.tableLayoutPanel5.TabIndex = 2;
- //
- // ultraGroupBox2
- //
- this.ultraGroupBox2.Controls.Add(this.ultraButton1);
- this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox2.Location = new System.Drawing.Point(2, 2);
- this.ultraGroupBox2.Margin = new System.Windows.Forms.Padding(2);
- this.ultraGroupBox2.Name = "ultraGroupBox2";
- this.ultraGroupBox2.Size = new System.Drawing.Size(784, 64);
- this.ultraGroupBox2.TabIndex = 1;
- this.ultraGroupBox2.Text = "功能操作";
- this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraButton1
- //
- this.ultraButton1.Location = new System.Drawing.Point(22, 25);
- this.ultraButton1.Margin = new System.Windows.Forms.Padding(2);
- this.ultraButton1.Name = "ultraButton1";
- this.ultraButton1.Size = new System.Drawing.Size(74, 23);
- this.ultraButton1.TabIndex = 0;
- this.ultraButton1.Text = "组炉回退";
- this.ultraButton1.Click += new System.EventHandler(this.ultraButton1_Click);
- //
- // ultraGroupBox4
- //
- this.ultraGroupBox4.Controls.Add(this.ultraGrid1);
- this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox4.Location = new System.Drawing.Point(2, 70);
- this.ultraGroupBox4.Margin = new System.Windows.Forms.Padding(2);
- this.ultraGroupBox4.Name = "ultraGroupBox4";
- this.ultraGroupBox4.Size = new System.Drawing.Size(784, 502);
- this.ultraGroupBox4.TabIndex = 0;
- this.ultraGroupBox4.Text = "试轧料查询";
- this.ultraGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraGrid1
- //
- this.ultraGrid1.DataMember = "Table1";
- this.ultraGrid1.DataSource = this.dataSet2;
- ultraGridColumn44.Header.VisiblePosition = 0;
- ultraGridColumn44.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(119, 0);
- ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn44.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn45.Header.VisiblePosition = 1;
- ultraGridColumn45.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn45.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn46.Header.VisiblePosition = 2;
- ultraGridColumn46.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn46.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn46.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn47.Header.VisiblePosition = 3;
- ultraGridColumn47.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn47.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn47.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn48.Header.VisiblePosition = 4;
- ultraGridColumn48.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn48.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn48.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn49.Header.VisiblePosition = 5;
- ultraGridColumn49.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn49.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn49.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn50.Header.VisiblePosition = 6;
- ultraGridColumn50.Hidden = true;
- ultraGridColumn50.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn50.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn50.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn50.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn51.Header.VisiblePosition = 7;
- ultraGridColumn51.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn51.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn51.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn52.Header.VisiblePosition = 8;
- ultraGridColumn52.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn52.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn52.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn53.Header.VisiblePosition = 9;
- ultraGridColumn53.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn53.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn53.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn54.Header.VisiblePosition = 10;
- ultraGridColumn54.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn54.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn54.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn55.Header.VisiblePosition = 11;
- ultraGridColumn55.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn55.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn55.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn56.Header.VisiblePosition = 12;
- ultraGridColumn56.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn56.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn56.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn57.Header.VisiblePosition = 13;
- ultraGridColumn57.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn57.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn57.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn57.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn58.Header.VisiblePosition = 14;
- ultraGridColumn58.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn58.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn58.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn58.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn59.Header.VisiblePosition = 15;
- ultraGridColumn59.Hidden = true;
- ultraGridColumn59.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn59.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn59.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand4.Columns.AddRange(new object[] {
- ultraGridColumn44,
- ultraGridColumn45,
- ultraGridColumn46,
- ultraGridColumn47,
- ultraGridColumn48,
- ultraGridColumn49,
- ultraGridColumn50,
- ultraGridColumn51,
- ultraGridColumn52,
- ultraGridColumn53,
- ultraGridColumn54,
- ultraGridColumn55,
- ultraGridColumn56,
- ultraGridColumn57,
- ultraGridColumn58,
- ultraGridColumn59});
- ultraGridBand4.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
- this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
- appearance7.FontData.BoldAsString = "True";
- this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance7;
- this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
- this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.True;
- appearance8.BackColor = System.Drawing.Color.Transparent;
- this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance8;
- appearance9.TextVAlignAsString = "Middle";
- this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance9;
- this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
- appearance10.BackColor = System.Drawing.Color.LightSteelBlue;
- appearance10.TextHAlignAsString = "Center";
- appearance10.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
- this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance10;
- this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
- this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
- appearance11.BackColor = System.Drawing.Color.LightSteelBlue;
- this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance11;
- this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 26;
- this.ultraGrid1.DisplayLayout.Override.RowSpacingBefore = 0;
- appearance12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
- appearance12.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
- appearance12.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance12.ForeColor = System.Drawing.Color.Black;
- this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance12;
- this.ultraGrid1.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.ultraGrid1.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
- this.ultraGrid1.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
- this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
- this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid1.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
- this.ultraGrid1.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
- this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid1.Location = new System.Drawing.Point(3, 18);
- this.ultraGrid1.Name = "ultraGrid1";
- this.ultraGrid1.Size = new System.Drawing.Size(778, 481);
- this.ultraGrid1.TabIndex = 9;
- //
- // dataSet2
- //
- this.dataSet2.DataSetName = "NewDataSet";
- this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable2});
- //
- // dataTable2
- //
- this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn34,
- this.dataColumn43,
- this.dataColumn46,
- this.dataColumn50,
- this.dataColumn53,
- this.dataColumn57,
- this.dataColumn62,
- this.dataColumn6,
- this.dataColumn35,
- this.dataColumn36,
- this.dataColumn37,
- this.dataColumn38,
- this.dataColumn39,
- this.dataColumn40,
- this.dataColumn44,
- this.dataColumn45});
- this.dataTable2.TableName = "Table1";
- //
- // dataColumn34
- //
- this.dataColumn34.Caption = "轧管判定炉号";
- this.dataColumn34.ColumnName = "JUDGE_STOVE_NO";
- //
- // dataColumn43
- //
- this.dataColumn43.Caption = "产线";
- this.dataColumn43.ColumnName = "PLINE_CODE";
- //
- // dataColumn46
- //
- this.dataColumn46.Caption = "单倍长";
- this.dataColumn46.ColumnName = "DB_LENGTH";
- //
- // dataColumn50
- //
- this.dataColumn50.Caption = "钢种名称";
- this.dataColumn50.ColumnName = "GRADENAME";
- //
- // dataColumn53
- //
- this.dataColumn53.Caption = "单倍重";
- this.dataColumn53.ColumnName = "DB_HEIGHT";
- //
- // dataColumn57
- //
- this.dataColumn57.Caption = "熔炼炉号";
- this.dataColumn57.ColumnName = "STOVE_NO";
- //
- // dataColumn62
- //
- this.dataColumn62.Caption = "轧制长度";
- this.dataColumn62.ColumnName = "ROLL_LENGTH";
- //
- // dataColumn6
- //
- this.dataColumn6.Caption = "上料行";
- this.dataColumn6.ColumnName = "FEED_ROW_NO";
- //
- // dataColumn35
- //
- this.dataColumn35.Caption = "倍尺数";
- this.dataColumn35.ColumnName = "DB_NUM";
- //
- // dataColumn36
- //
- this.dataColumn36.Caption = "来料单支重量";
- this.dataColumn36.ColumnName = "MAT_HEIGHT";
- //
- // dataColumn37
- //
- this.dataColumn37.Caption = "来料总重量";
- this.dataColumn37.ColumnName = "MAT_TOTAL_HEIGHT";
- //
- // dataColumn38
- //
- this.dataColumn38.Caption = "上料支数";
- this.dataColumn38.ColumnName = "FEED_NUM";
- //
- // dataColumn39
- //
- this.dataColumn39.Caption = "上料长度";
- this.dataColumn39.ColumnName = "FEED_LENGTH";
- //
- // dataColumn40
- //
- this.dataColumn40.Caption = "断面";
- this.dataColumn40.ColumnName = "PIPE_SECTION";
- //
- // dataColumn44
- //
- this.dataColumn44.Caption = "上料炉号";
- this.dataColumn44.ColumnName = "FEED_HEAT_NO";
- //
- // dataColumn45
- //
- this.dataColumn45.Caption = "上料时间";
- this.dataColumn45.ColumnName = "CREATE_TIME";
- //
- // ultraTabSharedControlsPage1
- //
- this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(2);
- this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
- this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1024, 574);
- //
- // ultraTabControl1
- //
- this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
- this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
- this.ultraTabControl1.Margin = new System.Windows.Forms.Padding(2);
- this.ultraTabControl1.Name = "ultraTabControl1";
- this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
- this.ultraTabControl1.Size = new System.Drawing.Size(1028, 600);
- this.ultraTabControl1.TabIndex = 0;
- ultraTab1.TabPage = this.ultraTabPageControl1;
- ultraTab1.Text = "试轧料组炉管理";
- ultraTab2.TabPage = this.ultraTabPageControl2;
- ultraTab2.Text = "已组炉试轧料管理";
- this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab1,
- ultraTab2});
- this.ultraTabControl1.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.ultraTabControl1_SelectedTabChanged);
- //
- // dataColumn47
- //
- this.dataColumn47.Caption = "上料时间";
- this.dataColumn47.ColumnName = "START_TIME";
- //
- // matGpMEntityBindingSource
- //
- this.matGpMEntityBindingSource.DataSource = typeof(Core.StlMes.Client.ZGMil.Entity.MatGpMEntity);
- //
- // FrmTryRollingMaterial
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1028, 600);
- this.Controls.Add(this.ultraTabControl1);
- this.Margin = new System.Windows.Forms.Padding(2);
- this.Name = "FrmTryRollingMaterial";
- this.Text = "试轧料管理";
- this.Load += new System.EventHandler(this.FrmBackSlab_Load);
- this.ultraTabPageControl1.ResumeLayout(false);
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
- this.splitContainer1.ResumeLayout(false);
- this.tableLayoutPanel3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.chkNodeQuery)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtContratNo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
- this.ultraGroupBox3.ResumeLayout(false);
- this.ultraGroupBox3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtJudgeNo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkJudgeNo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.udtDate)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkDate)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkSection)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkLength)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkSteelName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkContractNo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSection)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtLength)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtSteelName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtContractNo)).EndInit();
- this.tableLayoutPanel4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ugbCol)).EndInit();
- this.ugbCol.ResumeLayout(false);
- this.ugbCol.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtZPPipeSize)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtZPJudgeNo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid_GHDL)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
- this.ultraTabPageControl2.ResumeLayout(false);
- this.splitContainer2.Panel1.ResumeLayout(false);
- this.splitContainer2.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
- this.splitContainer2.ResumeLayout(false);
- this.tableLayoutPanel6.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dtBackPlan)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).EndInit();
- this.ultraGroupBox5.ResumeLayout(false);
- this.ultraGroupBox5.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.chkIsStart)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkContractNo1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtLotNo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtJudgeStoveNo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtContractNo1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkJudgeNo1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.chkLotNo1)).EndInit();
- this.tableLayoutPanel5.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
- this.ultraGroupBox2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
- this.ultraGroupBox4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
- this.ultraTabControl1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.matGpMEntityBindingSource)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Data.DataSet dataSet1;
- private System.Data.DataTable dtContratNo;
- private System.Data.DataColumn dataColumn2;
- private System.Data.DataSet dataSet3;
- private System.Data.DataTable dataTable1;
- private System.Data.DataColumn dataColumn7;
- private System.Data.DataColumn dataColumn8;
- private System.Data.DataColumn dataColumn9;
- private System.Data.DataColumn dataColumn10;
- private System.Data.DataColumn dataColumn11;
- private System.Data.DataColumn dataColumn12;
- private System.Data.DataColumn dataColumn13;
- private System.Data.DataColumn dataColumn14;
- private System.Data.DataColumn dataColumn15;
- private System.Data.DataColumn dataColumn16;
- private System.Data.DataColumn dataColumn17;
- private System.Data.DataColumn dataColumn18;
- private System.Data.DataColumn dataColumn19;
- private System.Data.DataColumn dataColumn20;
- private System.Data.DataColumn dataColumn21;
- private System.Data.DataColumn dataColumn22;
- private System.Data.DataColumn dataColumn23;
- private System.Data.DataColumn dataColumn24;
- private System.Data.DataColumn dataColumn25;
- private System.Data.DataColumn dataColumn26;
- private System.Data.DataSet dataSet4;
- private System.Data.DataTable dtBackPlan;
- private System.Data.DataColumn dataColumn27;
- private System.Data.DataColumn dataColumn28;
- private System.Data.DataColumn dataColumn29;
- private System.Data.DataColumn dataColumn30;
- private System.Data.DataColumn dataColumn31;
- private System.Data.DataColumn dataColumn32;
- private System.Data.DataColumn dataColumn33;
- private System.Data.DataSet dataSet2;
- private System.Data.DataTable dataTable2;
- private System.Data.DataColumn dataColumn34;
- private System.Data.DataColumn dataColumn43;
- private System.Data.DataColumn dataColumn46;
- private System.Data.DataColumn dataColumn50;
- private System.Data.DataColumn dataColumn53;
- private System.Data.DataColumn dataColumn55;
- private System.Data.DataColumn dataColumn56;
- private System.Data.DataColumn dataColumn57;
- private System.Data.DataColumn dataColumn58;
- private System.Data.DataColumn dataColumn59;
- private System.Data.DataColumn dataColumn60;
- private System.Data.DataColumn dataColumn1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
- private System.Windows.Forms.SplitContainer splitContainer2;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel6;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel5;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
- private Infragistics.Win.Misc.UltraButton ultraButton1;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
- private System.Windows.Forms.SplitContainer splitContainer1;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
- private Infragistics.Win.UltraWinGrid.UltraGrid chkNodeQuery;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor udtDate;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkDate;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkSection;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkLength;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkSteelName;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkContractNo;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSection;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtLength;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtSteelName;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtContractNo;
- private Infragistics.Win.Misc.UltraButton btnQuery;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
- private Infragistics.Win.Misc.UltraGroupBox ugbCol;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtZPJudgeNo;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.Misc.UltraButton btnZP;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid_GHDL;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
- private System.Data.DataColumn dataColumn3;
- private System.Data.DataColumn dataColumn4;
- private System.Data.DataColumn dataColumn5;
- private System.Data.DataColumn dataColumn62;
- private System.Data.DataColumn dataColumn63;
- private System.Data.DataColumn dataColumn64;
- private System.Data.DataColumn dataColumn65;
- private System.Data.DataColumn dataColumn68;
- private System.Data.DataColumn dataColumn69;
- private System.Windows.Forms.BindingSource matGpMEntityBindingSource;
- private System.Data.DataColumn dataColumn70;
- private System.Data.DataColumn dataColumn71;
- private System.Data.DataColumn dataColumn72;
- private System.Data.DataTable dataTable3;
- private System.Data.DataColumn dataColumn73;
- private System.Data.DataColumn dataColumn74;
- private System.Data.DataColumn dataColumn75;
- private System.Data.DataColumn dataColumn76;
- private System.Data.DataColumn dataColumn77;
- private System.Data.DataColumn dataColumn78;
- private System.Data.DataColumn dataColumn79;
- private System.Data.DataColumn dataColumn80;
- private System.Data.DataColumn dataColumn81;
- private System.Data.DataColumn dataColumn82;
- private System.Data.DataColumn dataColumn83;
- private System.Data.DataColumn dataColumn84;
- private System.Data.DataColumn dataColumn85;
- private System.Data.DataColumn dataColumn86;
- private System.Data.DataColumn dataColumn87;
- private System.Data.DataColumn dataColumn88;
- private System.Data.DataColumn dataColumn89;
- private System.Data.DataColumn dataColumn90;
- private System.Data.DataColumn dataColumn91;
- private System.Data.DataColumn dataColumn92;
- private System.Data.DataColumn dataColumn93;
- private System.Data.DataColumn dataColumn94;
- private System.Data.DataColumn dataColumn95;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox5;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkIsStart;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkContractNo1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtLotNo;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtJudgeStoveNo;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtContractNo1;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkJudgeNo1;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkLotNo1;
- private Infragistics.Win.Misc.UltraButton ultraButton2;
- private System.Data.DataColumn dataColumn6;
- private System.Data.DataColumn dataColumn35;
- private System.Data.DataColumn dataColumn36;
- private System.Data.DataColumn dataColumn37;
- private System.Data.DataColumn dataColumn38;
- private System.Data.DataColumn dataColumn39;
- private System.Data.DataColumn dataColumn40;
- private System.Data.DataColumn dataColumn41;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtJudgeNo;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chkJudgeNo;
- private System.Data.DataColumn dataColumn42;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtZPPipeSize;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private System.Data.DataColumn dataColumn44;
- private System.Data.DataColumn dataColumn45;
- private System.Data.DataColumn dataColumn47;
- }
- }
|