| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827 |
- namespace Core.StlMes.Client.GlBusiness.Dialog
- {
- partial class FrmGlMoneyAsk
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmGlMoneyAsk));
- this.MSBox = new Infragistics.Win.UltraWinEditors.UltraOptionSet();
- this.buttonEsc = new Infragistics.Win.Misc.UltraButton();
- this.buttonCom = new Infragistics.Win.Misc.UltraButton();
- this.MS015Lab4 = new Infragistics.Win.Misc.UltraLabel();
- this.MS015Editor3 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS015Lab3 = new Infragistics.Win.Misc.UltraLabel();
- this.MS015Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS015Lab2 = new Infragistics.Win.Misc.UltraLabel();
- this.MS015Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS015Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS014Label2 = new Infragistics.Win.Misc.UltraLabel();
- this.MS014Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS014Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS013Lab4 = new Infragistics.Win.Misc.UltraLabel();
- this.MS013Editor3 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS013Lab3 = new Infragistics.Win.Misc.UltraLabel();
- this.MS013Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS013Label2 = new Infragistics.Win.Misc.UltraLabel();
- this.MS013Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS013Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS012Lab2 = new Infragistics.Win.Misc.UltraLabel();
- this.MS012Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS012Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS011Label6 = new Infragistics.Win.Misc.UltraLabel();
- this.MS011Editor5 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS011Lab5 = new Infragistics.Win.Misc.UltraLabel();
- this.MS011Editor4 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS011Lab4 = new Infragistics.Win.Misc.UltraLabel();
- this.MS011Editor3 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS011Lab3 = new Infragistics.Win.Misc.UltraLabel();
- this.MS011Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS011Label2 = new Infragistics.Win.Misc.UltraLabel();
- this.MS011Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS011Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS010Lab4 = new Infragistics.Win.Misc.UltraLabel();
- this.MS010Editor3 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS010Lab3 = new Infragistics.Win.Misc.UltraLabel();
- this.MS010Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS010Lab2 = new Infragistics.Win.Misc.UltraLabel();
- this.MS010Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS010Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS009Lab5 = new Infragistics.Win.Misc.UltraLabel();
- this.MS009Editor4 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS009Lab4 = new Infragistics.Win.Misc.UltraLabel();
- this.MS009Editor3 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS009Lab3 = new Infragistics.Win.Misc.UltraLabel();
- this.MS009Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS009Lab2 = new Infragistics.Win.Misc.UltraLabel();
- this.MS009Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS009Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS008Lab3 = new Infragistics.Win.Misc.UltraLabel();
- this.MS008Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS008Lab2 = new Infragistics.Win.Misc.UltraLabel();
- this.MS008Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS008Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS007Lab5 = new Infragistics.Win.Misc.UltraLabel();
- this.MS007Editor4 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS007Lab4 = new Infragistics.Win.Misc.UltraLabel();
- this.MS007Editor3 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS007Lab3 = new Infragistics.Win.Misc.UltraLabel();
- this.MS007Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS007Lab2 = new Infragistics.Win.Misc.UltraLabel();
- this.MS007Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS007Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS006Lab3 = new Infragistics.Win.Misc.UltraLabel();
- this.MS006Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS006Lab2 = new Infragistics.Win.Misc.UltraLabel();
- this.MS006Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS006Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS005Label5 = new Infragistics.Win.Misc.UltraLabel();
- this.MS005Editor4 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS005Lab4 = new Infragistics.Win.Misc.UltraLabel();
- this.MS005Editor3 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS005Lab3 = new Infragistics.Win.Misc.UltraLabel();
- this.MS005Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS005Lab2 = new Infragistics.Win.Misc.UltraLabel();
- this.MS005Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS005Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS004Lab3 = new Infragistics.Win.Misc.UltraLabel();
- this.MS004Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS004Lab2 = new Infragistics.Win.Misc.UltraLabel();
- this.MS004Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS004Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS003Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS002Lab2 = new Infragistics.Win.Misc.UltraLabel();
- this.MS002Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS002Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS001Lab = new Infragistics.Win.Misc.UltraLabel();
- this.MS016Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS017Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS018Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS018Lab2 = new Infragistics.Win.Misc.UltraLabel();
- this.MS018Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS018Lab3 = new Infragistics.Win.Misc.UltraLabel();
- this.MS018Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS018Lab4 = new Infragistics.Win.Misc.UltraLabel();
- this.MS019Lab1 = new Infragistics.Win.Misc.UltraLabel();
- this.MS019Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS019Lab2 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.txtMemo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
- this.MS018Lab0 = new Infragistics.Win.Misc.UltraLabel();
- this.MS018Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS011Lab0 = new Infragistics.Win.Misc.UltraLabel();
- this.MS011Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS010Lab0 = new Infragistics.Win.Misc.UltraLabel();
- this.MS010Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS009Lab0 = new Infragistics.Win.Misc.UltraLabel();
- this.MS009Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS008Lab0 = new Infragistics.Win.Misc.UltraLabel();
- this.MS008Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS007Lab0 = new Infragistics.Win.Misc.UltraLabel();
- this.MS007Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS006Lab0 = new Infragistics.Win.Misc.UltraLabel();
- this.MS006Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS005Lab0 = new Infragistics.Win.Misc.UltraLabel();
- this.MS005Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS004Lab0 = new Infragistics.Win.Misc.UltraLabel();
- this.MS004Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS003Lab0 = new Infragistics.Win.Misc.UltraLabel();
- this.MS003Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.MS002Lab0 = new Infragistics.Win.Misc.UltraLabel();
- this.MS002Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
- ((System.ComponentModel.ISupportInitialize)(this.MSBox)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS015Editor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS015Editor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS015Editor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS014Editor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS013Editor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS013Editor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS013Editor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS012Editor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS011Editor5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS011Editor4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS011Editor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS011Editor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS011Editor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS010Editor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS010Editor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS010Editor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS009Editor4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS009Editor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS009Editor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS009Editor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS008Editor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS008Editor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS007Editor4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS007Editor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS007Editor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS007Editor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS006Editor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS006Editor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS005Editor4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS005Editor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS005Editor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS005Editor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS004Editor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS004Editor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS002Editor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS018Editor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS018Editor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS019Editor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtMemo)).BeginInit();
- this.ultraPanel1.ClientArea.SuspendLayout();
- this.ultraPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.MS018Editor0)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS011Editor0)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS010Editor0)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS009Editor0)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS008Editor0)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS007Editor0)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS006Editor0)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS005Editor0)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS004Editor0)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS003Editor0)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS002Editor0)).BeginInit();
- this.SuspendLayout();
- //
- // MSBox
- //
- this.MSBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
- this.MSBox.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- valueListItem1.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem1.DataValue = "";
- valueListItem1.DisplayText = "";
- valueListItem2.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem2.DataValue = "";
- valueListItem3.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem3.DataValue = "";
- valueListItem3.DisplayText = "";
- valueListItem4.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem4.DataValue = "";
- valueListItem5.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem5.DataValue = "";
- valueListItem6.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem6.DataValue = "";
- valueListItem7.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem7.DataValue = "";
- valueListItem8.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem8.DataValue = "";
- valueListItem9.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem9.DataValue = "";
- valueListItem10.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem10.DataValue = "";
- valueListItem11.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem11.DataValue = "";
- valueListItem12.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem12.DataValue = "";
- valueListItem13.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem13.DataValue = "";
- valueListItem14.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem14.DataValue = "";
- valueListItem15.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem15.DataValue = "";
- valueListItem16.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem16.DataValue = "";
- valueListItem17.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem17.DataValue = "";
- valueListItem18.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem18.DataValue = "";
- valueListItem19.DataValue = "";
- valueListItem20.DataValue = "";
- valueListItem21.DataValue = "";
- valueListItem22.DataValue = "";
- valueListItem23.DataValue = "";
- valueListItem24.DataValue = "";
- valueListItem25.DataValue = "";
- this.MSBox.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem1,
- valueListItem2,
- valueListItem3,
- valueListItem4,
- valueListItem5,
- valueListItem6,
- valueListItem7,
- valueListItem8,
- valueListItem9,
- valueListItem10,
- valueListItem11,
- valueListItem12,
- valueListItem13,
- valueListItem14,
- valueListItem15,
- valueListItem16,
- valueListItem17,
- valueListItem18,
- valueListItem19,
- valueListItem20,
- valueListItem21,
- valueListItem22,
- valueListItem23,
- valueListItem24,
- valueListItem25});
- this.MSBox.ItemSpacingVertical = 12;
- this.MSBox.Location = new System.Drawing.Point(11, 6);
- this.MSBox.Name = "MSBox";
- this.MSBox.Size = new System.Drawing.Size(22, 621);
- this.MSBox.TabIndex = 1;
- this.MSBox.ValueChanged += new System.EventHandler(this.MSBox_ValueChanged);
- this.MSBox.MouseCaptureChanged += new System.EventHandler(this.MSBox_MouseCaptureChanged);
- //
- // buttonEsc
- //
- this.buttonEsc.Location = new System.Drawing.Point(784, 596);
- this.buttonEsc.Name = "buttonEsc";
- this.buttonEsc.Size = new System.Drawing.Size(75, 37);
- this.buttonEsc.TabIndex = 172;
- this.buttonEsc.Text = "关闭";
- this.buttonEsc.Click += new System.EventHandler(this.ultraButtonClose_Click);
- //
- // buttonCom
- //
- this.buttonCom.Location = new System.Drawing.Point(710, 596);
- this.buttonCom.Name = "buttonCom";
- this.buttonCom.Size = new System.Drawing.Size(75, 37);
- this.buttonCom.TabIndex = 171;
- this.buttonCom.Text = "确定";
- this.buttonCom.Click += new System.EventHandler(this.ultraButtonCom_Click);
- //
- // MS015Lab4
- //
- this.MS015Lab4.AutoSize = true;
- this.MS015Lab4.Location = new System.Drawing.Point(416, 363);
- this.MS015Lab4.Name = "MS015Lab4";
- this.MS015Lab4.Size = new System.Drawing.Size(29, 16);
- this.MS015Lab4.TabIndex = 257;
- this.MS015Lab4.Text = "月。";
- //
- // MS015Editor3
- //
- this.MS015Editor3.Location = new System.Drawing.Point(377, 359);
- this.MS015Editor3.MaskInput = "nn";
- this.MS015Editor3.Name = "MS015Editor3";
- this.MS015Editor3.Nullable = true;
- this.MS015Editor3.Size = new System.Drawing.Size(35, 21);
- this.MS015Editor3.TabIndex = 35;
- //
- // MS015Lab3
- //
- this.MS015Lab3.AutoSize = true;
- this.MS015Lab3.Location = new System.Drawing.Point(278, 363);
- this.MS015Lab3.Name = "MS015Lab3";
- this.MS015Lab3.Size = new System.Drawing.Size(103, 16);
- this.MS015Lab3.TabIndex = 255;
- this.MS015Lab3.Text = "为质保金,质保期";
- //
- // MS015Editor2
- //
- this.MS015Editor2.Location = new System.Drawing.Point(242, 359);
- this.MS015Editor2.MaskInput = "nn";
- this.MS015Editor2.Name = "MS015Editor2";
- this.MS015Editor2.Nullable = true;
- this.MS015Editor2.Size = new System.Drawing.Size(35, 21);
- this.MS015Editor2.TabIndex = 34;
- //
- // MS015Lab2
- //
- this.MS015Lab2.AutoSize = true;
- this.MS015Lab2.Location = new System.Drawing.Point(141, 363);
- this.MS015Lab2.Name = "MS015Lab2";
- this.MS015Lab2.Size = new System.Drawing.Size(103, 16);
- this.MS015Lab2.TabIndex = 253;
- this.MS015Lab2.Text = "天。其中合同总价";
- //
- // MS015Editor1
- //
- this.MS015Editor1.Location = new System.Drawing.Point(103, 359);
- this.MS015Editor1.MaskInput = "nn";
- this.MS015Editor1.Name = "MS015Editor1";
- this.MS015Editor1.Nullable = true;
- this.MS015Editor1.Size = new System.Drawing.Size(35, 21);
- this.MS015Editor1.TabIndex = 33;
- //
- // MS015Lab1
- //
- this.MS015Lab1.AutoSize = true;
- this.MS015Lab1.Location = new System.Drawing.Point(39, 363);
- this.MS015Lab1.Name = "MS015Lab1";
- this.MS015Lab1.Size = new System.Drawing.Size(66, 16);
- this.MS015Lab1.TabIndex = 251;
- this.MS015Lab1.Text = "发票开出后";
- //
- // MS014Label2
- //
- this.MS014Label2.AutoSize = true;
- this.MS014Label2.Location = new System.Drawing.Point(141, 338);
- this.MS014Label2.Name = "MS014Label2";
- this.MS014Label2.Size = new System.Drawing.Size(54, 16);
- this.MS014Label2.TabIndex = 250;
- this.MS014Label2.Text = "天付款。";
- //
- // MS014Editor1
- //
- this.MS014Editor1.Location = new System.Drawing.Point(103, 334);
- this.MS014Editor1.MaskInput = "nn";
- this.MS014Editor1.Name = "MS014Editor1";
- this.MS014Editor1.Nullable = true;
- this.MS014Editor1.Size = new System.Drawing.Size(35, 21);
- this.MS014Editor1.TabIndex = 32;
- //
- // MS014Lab1
- //
- this.MS014Lab1.AutoSize = true;
- this.MS014Lab1.Location = new System.Drawing.Point(39, 338);
- this.MS014Lab1.Name = "MS014Lab1";
- this.MS014Lab1.Size = new System.Drawing.Size(66, 16);
- this.MS014Lab1.TabIndex = 248;
- this.MS014Lab1.Text = "发票开出后";
- //
- // MS013Lab4
- //
- this.MS013Lab4.AutoSize = true;
- this.MS013Lab4.Location = new System.Drawing.Point(440, 313);
- this.MS013Lab4.Name = "MS013Lab4";
- this.MS013Lab4.Size = new System.Drawing.Size(29, 16);
- this.MS013Lab4.TabIndex = 247;
- this.MS013Lab4.Text = "月。";
- //
- // MS013Editor3
- //
- this.MS013Editor3.Location = new System.Drawing.Point(402, 309);
- this.MS013Editor3.MaskInput = "nn";
- this.MS013Editor3.Name = "MS013Editor3";
- this.MS013Editor3.Nullable = true;
- this.MS013Editor3.Size = new System.Drawing.Size(35, 21);
- this.MS013Editor3.TabIndex = 31;
- //
- // MS013Lab3
- //
- this.MS013Lab3.AutoSize = true;
- this.MS013Lab3.Location = new System.Drawing.Point(302, 313);
- this.MS013Lab3.Name = "MS013Lab3";
- this.MS013Lab3.Size = new System.Drawing.Size(103, 16);
- this.MS013Lab3.TabIndex = 245;
- this.MS013Lab3.Text = "为质保金,质保期";
- //
- // MS013Editor2
- //
- this.MS013Editor2.Location = new System.Drawing.Point(266, 309);
- this.MS013Editor2.MaskInput = "nn";
- this.MS013Editor2.Name = "MS013Editor2";
- this.MS013Editor2.Nullable = true;
- this.MS013Editor2.Size = new System.Drawing.Size(35, 21);
- this.MS013Editor2.TabIndex = 30;
- //
- // MS013Label2
- //
- this.MS013Label2.AutoSize = true;
- this.MS013Label2.Location = new System.Drawing.Point(105, 313);
- this.MS013Label2.Name = "MS013Label2";
- this.MS013Label2.Size = new System.Drawing.Size(165, 16);
- this.MS013Label2.TabIndex = 243;
- this.MS013Label2.Text = "工作日后付款。其中合同总价";
- //
- // MS013Editor1
- //
- this.MS013Editor1.Location = new System.Drawing.Point(67, 309);
- this.MS013Editor1.MaskInput = "nn";
- this.MS013Editor1.Name = "MS013Editor1";
- this.MS013Editor1.Nullable = true;
- this.MS013Editor1.Size = new System.Drawing.Size(35, 21);
- this.MS013Editor1.TabIndex = 29;
- //
- // MS013Lab1
- //
- this.MS013Lab1.AutoSize = true;
- this.MS013Lab1.Location = new System.Drawing.Point(39, 313);
- this.MS013Lab1.Name = "MS013Lab1";
- this.MS013Lab1.Size = new System.Drawing.Size(29, 16);
- this.MS013Lab1.TabIndex = 241;
- this.MS013Lab1.Text = "货到";
- //
- // MS012Lab2
- //
- this.MS012Lab2.AutoSize = true;
- this.MS012Lab2.Location = new System.Drawing.Point(107, 288);
- this.MS012Lab2.Name = "MS012Lab2";
- this.MS012Lab2.Size = new System.Drawing.Size(91, 16);
- this.MS012Lab2.TabIndex = 240;
- this.MS012Lab2.Text = "工作日后付款。";
- //
- // MS012Editor1
- //
- this.MS012Editor1.Location = new System.Drawing.Point(67, 284);
- this.MS012Editor1.MaskInput = "nn";
- this.MS012Editor1.Name = "MS012Editor1";
- this.MS012Editor1.Nullable = true;
- this.MS012Editor1.Size = new System.Drawing.Size(35, 21);
- this.MS012Editor1.TabIndex = 28;
- //
- // MS012Lab1
- //
- this.MS012Lab1.AutoSize = true;
- this.MS012Lab1.Location = new System.Drawing.Point(39, 288);
- this.MS012Lab1.Name = "MS012Lab1";
- this.MS012Lab1.Size = new System.Drawing.Size(29, 16);
- this.MS012Lab1.TabIndex = 238;
- this.MS012Lab1.Text = "货到";
- //
- // MS011Label6
- //
- this.MS011Label6.AutoSize = true;
- this.MS011Label6.Location = new System.Drawing.Point(925, 263);
- this.MS011Label6.Name = "MS011Label6";
- this.MS011Label6.Size = new System.Drawing.Size(29, 16);
- this.MS011Label6.TabIndex = 237;
- this.MS011Label6.Text = "月。";
- //
- // MS011Editor5
- //
- this.MS011Editor5.Location = new System.Drawing.Point(888, 259);
- this.MS011Editor5.MaskInput = "nn";
- this.MS011Editor5.Name = "MS011Editor5";
- this.MS011Editor5.Nullable = true;
- this.MS011Editor5.Size = new System.Drawing.Size(35, 21);
- this.MS011Editor5.TabIndex = 27;
- //
- // MS011Lab5
- //
- this.MS011Lab5.AutoSize = true;
- this.MS011Lab5.Location = new System.Drawing.Point(783, 263);
- this.MS011Lab5.Name = "MS011Lab5";
- this.MS011Lab5.Size = new System.Drawing.Size(110, 16);
- this.MS011Lab5.TabIndex = 235;
- this.MS011Lab5.Text = "%为质保金,质保期";
- //
- // MS011Editor4
- //
- this.MS011Editor4.Location = new System.Drawing.Point(747, 259);
- this.MS011Editor4.MaskInput = "nnn";
- this.MS011Editor4.MaxValue = 100;
- this.MS011Editor4.Name = "MS011Editor4";
- this.MS011Editor4.Nullable = true;
- this.MS011Editor4.Size = new System.Drawing.Size(35, 21);
- this.MS011Editor4.TabIndex = 26;
- //
- // MS011Lab4
- //
- this.MS011Lab4.AutoSize = true;
- this.MS011Lab4.Location = new System.Drawing.Point(623, 263);
- this.MS011Lab4.Name = "MS011Lab4";
- this.MS011Lab4.Size = new System.Drawing.Size(128, 16);
- this.MS011Lab4.TabIndex = 233;
- this.MS011Lab4.Text = "天付清。其中合同总价";
- //
- // MS011Editor3
- //
- this.MS011Editor3.Location = new System.Drawing.Point(585, 259);
- this.MS011Editor3.MaskInput = "nnn";
- this.MS011Editor3.Name = "MS011Editor3";
- this.MS011Editor3.Nullable = true;
- this.MS011Editor3.Size = new System.Drawing.Size(35, 21);
- this.MS011Editor3.TabIndex = 25;
- //
- // MS011Lab3
- //
- this.MS011Lab3.AutoSize = true;
- this.MS011Lab3.Location = new System.Drawing.Point(417, 263);
- this.MS011Lab3.Name = "MS011Lab3";
- this.MS011Lab3.Size = new System.Drawing.Size(171, 16);
- this.MS011Lab3.TabIndex = 231;
- this.MS011Lab3.Text = "%后发运,剩余货款发票开出后";
- //
- // MS011Editor2
- //
- this.MS011Editor2.Location = new System.Drawing.Point(381, 259);
- this.MS011Editor2.MaskInput = "nnn";
- this.MS011Editor2.MaxValue = 100;
- this.MS011Editor2.Name = "MS011Editor2";
- this.MS011Editor2.Nullable = true;
- this.MS011Editor2.Size = new System.Drawing.Size(35, 21);
- this.MS011Editor2.TabIndex = 24;
- //
- // MS011Label2
- //
- this.MS011Label2.AutoSize = true;
- this.MS011Label2.Location = new System.Drawing.Point(287, 263);
- this.MS011Label2.Name = "MS011Label2";
- this.MS011Label2.Size = new System.Drawing.Size(97, 16);
- this.MS011Label2.TabIndex = 229;
- this.MS011Label2.Text = "%排产,支付余款";
- //
- // MS011Editor1
- //
- this.MS011Editor1.Location = new System.Drawing.Point(249, 259);
- this.MS011Editor1.MaskInput = "nnn";
- this.MS011Editor1.MaxValue = 100;
- this.MS011Editor1.Name = "MS011Editor1";
- this.MS011Editor1.Nullable = true;
- this.MS011Editor1.Size = new System.Drawing.Size(35, 21);
- this.MS011Editor1.TabIndex = 23;
- //
- // MS011Lab1
- //
- this.MS011Lab1.AutoSize = true;
- this.MS011Lab1.Location = new System.Drawing.Point(133, 263);
- this.MS011Lab1.Name = "MS011Lab1";
- this.MS011Lab1.Size = new System.Drawing.Size(116, 16);
- this.MS011Lab1.TabIndex = 227;
- this.MS011Lab1.Text = "日内,预付合同总价";
- //
- // MS010Lab4
- //
- this.MS010Lab4.AutoSize = true;
- this.MS010Lab4.Location = new System.Drawing.Point(623, 239);
- this.MS010Lab4.Name = "MS010Lab4";
- this.MS010Lab4.Size = new System.Drawing.Size(54, 16);
- this.MS010Lab4.TabIndex = 226;
- this.MS010Lab4.Text = "天付清。";
- //
- // MS010Editor3
- //
- this.MS010Editor3.Location = new System.Drawing.Point(585, 235);
- this.MS010Editor3.MaskInput = "nnn";
- this.MS010Editor3.Name = "MS010Editor3";
- this.MS010Editor3.Nullable = true;
- this.MS010Editor3.Size = new System.Drawing.Size(35, 21);
- this.MS010Editor3.TabIndex = 22;
- //
- // MS010Lab3
- //
- this.MS010Lab3.AutoSize = true;
- this.MS010Lab3.Location = new System.Drawing.Point(417, 239);
- this.MS010Lab3.Name = "MS010Lab3";
- this.MS010Lab3.Size = new System.Drawing.Size(171, 16);
- this.MS010Lab3.TabIndex = 224;
- this.MS010Lab3.Text = "%后发运,剩余货款发票开出后";
- //
- // MS010Editor2
- //
- this.MS010Editor2.Location = new System.Drawing.Point(381, 235);
- this.MS010Editor2.MaskInput = "nnn";
- this.MS010Editor2.MaxValue = 100;
- this.MS010Editor2.Name = "MS010Editor2";
- this.MS010Editor2.Nullable = true;
- this.MS010Editor2.Size = new System.Drawing.Size(35, 21);
- this.MS010Editor2.TabIndex = 21;
- //
- // MS010Lab2
- //
- this.MS010Lab2.AutoSize = true;
- this.MS010Lab2.Location = new System.Drawing.Point(287, 239);
- this.MS010Lab2.Name = "MS010Lab2";
- this.MS010Lab2.Size = new System.Drawing.Size(97, 16);
- this.MS010Lab2.TabIndex = 222;
- this.MS010Lab2.Text = "%排产,支付余款";
- //
- // MS010Editor1
- //
- this.MS010Editor1.Location = new System.Drawing.Point(249, 235);
- this.MS010Editor1.MaskInput = "nnn";
- this.MS010Editor1.MaxValue = 100;
- this.MS010Editor1.MinValue = 0;
- this.MS010Editor1.Name = "MS010Editor1";
- this.MS010Editor1.Nullable = true;
- this.MS010Editor1.Size = new System.Drawing.Size(35, 21);
- this.MS010Editor1.TabIndex = 20;
- //
- // MS010Lab1
- //
- this.MS010Lab1.AutoSize = true;
- this.MS010Lab1.Location = new System.Drawing.Point(133, 239);
- this.MS010Lab1.Name = "MS010Lab1";
- this.MS010Lab1.Size = new System.Drawing.Size(116, 16);
- this.MS010Lab1.TabIndex = 220;
- this.MS010Lab1.Text = "日内,预付合同总价";
- //
- // MS009Lab5
- //
- this.MS009Lab5.AutoSize = true;
- this.MS009Lab5.Location = new System.Drawing.Point(768, 213);
- this.MS009Lab5.Name = "MS009Lab5";
- this.MS009Lab5.Size = new System.Drawing.Size(29, 16);
- this.MS009Lab5.TabIndex = 219;
- this.MS009Lab5.Text = "月。";
- //
- // MS009Editor4
- //
- this.MS009Editor4.Location = new System.Drawing.Point(730, 209);
- this.MS009Editor4.MaskInput = "nn";
- this.MS009Editor4.Name = "MS009Editor4";
- this.MS009Editor4.Nullable = true;
- this.MS009Editor4.Size = new System.Drawing.Size(35, 21);
- this.MS009Editor4.TabIndex = 19;
- //
- // MS009Lab4
- //
- this.MS009Lab4.AutoSize = true;
- this.MS009Lab4.Location = new System.Drawing.Point(623, 213);
- this.MS009Lab4.Name = "MS009Lab4";
- this.MS009Lab4.Size = new System.Drawing.Size(110, 16);
- this.MS009Lab4.TabIndex = 217;
- this.MS009Lab4.Text = "%为质保金,质保期";
- //
- // MS009Editor3
- //
- this.MS009Editor3.Location = new System.Drawing.Point(585, 209);
- this.MS009Editor3.MaskInput = "nnn";
- this.MS009Editor3.MaxValue = 100;
- this.MS009Editor3.Name = "MS009Editor3";
- this.MS009Editor3.Nullable = true;
- this.MS009Editor3.Size = new System.Drawing.Size(35, 21);
- this.MS009Editor3.TabIndex = 18;
- //
- // MS009Lab3
- //
- this.MS009Lab3.AutoSize = true;
- this.MS009Lab3.Location = new System.Drawing.Point(460, 213);
- this.MS009Lab3.Name = "MS009Lab3";
- this.MS009Lab3.Size = new System.Drawing.Size(128, 16);
- this.MS009Lab3.TabIndex = 215;
- this.MS009Lab3.Text = "天付款。其中合同总价";
- //
- // MS009Editor2
- //
- this.MS009Editor2.Location = new System.Drawing.Point(422, 209);
- this.MS009Editor2.MaskInput = "nnn";
- this.MS009Editor2.Name = "MS009Editor2";
- this.MS009Editor2.Nullable = true;
- this.MS009Editor2.Size = new System.Drawing.Size(35, 21);
- this.MS009Editor2.TabIndex = 17;
- //
- // MS009Lab2
- //
- this.MS009Lab2.AutoSize = true;
- this.MS009Lab2.Location = new System.Drawing.Point(287, 213);
- this.MS009Lab2.Name = "MS009Lab2";
- this.MS009Lab2.Size = new System.Drawing.Size(134, 16);
- this.MS009Lab2.TabIndex = 213;
- this.MS009Lab2.Text = "%发货,余款发票开出后";
- //
- // MS009Editor1
- //
- this.MS009Editor1.Location = new System.Drawing.Point(249, 209);
- this.MS009Editor1.MaskInput = "nnn";
- this.MS009Editor1.MaxValue = 100;
- this.MS009Editor1.Name = "MS009Editor1";
- this.MS009Editor1.Nullable = true;
- this.MS009Editor1.Size = new System.Drawing.Size(35, 21);
- this.MS009Editor1.TabIndex = 16;
- //
- // MS009Lab1
- //
- this.MS009Lab1.AutoSize = true;
- this.MS009Lab1.Location = new System.Drawing.Point(133, 213);
- this.MS009Lab1.Name = "MS009Lab1";
- this.MS009Lab1.Size = new System.Drawing.Size(116, 16);
- this.MS009Lab1.TabIndex = 211;
- this.MS009Lab1.Text = "日内,支付合同总价";
- //
- // MS008Lab3
- //
- this.MS008Lab3.AutoSize = true;
- this.MS008Lab3.Location = new System.Drawing.Point(460, 188);
- this.MS008Lab3.Name = "MS008Lab3";
- this.MS008Lab3.Size = new System.Drawing.Size(54, 16);
- this.MS008Lab3.TabIndex = 210;
- this.MS008Lab3.Text = "天付款。";
- //
- // MS008Editor2
- //
- this.MS008Editor2.Location = new System.Drawing.Point(422, 184);
- this.MS008Editor2.MaskInput = "nnn";
- this.MS008Editor2.Name = "MS008Editor2";
- this.MS008Editor2.Nullable = true;
- this.MS008Editor2.Size = new System.Drawing.Size(35, 21);
- this.MS008Editor2.TabIndex = 15;
- //
- // MS008Lab2
- //
- this.MS008Lab2.AutoSize = true;
- this.MS008Lab2.Location = new System.Drawing.Point(287, 188);
- this.MS008Lab2.Name = "MS008Lab2";
- this.MS008Lab2.Size = new System.Drawing.Size(134, 16);
- this.MS008Lab2.TabIndex = 208;
- this.MS008Lab2.Text = "%发货,余款发票开出后";
- //
- // MS008Editor1
- //
- this.MS008Editor1.Location = new System.Drawing.Point(249, 184);
- this.MS008Editor1.MaskInput = "nnn";
- this.MS008Editor1.MaxValue = 100;
- this.MS008Editor1.Name = "MS008Editor1";
- this.MS008Editor1.Nullable = true;
- this.MS008Editor1.Size = new System.Drawing.Size(35, 21);
- this.MS008Editor1.TabIndex = 14;
- //
- // MS008Lab1
- //
- this.MS008Lab1.AutoSize = true;
- this.MS008Lab1.Location = new System.Drawing.Point(133, 188);
- this.MS008Lab1.Name = "MS008Lab1";
- this.MS008Lab1.Size = new System.Drawing.Size(116, 16);
- this.MS008Lab1.TabIndex = 206;
- this.MS008Lab1.Text = "日内,支付合同总价";
- //
- // MS007Lab5
- //
- this.MS007Lab5.AutoSize = true;
- this.MS007Lab5.Location = new System.Drawing.Point(768, 163);
- this.MS007Lab5.Name = "MS007Lab5";
- this.MS007Lab5.Size = new System.Drawing.Size(29, 16);
- this.MS007Lab5.TabIndex = 205;
- this.MS007Lab5.Text = "月。";
- //
- // MS007Editor4
- //
- this.MS007Editor4.Location = new System.Drawing.Point(730, 159);
- this.MS007Editor4.MaskInput = "nn";
- this.MS007Editor4.Name = "MS007Editor4";
- this.MS007Editor4.Nullable = true;
- this.MS007Editor4.Size = new System.Drawing.Size(35, 21);
- this.MS007Editor4.TabIndex = 13;
- //
- // MS007Lab4
- //
- this.MS007Lab4.AutoSize = true;
- this.MS007Lab4.Location = new System.Drawing.Point(623, 163);
- this.MS007Lab4.Name = "MS007Lab4";
- this.MS007Lab4.Size = new System.Drawing.Size(110, 16);
- this.MS007Lab4.TabIndex = 203;
- this.MS007Lab4.Text = "%为质保金,质保期";
- //
- // MS007Editor3
- //
- this.MS007Editor3.Location = new System.Drawing.Point(585, 159);
- this.MS007Editor3.MaskInput = "nnn";
- this.MS007Editor3.MaxValue = 100;
- this.MS007Editor3.Name = "MS007Editor3";
- this.MS007Editor3.Nullable = true;
- this.MS007Editor3.Size = new System.Drawing.Size(35, 21);
- this.MS007Editor3.TabIndex = 12;
- //
- // MS007Lab3
- //
- this.MS007Lab3.AutoSize = true;
- this.MS007Lab3.Location = new System.Drawing.Point(460, 163);
- this.MS007Lab3.Name = "MS007Lab3";
- this.MS007Lab3.Size = new System.Drawing.Size(128, 16);
- this.MS007Lab3.TabIndex = 201;
- this.MS007Lab3.Text = "天付款。其中合同总价";
- //
- // MS007Editor2
- //
- this.MS007Editor2.Location = new System.Drawing.Point(422, 159);
- this.MS007Editor2.MaskInput = "nnn";
- this.MS007Editor2.Name = "MS007Editor2";
- this.MS007Editor2.Nullable = true;
- this.MS007Editor2.Size = new System.Drawing.Size(35, 21);
- this.MS007Editor2.TabIndex = 11;
- //
- // MS007Lab2
- //
- this.MS007Lab2.AutoSize = true;
- this.MS007Lab2.Location = new System.Drawing.Point(287, 163);
- this.MS007Lab2.Name = "MS007Lab2";
- this.MS007Lab2.Size = new System.Drawing.Size(134, 16);
- this.MS007Lab2.TabIndex = 199;
- this.MS007Lab2.Text = "%发货,余款货物交齐后";
- //
- // MS007Editor1
- //
- this.MS007Editor1.Location = new System.Drawing.Point(249, 159);
- this.MS007Editor1.MaskInput = "nnn";
- this.MS007Editor1.MaxValue = 100;
- this.MS007Editor1.Name = "MS007Editor1";
- this.MS007Editor1.Nullable = true;
- this.MS007Editor1.Size = new System.Drawing.Size(35, 21);
- this.MS007Editor1.TabIndex = 10;
- //
- // MS007Lab1
- //
- this.MS007Lab1.AutoSize = true;
- this.MS007Lab1.Location = new System.Drawing.Point(133, 163);
- this.MS007Lab1.Name = "MS007Lab1";
- this.MS007Lab1.Size = new System.Drawing.Size(116, 16);
- this.MS007Lab1.TabIndex = 197;
- this.MS007Lab1.Text = "日内,支付合同总价";
- //
- // MS006Lab3
- //
- this.MS006Lab3.AutoSize = true;
- this.MS006Lab3.Location = new System.Drawing.Point(460, 138);
- this.MS006Lab3.Name = "MS006Lab3";
- this.MS006Lab3.Size = new System.Drawing.Size(54, 16);
- this.MS006Lab3.TabIndex = 196;
- this.MS006Lab3.Text = "天付清。";
- //
- // MS006Editor2
- //
- this.MS006Editor2.Location = new System.Drawing.Point(422, 134);
- this.MS006Editor2.MaskInput = "nnn";
- this.MS006Editor2.Name = "MS006Editor2";
- this.MS006Editor2.Nullable = true;
- this.MS006Editor2.Size = new System.Drawing.Size(35, 21);
- this.MS006Editor2.TabIndex = 9;
- //
- // MS006Lab2
- //
- this.MS006Lab2.AutoSize = true;
- this.MS006Lab2.Location = new System.Drawing.Point(287, 138);
- this.MS006Lab2.Name = "MS006Lab2";
- this.MS006Lab2.Size = new System.Drawing.Size(134, 16);
- this.MS006Lab2.TabIndex = 194;
- this.MS006Lab2.Text = "%发货,余款货物发运后";
- //
- // MS006Editor1
- //
- this.MS006Editor1.Location = new System.Drawing.Point(249, 134);
- this.MS006Editor1.MaskInput = "nnn";
- this.MS006Editor1.MaxValue = 100;
- this.MS006Editor1.Name = "MS006Editor1";
- this.MS006Editor1.Nullable = true;
- this.MS006Editor1.Size = new System.Drawing.Size(35, 21);
- this.MS006Editor1.TabIndex = 8;
- //
- // MS006Lab1
- //
- this.MS006Lab1.AutoSize = true;
- this.MS006Lab1.Location = new System.Drawing.Point(133, 138);
- this.MS006Lab1.Name = "MS006Lab1";
- this.MS006Lab1.Size = new System.Drawing.Size(116, 16);
- this.MS006Lab1.TabIndex = 192;
- this.MS006Lab1.Text = "日内,支付合同总价";
- //
- // MS005Label5
- //
- this.MS005Label5.AutoSize = true;
- this.MS005Label5.Location = new System.Drawing.Point(768, 113);
- this.MS005Label5.Name = "MS005Label5";
- this.MS005Label5.Size = new System.Drawing.Size(29, 16);
- this.MS005Label5.TabIndex = 191;
- this.MS005Label5.Text = "月。";
- //
- // MS005Editor4
- //
- this.MS005Editor4.Location = new System.Drawing.Point(730, 109);
- this.MS005Editor4.MaskInput = "nn";
- this.MS005Editor4.Name = "MS005Editor4";
- this.MS005Editor4.Nullable = true;
- this.MS005Editor4.Size = new System.Drawing.Size(35, 21);
- this.MS005Editor4.TabIndex = 7;
- //
- // MS005Lab4
- //
- this.MS005Lab4.AutoSize = true;
- this.MS005Lab4.Location = new System.Drawing.Point(623, 113);
- this.MS005Lab4.Name = "MS005Lab4";
- this.MS005Lab4.Size = new System.Drawing.Size(110, 16);
- this.MS005Lab4.TabIndex = 189;
- this.MS005Lab4.Text = "%为质保金,质保期";
- //
- // MS005Editor3
- //
- this.MS005Editor3.Location = new System.Drawing.Point(585, 109);
- this.MS005Editor3.MaskInput = "nnn";
- this.MS005Editor3.MaxValue = 100;
- this.MS005Editor3.MinValue = 0;
- this.MS005Editor3.Name = "MS005Editor3";
- this.MS005Editor3.Nullable = true;
- this.MS005Editor3.Size = new System.Drawing.Size(35, 21);
- this.MS005Editor3.TabIndex = 6;
- //
- // MS005Lab3
- //
- this.MS005Lab3.AutoSize = true;
- this.MS005Lab3.Location = new System.Drawing.Point(460, 113);
- this.MS005Lab3.Name = "MS005Lab3";
- this.MS005Lab3.Size = new System.Drawing.Size(128, 16);
- this.MS005Lab3.TabIndex = 187;
- this.MS005Lab3.Text = "天付款。其中合同总价";
- //
- // MS005Editor2
- //
- this.MS005Editor2.Location = new System.Drawing.Point(422, 109);
- this.MS005Editor2.MaskInput = "nnn";
- this.MS005Editor2.Name = "MS005Editor2";
- this.MS005Editor2.Nullable = true;
- this.MS005Editor2.Size = new System.Drawing.Size(35, 21);
- this.MS005Editor2.TabIndex = 5;
- //
- // MS005Lab2
- //
- this.MS005Lab2.AutoSize = true;
- this.MS005Lab2.Location = new System.Drawing.Point(287, 113);
- this.MS005Lab2.Name = "MS005Lab2";
- this.MS005Lab2.Size = new System.Drawing.Size(134, 16);
- this.MS005Lab2.TabIndex = 185;
- this.MS005Lab2.Text = "%发货,余款货物发运后";
- //
- // MS005Editor1
- //
- this.MS005Editor1.Location = new System.Drawing.Point(249, 109);
- this.MS005Editor1.MaskInput = "nnn";
- this.MS005Editor1.MaxValue = 100;
- this.MS005Editor1.Name = "MS005Editor1";
- this.MS005Editor1.Nullable = true;
- this.MS005Editor1.Size = new System.Drawing.Size(35, 21);
- this.MS005Editor1.TabIndex = 4;
- //
- // MS005Lab1
- //
- this.MS005Lab1.AutoSize = true;
- this.MS005Lab1.Location = new System.Drawing.Point(133, 113);
- this.MS005Lab1.Name = "MS005Lab1";
- this.MS005Lab1.Size = new System.Drawing.Size(116, 16);
- this.MS005Lab1.TabIndex = 183;
- this.MS005Lab1.Text = "日内,支付合同总价";
- //
- // MS004Lab3
- //
- this.MS004Lab3.AutoSize = true;
- this.MS004Lab3.Location = new System.Drawing.Point(460, 88);
- this.MS004Lab3.Name = "MS004Lab3";
- this.MS004Lab3.Size = new System.Drawing.Size(54, 16);
- this.MS004Lab3.TabIndex = 182;
- this.MS004Lab3.Text = "天付款。";
- //
- // MS004Editor2
- //
- this.MS004Editor2.Location = new System.Drawing.Point(422, 84);
- this.MS004Editor2.MaskInput = "nnn";
- this.MS004Editor2.Name = "MS004Editor2";
- this.MS004Editor2.Nullable = true;
- this.MS004Editor2.Size = new System.Drawing.Size(35, 21);
- this.MS004Editor2.TabIndex = 3;
- //
- // MS004Lab2
- //
- this.MS004Lab2.AutoSize = true;
- this.MS004Lab2.Location = new System.Drawing.Point(287, 88);
- this.MS004Lab2.Name = "MS004Lab2";
- this.MS004Lab2.Size = new System.Drawing.Size(134, 16);
- this.MS004Lab2.TabIndex = 180;
- this.MS004Lab2.Text = "%发货,余款货物发运后";
- //
- // MS004Editor1
- //
- this.MS004Editor1.Location = new System.Drawing.Point(249, 84);
- this.MS004Editor1.MaskInput = "nnn";
- this.MS004Editor1.MaxValue = 100;
- this.MS004Editor1.Name = "MS004Editor1";
- this.MS004Editor1.Nullable = true;
- this.MS004Editor1.Size = new System.Drawing.Size(35, 21);
- this.MS004Editor1.TabIndex = 2;
- //
- // MS004Lab1
- //
- this.MS004Lab1.AutoSize = true;
- this.MS004Lab1.Location = new System.Drawing.Point(133, 88);
- this.MS004Lab1.Name = "MS004Lab1";
- this.MS004Lab1.Size = new System.Drawing.Size(116, 16);
- this.MS004Lab1.TabIndex = 178;
- this.MS004Lab1.Text = "日内,支付合同总价";
- //
- // MS003Lab1
- //
- this.MS003Lab1.AutoSize = true;
- this.MS003Lab1.Location = new System.Drawing.Point(133, 64);
- this.MS003Lab1.Name = "MS003Lab1";
- this.MS003Lab1.Size = new System.Drawing.Size(177, 16);
- this.MS003Lab1.TabIndex = 177;
- this.MS003Lab1.Text = "日内,合同总价全额付讫发货。";
- //
- // MS002Lab2
- //
- this.MS002Lab2.AutoSize = true;
- this.MS002Lab2.Location = new System.Drawing.Point(288, 39);
- this.MS002Lab2.Name = "MS002Lab2";
- this.MS002Lab2.Size = new System.Drawing.Size(134, 16);
- this.MS002Lab2.TabIndex = 176;
- this.MS002Lab2.Text = "%排产、余款付讫发货。";
- //
- // MS002Editor1
- //
- this.MS002Editor1.Location = new System.Drawing.Point(250, 35);
- this.MS002Editor1.MaskInput = "nnn";
- this.MS002Editor1.MaxValue = 100;
- this.MS002Editor1.Name = "MS002Editor1";
- this.MS002Editor1.Nullable = true;
- this.MS002Editor1.Size = new System.Drawing.Size(35, 21);
- this.MS002Editor1.TabIndex = 1;
- //
- // MS002Lab1
- //
- this.MS002Lab1.AutoSize = true;
- this.MS002Lab1.Location = new System.Drawing.Point(133, 39);
- this.MS002Lab1.Name = "MS002Lab1";
- this.MS002Lab1.Size = new System.Drawing.Size(116, 16);
- this.MS002Lab1.TabIndex = 174;
- this.MS002Lab1.Text = "日内,预付合同总价";
- //
- // MS001Lab
- //
- this.MS001Lab.AutoSize = true;
- this.MS001Lab.Location = new System.Drawing.Point(39, 13);
- this.MS001Lab.Name = "MS001Lab";
- this.MS001Lab.Size = new System.Drawing.Size(140, 16);
- this.MS001Lab.TabIndex = 173;
- this.MS001Lab.Text = "预付合同总价全额排产。";
- //
- // MS016Lab1
- //
- this.MS016Lab1.AutoSize = true;
- this.MS016Lab1.Location = new System.Drawing.Point(39, 386);
- this.MS016Lab1.Name = "MS016Lab1";
- this.MS016Lab1.Size = new System.Drawing.Size(11, 14);
- this.MS016Lab1.TabIndex = 251;
- this.MS016Lab1.Text = "/";
- //
- // MS017Lab1
- //
- this.MS017Lab1.AutoSize = true;
- this.MS017Lab1.Location = new System.Drawing.Point(39, 413);
- this.MS017Lab1.Name = "MS017Lab1";
- this.MS017Lab1.Size = new System.Drawing.Size(29, 16);
- this.MS017Lab1.TabIndex = 251;
- this.MS017Lab1.Text = "即期";
- //
- // MS018Lab1
- //
- this.MS018Lab1.AutoSize = true;
- this.MS018Lab1.Location = new System.Drawing.Point(39, 437);
- this.MS018Lab1.Name = "MS018Lab1";
- this.MS018Lab1.Size = new System.Drawing.Size(29, 16);
- this.MS018Lab1.TabIndex = 251;
- this.MS018Lab1.Text = "远期";
- //
- // MS018Lab2
- //
- this.MS018Lab2.AutoSize = true;
- this.MS018Lab2.Location = new System.Drawing.Point(133, 465);
- this.MS018Lab2.Name = "MS018Lab2";
- this.MS018Lab2.Size = new System.Drawing.Size(116, 16);
- this.MS018Lab2.TabIndex = 258;
- this.MS018Lab2.Text = "日内,预付合同总价";
- //
- // MS018Editor1
- //
- this.MS018Editor1.Location = new System.Drawing.Point(254, 461);
- this.MS018Editor1.MaskInput = "nnn";
- this.MS018Editor1.MaxValue = 100;
- this.MS018Editor1.Name = "MS018Editor1";
- this.MS018Editor1.Nullable = true;
- this.MS018Editor1.Size = new System.Drawing.Size(35, 21);
- this.MS018Editor1.TabIndex = 35;
- //
- // MS018Lab3
- //
- this.MS018Lab3.AutoSize = true;
- this.MS018Lab3.Location = new System.Drawing.Point(295, 465);
- this.MS018Lab3.Name = "MS018Lab3";
- this.MS018Lab3.Size = new System.Drawing.Size(60, 16);
- this.MS018Lab3.TabIndex = 259;
- this.MS018Lab3.Text = "%的定金和";
- //
- // MS018Editor2
- //
- this.MS018Editor2.Location = new System.Drawing.Point(357, 461);
- this.MS018Editor2.MaskInput = "nnn";
- this.MS018Editor2.MaxValue = 100;
- this.MS018Editor2.Name = "MS018Editor2";
- this.MS018Editor2.Nullable = true;
- this.MS018Editor2.Size = new System.Drawing.Size(35, 21);
- this.MS018Editor2.TabIndex = 35;
- //
- // MS018Lab4
- //
- this.MS018Lab4.AutoSize = true;
- this.MS018Lab4.Location = new System.Drawing.Point(398, 465);
- this.MS018Lab4.Name = "MS018Lab4";
- this.MS018Lab4.Size = new System.Drawing.Size(159, 16);
- this.MS018Lab4.TabIndex = 260;
- this.MS018Lab4.Text = "%的预付款,余款付讫发货。";
- //
- // MS019Lab1
- //
- this.MS019Lab1.AutoSize = true;
- this.MS019Lab1.Location = new System.Drawing.Point(40, 487);
- this.MS019Lab1.Name = "MS019Lab1";
- this.MS019Lab1.Size = new System.Drawing.Size(29, 16);
- this.MS019Lab1.TabIndex = 261;
- this.MS019Lab1.Text = "当月";
- //
- // MS019Editor1
- //
- this.MS019Editor1.Location = new System.Drawing.Point(70, 483);
- this.MS019Editor1.MaskInput = "nn";
- this.MS019Editor1.MaxValue = 31;
- this.MS019Editor1.Name = "MS019Editor1";
- this.MS019Editor1.Nullable = true;
- this.MS019Editor1.Size = new System.Drawing.Size(35, 21);
- this.MS019Editor1.TabIndex = 35;
- //
- // MS019Lab2
- //
- this.MS019Lab2.AutoSize = true;
- this.MS019Lab2.Location = new System.Drawing.Point(111, 487);
- this.MS019Lab2.Name = "MS019Lab2";
- this.MS019Lab2.Size = new System.Drawing.Size(177, 16);
- this.MS019Lab2.TabIndex = 261;
- this.MS019Lab2.Text = "日前开出的发票,当月底前结清";
- //
- // ultraLabel1
- //
- this.ultraLabel1.AutoSize = true;
- this.ultraLabel1.Location = new System.Drawing.Point(40, 515);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(66, 16);
- this.ultraLabel1.TabIndex = 261;
- this.ultraLabel1.Text = "按协议付款";
- //
- // ultraLabel2
- //
- this.ultraLabel2.AutoSize = true;
- this.ultraLabel2.Location = new System.Drawing.Point(39, 537);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel2.TabIndex = 261;
- this.ultraLabel2.Text = "持票付款";
- //
- // ultraLabel3
- //
- this.ultraLabel3.AutoSize = true;
- this.ultraLabel3.Location = new System.Drawing.Point(39, 611);
- this.ultraLabel3.Name = "ultraLabel3";
- this.ultraLabel3.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel3.TabIndex = 261;
- this.ultraLabel3.Text = "见备注栏";
- //
- // txtMemo
- //
- this.txtMemo.Location = new System.Drawing.Point(99, 608);
- this.txtMemo.Name = "txtMemo";
- this.txtMemo.Size = new System.Drawing.Size(552, 21);
- this.txtMemo.TabIndex = 262;
- //
- // ultraPanel1
- //
- this.ultraPanel1.AutoScroll = true;
- //
- // ultraPanel1.ClientArea
- //
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel5);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS018Lab0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS018Editor0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS011Lab0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS011Editor0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS010Lab0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS010Editor0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS009Lab0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS009Editor0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS008Lab0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS008Editor0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS007Lab0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS007Editor0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS006Lab0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS006Editor0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS005Lab0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS005Editor0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS004Lab0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS004Editor0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS003Lab0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS003Editor0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS002Lab0);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS002Editor0);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel4);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS010Lab3);
- this.ultraPanel1.ClientArea.Controls.Add(this.txtMemo);
- this.ultraPanel1.ClientArea.Controls.Add(this.MSBox);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS019Lab2);
- this.ultraPanel1.ClientArea.Controls.Add(this.buttonCom);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel3);
- this.ultraPanel1.ClientArea.Controls.Add(this.buttonEsc);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS001Lab);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS002Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS019Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS002Editor1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS018Lab4);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS002Lab2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS018Lab3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS003Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS018Lab2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS004Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS015Lab4);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS004Editor1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS019Editor1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS004Lab2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS018Editor1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS004Editor2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS018Editor2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS004Lab3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS015Editor3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS005Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS015Lab3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS005Editor1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS015Editor2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS005Lab2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS015Lab2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS005Editor2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS015Editor1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS005Lab3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS018Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS005Editor3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS017Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS005Lab4);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS016Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS005Editor4);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS015Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS005Label5);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS014Label2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS006Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS014Editor1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS006Editor1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS014Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS006Lab2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS013Lab4);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS006Editor2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS013Editor3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS006Lab3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS013Lab3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS007Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS013Editor2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS007Editor1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS013Label2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS007Lab2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS013Editor1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS007Editor2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS013Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS007Lab3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS012Lab2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS007Editor3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS012Editor1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS007Lab4);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS012Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS007Editor4);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS011Label6);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS007Lab5);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS011Editor5);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS008Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS011Lab5);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS008Editor1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS011Editor4);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS008Lab2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS011Lab4);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS008Editor2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS011Editor3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS008Lab3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS011Lab3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS009Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS011Editor2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS009Editor1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS011Label2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS009Lab2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS011Editor1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS009Editor2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS011Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS009Lab3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS010Lab4);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS009Editor3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS010Editor3);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS009Lab4);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS009Editor4);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS010Editor2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS009Lab5);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS010Lab2);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS010Lab1);
- this.ultraPanel1.ClientArea.Controls.Add(this.MS010Editor1);
- this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel1.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel1.Name = "ultraPanel1";
- this.ultraPanel1.Size = new System.Drawing.Size(965, 636);
- this.ultraPanel1.TabIndex = 263;
- //
- // MS018Lab0
- //
- this.MS018Lab0.AutoSize = true;
- this.MS018Lab0.Location = new System.Drawing.Point(40, 462);
- this.MS018Lab0.Name = "MS018Lab0";
- this.MS018Lab0.Size = new System.Drawing.Size(54, 16);
- this.MS018Lab0.TabIndex = 285;
- this.MS018Lab0.Text = "合同签订";
- //
- // MS018Editor0
- //
- this.MS018Editor0.Location = new System.Drawing.Point(95, 459);
- this.MS018Editor0.MaskInput = "nnn";
- this.MS018Editor0.MaxValue = 365;
- this.MS018Editor0.Name = "MS018Editor0";
- this.MS018Editor0.Nullable = true;
- this.MS018Editor0.Size = new System.Drawing.Size(35, 21);
- this.MS018Editor0.TabIndex = 284;
- //
- // MS011Lab0
- //
- this.MS011Lab0.AutoSize = true;
- this.MS011Lab0.Location = new System.Drawing.Point(40, 263);
- this.MS011Lab0.Name = "MS011Lab0";
- this.MS011Lab0.Size = new System.Drawing.Size(54, 16);
- this.MS011Lab0.TabIndex = 283;
- this.MS011Lab0.Text = "合同签订";
- //
- // MS011Editor0
- //
- this.MS011Editor0.Location = new System.Drawing.Point(95, 259);
- this.MS011Editor0.MaskInput = "nnn";
- this.MS011Editor0.MaxValue = 365;
- this.MS011Editor0.Name = "MS011Editor0";
- this.MS011Editor0.Nullable = true;
- this.MS011Editor0.Size = new System.Drawing.Size(35, 21);
- this.MS011Editor0.TabIndex = 282;
- //
- // MS010Lab0
- //
- this.MS010Lab0.AutoSize = true;
- this.MS010Lab0.Location = new System.Drawing.Point(40, 239);
- this.MS010Lab0.Name = "MS010Lab0";
- this.MS010Lab0.Size = new System.Drawing.Size(54, 16);
- this.MS010Lab0.TabIndex = 281;
- this.MS010Lab0.Text = "合同签订";
- //
- // MS010Editor0
- //
- this.MS010Editor0.Location = new System.Drawing.Point(95, 235);
- this.MS010Editor0.MaskInput = "nnn";
- this.MS010Editor0.MaxValue = 365;
- this.MS010Editor0.Name = "MS010Editor0";
- this.MS010Editor0.Nullable = true;
- this.MS010Editor0.Size = new System.Drawing.Size(35, 21);
- this.MS010Editor0.TabIndex = 280;
- //
- // MS009Lab0
- //
- this.MS009Lab0.AutoSize = true;
- this.MS009Lab0.Location = new System.Drawing.Point(40, 213);
- this.MS009Lab0.Name = "MS009Lab0";
- this.MS009Lab0.Size = new System.Drawing.Size(54, 16);
- this.MS009Lab0.TabIndex = 279;
- this.MS009Lab0.Text = "合同签订";
- //
- // MS009Editor0
- //
- this.MS009Editor0.Location = new System.Drawing.Point(95, 210);
- this.MS009Editor0.MaskInput = "nnn";
- this.MS009Editor0.MaxValue = 365;
- this.MS009Editor0.Name = "MS009Editor0";
- this.MS009Editor0.Nullable = true;
- this.MS009Editor0.Size = new System.Drawing.Size(35, 21);
- this.MS009Editor0.TabIndex = 278;
- //
- // MS008Lab0
- //
- this.MS008Lab0.AutoSize = true;
- this.MS008Lab0.Location = new System.Drawing.Point(39, 188);
- this.MS008Lab0.Name = "MS008Lab0";
- this.MS008Lab0.Size = new System.Drawing.Size(54, 16);
- this.MS008Lab0.TabIndex = 277;
- this.MS008Lab0.Text = "合同签订";
- //
- // MS008Editor0
- //
- this.MS008Editor0.Location = new System.Drawing.Point(95, 184);
- this.MS008Editor0.MaskInput = "nnn";
- this.MS008Editor0.MaxValue = 365;
- this.MS008Editor0.Name = "MS008Editor0";
- this.MS008Editor0.Nullable = true;
- this.MS008Editor0.Size = new System.Drawing.Size(35, 21);
- this.MS008Editor0.TabIndex = 276;
- //
- // MS007Lab0
- //
- this.MS007Lab0.AutoSize = true;
- this.MS007Lab0.Location = new System.Drawing.Point(40, 163);
- this.MS007Lab0.Name = "MS007Lab0";
- this.MS007Lab0.Size = new System.Drawing.Size(54, 16);
- this.MS007Lab0.TabIndex = 275;
- this.MS007Lab0.Text = "合同签订";
- //
- // MS007Editor0
- //
- this.MS007Editor0.Location = new System.Drawing.Point(95, 160);
- this.MS007Editor0.MaskInput = "nnn";
- this.MS007Editor0.MaxValue = 365;
- this.MS007Editor0.Name = "MS007Editor0";
- this.MS007Editor0.Nullable = true;
- this.MS007Editor0.Size = new System.Drawing.Size(35, 21);
- this.MS007Editor0.TabIndex = 274;
- //
- // MS006Lab0
- //
- this.MS006Lab0.AutoSize = true;
- this.MS006Lab0.Location = new System.Drawing.Point(40, 138);
- this.MS006Lab0.Name = "MS006Lab0";
- this.MS006Lab0.Size = new System.Drawing.Size(54, 16);
- this.MS006Lab0.TabIndex = 273;
- this.MS006Lab0.Text = "合同签订";
- //
- // MS006Editor0
- //
- this.MS006Editor0.Location = new System.Drawing.Point(95, 135);
- this.MS006Editor0.MaskInput = "nnn";
- this.MS006Editor0.MaxValue = 365;
- this.MS006Editor0.Name = "MS006Editor0";
- this.MS006Editor0.Nullable = true;
- this.MS006Editor0.Size = new System.Drawing.Size(35, 21);
- this.MS006Editor0.TabIndex = 272;
- //
- // MS005Lab0
- //
- this.MS005Lab0.AutoSize = true;
- this.MS005Lab0.Location = new System.Drawing.Point(40, 113);
- this.MS005Lab0.Name = "MS005Lab0";
- this.MS005Lab0.Size = new System.Drawing.Size(54, 16);
- this.MS005Lab0.TabIndex = 271;
- this.MS005Lab0.Text = "合同签订";
- //
- // MS005Editor0
- //
- this.MS005Editor0.Location = new System.Drawing.Point(95, 109);
- this.MS005Editor0.MaskInput = "nnn";
- this.MS005Editor0.MaxValue = 365;
- this.MS005Editor0.Name = "MS005Editor0";
- this.MS005Editor0.Nullable = true;
- this.MS005Editor0.Size = new System.Drawing.Size(35, 21);
- this.MS005Editor0.TabIndex = 270;
- //
- // MS004Lab0
- //
- this.MS004Lab0.AutoSize = true;
- this.MS004Lab0.Location = new System.Drawing.Point(39, 88);
- this.MS004Lab0.Name = "MS004Lab0";
- this.MS004Lab0.Size = new System.Drawing.Size(54, 16);
- this.MS004Lab0.TabIndex = 269;
- this.MS004Lab0.Text = "合同签订";
- //
- // MS004Editor0
- //
- this.MS004Editor0.Location = new System.Drawing.Point(95, 84);
- this.MS004Editor0.MaskInput = "nnn";
- this.MS004Editor0.MaxValue = 365;
- this.MS004Editor0.Name = "MS004Editor0";
- this.MS004Editor0.Nullable = true;
- this.MS004Editor0.Size = new System.Drawing.Size(35, 21);
- this.MS004Editor0.TabIndex = 268;
- //
- // MS003Lab0
- //
- this.MS003Lab0.AutoSize = true;
- this.MS003Lab0.Location = new System.Drawing.Point(40, 64);
- this.MS003Lab0.Name = "MS003Lab0";
- this.MS003Lab0.Size = new System.Drawing.Size(54, 16);
- this.MS003Lab0.TabIndex = 267;
- this.MS003Lab0.Text = "合同签订";
- //
- // MS003Editor0
- //
- this.MS003Editor0.Location = new System.Drawing.Point(95, 59);
- this.MS003Editor0.MaskInput = "nnn";
- this.MS003Editor0.MaxValue = 365;
- this.MS003Editor0.Name = "MS003Editor0";
- this.MS003Editor0.Nullable = true;
- this.MS003Editor0.Size = new System.Drawing.Size(35, 21);
- this.MS003Editor0.TabIndex = 266;
- //
- // MS002Lab0
- //
- this.MS002Lab0.AutoSize = true;
- this.MS002Lab0.Location = new System.Drawing.Point(40, 39);
- this.MS002Lab0.Name = "MS002Lab0";
- this.MS002Lab0.Size = new System.Drawing.Size(54, 16);
- this.MS002Lab0.TabIndex = 265;
- this.MS002Lab0.Text = "合同签订";
- //
- // MS002Editor0
- //
- this.MS002Editor0.Location = new System.Drawing.Point(95, 35);
- this.MS002Editor0.MaskInput = "nnn";
- this.MS002Editor0.MaxValue = 365;
- this.MS002Editor0.Name = "MS002Editor0";
- this.MS002Editor0.Nullable = true;
- this.MS002Editor0.Size = new System.Drawing.Size(35, 21);
- this.MS002Editor0.TabIndex = 264;
- //
- // ultraLabel4
- //
- this.ultraLabel4.AutoSize = true;
- this.ultraLabel4.Location = new System.Drawing.Point(39, 561);
- this.ultraLabel4.Name = "ultraLabel4";
- this.ultraLabel4.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel4.TabIndex = 263;
- this.ultraLabel4.Text = "抹账购管";
- //
- // ultraLabel5
- //
- this.ultraLabel5.AutoSize = true;
- this.ultraLabel5.Location = new System.Drawing.Point(39, 586);
- this.ultraLabel5.Name = "ultraLabel5";
- this.ultraLabel5.Size = new System.Drawing.Size(190, 16);
- this.ultraLabel5.TabIndex = 286;
- this.ultraLabel5.Text = "与坯料合同货款对冲后,带款提货";
- //
- // FrmOrderMoneyAsk
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(965, 636);
- this.Controls.Add(this.ultraPanel1);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "FrmOrderMoneyAsk";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "合同资金要求";
- this.Load += new System.EventHandler(this.FrmOrderMoneyAsk_Load);
- ((System.ComponentModel.ISupportInitialize)(this.MSBox)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS015Editor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS015Editor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS015Editor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS014Editor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS013Editor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS013Editor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS013Editor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS012Editor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS011Editor5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS011Editor4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS011Editor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS011Editor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS011Editor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS010Editor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS010Editor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS010Editor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS009Editor4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS009Editor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS009Editor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS009Editor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS008Editor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS008Editor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS007Editor4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS007Editor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS007Editor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS007Editor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS006Editor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS006Editor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS005Editor4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS005Editor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS005Editor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS005Editor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS004Editor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS004Editor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS002Editor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS018Editor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS018Editor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS019Editor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtMemo)).EndInit();
- this.ultraPanel1.ClientArea.ResumeLayout(false);
- this.ultraPanel1.ClientArea.PerformLayout();
- this.ultraPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.MS018Editor0)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS011Editor0)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS010Editor0)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS009Editor0)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS008Editor0)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS007Editor0)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS006Editor0)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS005Editor0)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS004Editor0)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS003Editor0)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.MS002Editor0)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private Infragistics.Win.UltraWinEditors.UltraOptionSet MSBox;
- private Infragistics.Win.Misc.UltraButton buttonEsc;
- private Infragistics.Win.Misc.UltraButton buttonCom;
- private Infragistics.Win.Misc.UltraLabel MS015Lab4;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS015Editor3;
- private Infragistics.Win.Misc.UltraLabel MS015Lab3;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS015Editor2;
- private Infragistics.Win.Misc.UltraLabel MS015Lab2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS015Editor1;
- private Infragistics.Win.Misc.UltraLabel MS015Lab1;
- private Infragistics.Win.Misc.UltraLabel MS014Label2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS014Editor1;
- private Infragistics.Win.Misc.UltraLabel MS014Lab1;
- private Infragistics.Win.Misc.UltraLabel MS013Lab4;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS013Editor3;
- private Infragistics.Win.Misc.UltraLabel MS013Lab3;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS013Editor2;
- private Infragistics.Win.Misc.UltraLabel MS013Label2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS013Editor1;
- private Infragistics.Win.Misc.UltraLabel MS013Lab1;
- private Infragistics.Win.Misc.UltraLabel MS012Lab2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS012Editor1;
- private Infragistics.Win.Misc.UltraLabel MS012Lab1;
- private Infragistics.Win.Misc.UltraLabel MS011Label6;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS011Editor5;
- private Infragistics.Win.Misc.UltraLabel MS011Lab5;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS011Editor4;
- private Infragistics.Win.Misc.UltraLabel MS011Lab4;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS011Editor3;
- private Infragistics.Win.Misc.UltraLabel MS011Lab3;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS011Editor2;
- private Infragistics.Win.Misc.UltraLabel MS011Label2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS011Editor1;
- private Infragistics.Win.Misc.UltraLabel MS011Lab1;
- private Infragistics.Win.Misc.UltraLabel MS010Lab4;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS010Editor3;
- private Infragistics.Win.Misc.UltraLabel MS010Lab3;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS010Editor2;
- private Infragistics.Win.Misc.UltraLabel MS010Lab2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS010Editor1;
- private Infragistics.Win.Misc.UltraLabel MS010Lab1;
- private Infragistics.Win.Misc.UltraLabel MS009Lab5;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS009Editor4;
- private Infragistics.Win.Misc.UltraLabel MS009Lab4;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS009Editor3;
- private Infragistics.Win.Misc.UltraLabel MS009Lab3;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS009Editor2;
- private Infragistics.Win.Misc.UltraLabel MS009Lab2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS009Editor1;
- private Infragistics.Win.Misc.UltraLabel MS009Lab1;
- private Infragistics.Win.Misc.UltraLabel MS008Lab3;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS008Editor2;
- private Infragistics.Win.Misc.UltraLabel MS008Lab2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS008Editor1;
- private Infragistics.Win.Misc.UltraLabel MS008Lab1;
- private Infragistics.Win.Misc.UltraLabel MS007Lab5;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS007Editor4;
- private Infragistics.Win.Misc.UltraLabel MS007Lab4;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS007Editor3;
- private Infragistics.Win.Misc.UltraLabel MS007Lab3;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS007Editor2;
- private Infragistics.Win.Misc.UltraLabel MS007Lab2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS007Editor1;
- private Infragistics.Win.Misc.UltraLabel MS007Lab1;
- private Infragistics.Win.Misc.UltraLabel MS006Lab3;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS006Editor2;
- private Infragistics.Win.Misc.UltraLabel MS006Lab2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS006Editor1;
- private Infragistics.Win.Misc.UltraLabel MS006Lab1;
- private Infragistics.Win.Misc.UltraLabel MS005Label5;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS005Editor4;
- private Infragistics.Win.Misc.UltraLabel MS005Lab4;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS005Editor3;
- private Infragistics.Win.Misc.UltraLabel MS005Lab3;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS005Editor2;
- private Infragistics.Win.Misc.UltraLabel MS005Lab2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS005Editor1;
- private Infragistics.Win.Misc.UltraLabel MS005Lab1;
- private Infragistics.Win.Misc.UltraLabel MS004Lab3;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS004Editor2;
- private Infragistics.Win.Misc.UltraLabel MS004Lab2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS004Editor1;
- private Infragistics.Win.Misc.UltraLabel MS004Lab1;
- private Infragistics.Win.Misc.UltraLabel MS003Lab1;
- private Infragistics.Win.Misc.UltraLabel MS002Lab2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS002Editor1;
- private Infragistics.Win.Misc.UltraLabel MS002Lab1;
- private Infragistics.Win.Misc.UltraLabel MS001Lab;
- private Infragistics.Win.Misc.UltraLabel MS016Lab1;
- private Infragistics.Win.Misc.UltraLabel MS017Lab1;
- private Infragistics.Win.Misc.UltraLabel MS018Lab1;
- private Infragistics.Win.Misc.UltraLabel MS018Lab2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS018Editor1;
- private Infragistics.Win.Misc.UltraLabel MS018Lab3;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS018Editor2;
- private Infragistics.Win.Misc.UltraLabel MS018Lab4;
- private Infragistics.Win.Misc.UltraLabel MS019Lab1;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS019Editor1;
- private Infragistics.Win.Misc.UltraLabel MS019Lab2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtMemo;
- private Infragistics.Win.Misc.UltraPanel ultraPanel1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel4;
- private Infragistics.Win.Misc.UltraLabel MS002Lab0;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS002Editor0;
- private Infragistics.Win.Misc.UltraLabel MS011Lab0;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS011Editor0;
- private Infragistics.Win.Misc.UltraLabel MS010Lab0;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS010Editor0;
- private Infragistics.Win.Misc.UltraLabel MS009Lab0;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS009Editor0;
- private Infragistics.Win.Misc.UltraLabel MS008Lab0;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS008Editor0;
- private Infragistics.Win.Misc.UltraLabel MS007Lab0;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS007Editor0;
- private Infragistics.Win.Misc.UltraLabel MS006Lab0;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS006Editor0;
- private Infragistics.Win.Misc.UltraLabel MS005Lab0;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS005Editor0;
- private Infragistics.Win.Misc.UltraLabel MS004Lab0;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS004Editor0;
- private Infragistics.Win.Misc.UltraLabel MS003Lab0;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS003Editor0;
- private Infragistics.Win.Misc.UltraLabel MS018Lab0;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS018Editor0;
- private Infragistics.Win.Misc.UltraLabel ultraLabel5;
- }
- }
|