FrmOrderMoneyAsk.Designer.cs 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046
  1. namespace Core.StlMes.Client.SaleOrder
  2. {
  3. partial class FrmOrderMoneyAsk
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  29. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  30. Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
  31. Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
  32. Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
  33. Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
  34. Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
  35. Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
  36. Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
  37. Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
  38. Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
  39. Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
  40. Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
  41. Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
  42. Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
  43. Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
  44. Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
  45. Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
  46. Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
  47. Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
  48. Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
  49. Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
  50. Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
  51. Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
  52. Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
  53. Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
  54. Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
  55. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmOrderMoneyAsk));
  56. this.MSBox = new Infragistics.Win.UltraWinEditors.UltraOptionSet();
  57. this.buttonEsc = new Infragistics.Win.Misc.UltraButton();
  58. this.buttonCom = new Infragistics.Win.Misc.UltraButton();
  59. this.MS015Lab4 = new Infragistics.Win.Misc.UltraLabel();
  60. this.MS015Editor3 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  61. this.MS015Lab3 = new Infragistics.Win.Misc.UltraLabel();
  62. this.MS015Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  63. this.MS015Lab2 = new Infragistics.Win.Misc.UltraLabel();
  64. this.MS015Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  65. this.MS015Lab1 = new Infragistics.Win.Misc.UltraLabel();
  66. this.MS014Label2 = new Infragistics.Win.Misc.UltraLabel();
  67. this.MS014Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  68. this.MS014Lab1 = new Infragistics.Win.Misc.UltraLabel();
  69. this.MS013Lab4 = new Infragistics.Win.Misc.UltraLabel();
  70. this.MS013Editor3 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  71. this.MS013Lab3 = new Infragistics.Win.Misc.UltraLabel();
  72. this.MS013Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  73. this.MS013Label2 = new Infragistics.Win.Misc.UltraLabel();
  74. this.MS013Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  75. this.MS013Lab1 = new Infragistics.Win.Misc.UltraLabel();
  76. this.MS012Lab2 = new Infragistics.Win.Misc.UltraLabel();
  77. this.MS012Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  78. this.MS012Lab1 = new Infragistics.Win.Misc.UltraLabel();
  79. this.MS011Label6 = new Infragistics.Win.Misc.UltraLabel();
  80. this.MS011Editor5 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  81. this.MS011Lab5 = new Infragistics.Win.Misc.UltraLabel();
  82. this.MS011Editor4 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  83. this.MS011Lab4 = new Infragistics.Win.Misc.UltraLabel();
  84. this.MS011Editor3 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  85. this.MS011Lab3 = new Infragistics.Win.Misc.UltraLabel();
  86. this.MS011Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  87. this.MS011Label2 = new Infragistics.Win.Misc.UltraLabel();
  88. this.MS011Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  89. this.MS011Lab1 = new Infragistics.Win.Misc.UltraLabel();
  90. this.MS010Lab4 = new Infragistics.Win.Misc.UltraLabel();
  91. this.MS010Editor3 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  92. this.MS010Lab3 = new Infragistics.Win.Misc.UltraLabel();
  93. this.MS010Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  94. this.MS010Lab2 = new Infragistics.Win.Misc.UltraLabel();
  95. this.MS010Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  96. this.MS010Lab1 = new Infragistics.Win.Misc.UltraLabel();
  97. this.MS009Lab5 = new Infragistics.Win.Misc.UltraLabel();
  98. this.MS009Editor4 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  99. this.MS009Lab4 = new Infragistics.Win.Misc.UltraLabel();
  100. this.MS009Editor3 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  101. this.MS009Lab3 = new Infragistics.Win.Misc.UltraLabel();
  102. this.MS009Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  103. this.MS009Lab2 = new Infragistics.Win.Misc.UltraLabel();
  104. this.MS009Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  105. this.MS009Lab1 = new Infragistics.Win.Misc.UltraLabel();
  106. this.MS008Lab3 = new Infragistics.Win.Misc.UltraLabel();
  107. this.MS008Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  108. this.MS008Lab2 = new Infragistics.Win.Misc.UltraLabel();
  109. this.MS008Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  110. this.MS008Lab1 = new Infragistics.Win.Misc.UltraLabel();
  111. this.MS007Lab5 = new Infragistics.Win.Misc.UltraLabel();
  112. this.MS007Editor4 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  113. this.MS007Lab4 = new Infragistics.Win.Misc.UltraLabel();
  114. this.MS007Editor3 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  115. this.MS007Lab3 = new Infragistics.Win.Misc.UltraLabel();
  116. this.MS007Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  117. this.MS007Lab2 = new Infragistics.Win.Misc.UltraLabel();
  118. this.MS007Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  119. this.MS007Lab1 = new Infragistics.Win.Misc.UltraLabel();
  120. this.MS006Lab3 = new Infragistics.Win.Misc.UltraLabel();
  121. this.MS006Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  122. this.MS006Lab2 = new Infragistics.Win.Misc.UltraLabel();
  123. this.MS006Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  124. this.MS006Lab1 = new Infragistics.Win.Misc.UltraLabel();
  125. this.MS005Label5 = new Infragistics.Win.Misc.UltraLabel();
  126. this.MS005Editor4 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  127. this.MS005Lab4 = new Infragistics.Win.Misc.UltraLabel();
  128. this.MS005Editor3 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  129. this.MS005Lab3 = new Infragistics.Win.Misc.UltraLabel();
  130. this.MS005Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  131. this.MS005Lab2 = new Infragistics.Win.Misc.UltraLabel();
  132. this.MS005Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  133. this.MS005Lab1 = new Infragistics.Win.Misc.UltraLabel();
  134. this.MS004Lab3 = new Infragistics.Win.Misc.UltraLabel();
  135. this.MS004Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  136. this.MS004Lab2 = new Infragistics.Win.Misc.UltraLabel();
  137. this.MS004Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  138. this.MS004Lab1 = new Infragistics.Win.Misc.UltraLabel();
  139. this.MS003Lab1 = new Infragistics.Win.Misc.UltraLabel();
  140. this.MS002Lab2 = new Infragistics.Win.Misc.UltraLabel();
  141. this.MS002Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  142. this.MS002Lab1 = new Infragistics.Win.Misc.UltraLabel();
  143. this.MS001Lab = new Infragistics.Win.Misc.UltraLabel();
  144. this.MS016Lab1 = new Infragistics.Win.Misc.UltraLabel();
  145. this.MS017Lab1 = new Infragistics.Win.Misc.UltraLabel();
  146. this.MS018Lab1 = new Infragistics.Win.Misc.UltraLabel();
  147. this.MS018Lab2 = new Infragistics.Win.Misc.UltraLabel();
  148. this.MS018Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  149. this.MS018Lab3 = new Infragistics.Win.Misc.UltraLabel();
  150. this.MS018Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  151. this.MS018Lab4 = new Infragistics.Win.Misc.UltraLabel();
  152. this.MS019Lab1 = new Infragistics.Win.Misc.UltraLabel();
  153. this.MS019Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  154. this.MS019Lab2 = new Infragistics.Win.Misc.UltraLabel();
  155. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  156. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  157. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  158. this.txtMemo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  159. this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
  160. this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
  161. this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
  162. this.MS018Lab0 = new Infragistics.Win.Misc.UltraLabel();
  163. this.MS018Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  164. this.MS011Lab0 = new Infragistics.Win.Misc.UltraLabel();
  165. this.MS011Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  166. this.MS010Lab0 = new Infragistics.Win.Misc.UltraLabel();
  167. this.MS010Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  168. this.MS009Lab0 = new Infragistics.Win.Misc.UltraLabel();
  169. this.MS009Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  170. this.MS008Lab0 = new Infragistics.Win.Misc.UltraLabel();
  171. this.MS008Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  172. this.MS007Lab0 = new Infragistics.Win.Misc.UltraLabel();
  173. this.MS007Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  174. this.MS006Lab0 = new Infragistics.Win.Misc.UltraLabel();
  175. this.MS006Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  176. this.MS005Lab0 = new Infragistics.Win.Misc.UltraLabel();
  177. this.MS005Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  178. this.MS004Lab0 = new Infragistics.Win.Misc.UltraLabel();
  179. this.MS004Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  180. this.MS003Lab0 = new Infragistics.Win.Misc.UltraLabel();
  181. this.MS003Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  182. this.MS002Lab0 = new Infragistics.Win.Misc.UltraLabel();
  183. this.MS002Editor0 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  184. this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
  185. this.MS025Lab2 = new Infragistics.Win.Misc.UltraLabel();
  186. this.MS025Lab1 = new Infragistics.Win.Misc.UltraLabel();
  187. this.MS025Editor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  188. this.MS025Editor2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  189. this.MS025Lab3 = new Infragistics.Win.Misc.UltraLabel();
  190. ((System.ComponentModel.ISupportInitialize)(this.MSBox)).BeginInit();
  191. ((System.ComponentModel.ISupportInitialize)(this.MS015Editor3)).BeginInit();
  192. ((System.ComponentModel.ISupportInitialize)(this.MS015Editor2)).BeginInit();
  193. ((System.ComponentModel.ISupportInitialize)(this.MS015Editor1)).BeginInit();
  194. ((System.ComponentModel.ISupportInitialize)(this.MS014Editor1)).BeginInit();
  195. ((System.ComponentModel.ISupportInitialize)(this.MS013Editor3)).BeginInit();
  196. ((System.ComponentModel.ISupportInitialize)(this.MS013Editor2)).BeginInit();
  197. ((System.ComponentModel.ISupportInitialize)(this.MS013Editor1)).BeginInit();
  198. ((System.ComponentModel.ISupportInitialize)(this.MS012Editor1)).BeginInit();
  199. ((System.ComponentModel.ISupportInitialize)(this.MS011Editor5)).BeginInit();
  200. ((System.ComponentModel.ISupportInitialize)(this.MS011Editor4)).BeginInit();
  201. ((System.ComponentModel.ISupportInitialize)(this.MS011Editor3)).BeginInit();
  202. ((System.ComponentModel.ISupportInitialize)(this.MS011Editor2)).BeginInit();
  203. ((System.ComponentModel.ISupportInitialize)(this.MS011Editor1)).BeginInit();
  204. ((System.ComponentModel.ISupportInitialize)(this.MS010Editor3)).BeginInit();
  205. ((System.ComponentModel.ISupportInitialize)(this.MS010Editor2)).BeginInit();
  206. ((System.ComponentModel.ISupportInitialize)(this.MS010Editor1)).BeginInit();
  207. ((System.ComponentModel.ISupportInitialize)(this.MS009Editor4)).BeginInit();
  208. ((System.ComponentModel.ISupportInitialize)(this.MS009Editor3)).BeginInit();
  209. ((System.ComponentModel.ISupportInitialize)(this.MS009Editor2)).BeginInit();
  210. ((System.ComponentModel.ISupportInitialize)(this.MS009Editor1)).BeginInit();
  211. ((System.ComponentModel.ISupportInitialize)(this.MS008Editor2)).BeginInit();
  212. ((System.ComponentModel.ISupportInitialize)(this.MS008Editor1)).BeginInit();
  213. ((System.ComponentModel.ISupportInitialize)(this.MS007Editor4)).BeginInit();
  214. ((System.ComponentModel.ISupportInitialize)(this.MS007Editor3)).BeginInit();
  215. ((System.ComponentModel.ISupportInitialize)(this.MS007Editor2)).BeginInit();
  216. ((System.ComponentModel.ISupportInitialize)(this.MS007Editor1)).BeginInit();
  217. ((System.ComponentModel.ISupportInitialize)(this.MS006Editor2)).BeginInit();
  218. ((System.ComponentModel.ISupportInitialize)(this.MS006Editor1)).BeginInit();
  219. ((System.ComponentModel.ISupportInitialize)(this.MS005Editor4)).BeginInit();
  220. ((System.ComponentModel.ISupportInitialize)(this.MS005Editor3)).BeginInit();
  221. ((System.ComponentModel.ISupportInitialize)(this.MS005Editor2)).BeginInit();
  222. ((System.ComponentModel.ISupportInitialize)(this.MS005Editor1)).BeginInit();
  223. ((System.ComponentModel.ISupportInitialize)(this.MS004Editor2)).BeginInit();
  224. ((System.ComponentModel.ISupportInitialize)(this.MS004Editor1)).BeginInit();
  225. ((System.ComponentModel.ISupportInitialize)(this.MS002Editor1)).BeginInit();
  226. ((System.ComponentModel.ISupportInitialize)(this.MS018Editor1)).BeginInit();
  227. ((System.ComponentModel.ISupportInitialize)(this.MS018Editor2)).BeginInit();
  228. ((System.ComponentModel.ISupportInitialize)(this.MS019Editor1)).BeginInit();
  229. ((System.ComponentModel.ISupportInitialize)(this.txtMemo)).BeginInit();
  230. this.ultraPanel1.ClientArea.SuspendLayout();
  231. this.ultraPanel1.SuspendLayout();
  232. ((System.ComponentModel.ISupportInitialize)(this.MS018Editor0)).BeginInit();
  233. ((System.ComponentModel.ISupportInitialize)(this.MS011Editor0)).BeginInit();
  234. ((System.ComponentModel.ISupportInitialize)(this.MS010Editor0)).BeginInit();
  235. ((System.ComponentModel.ISupportInitialize)(this.MS009Editor0)).BeginInit();
  236. ((System.ComponentModel.ISupportInitialize)(this.MS008Editor0)).BeginInit();
  237. ((System.ComponentModel.ISupportInitialize)(this.MS007Editor0)).BeginInit();
  238. ((System.ComponentModel.ISupportInitialize)(this.MS006Editor0)).BeginInit();
  239. ((System.ComponentModel.ISupportInitialize)(this.MS005Editor0)).BeginInit();
  240. ((System.ComponentModel.ISupportInitialize)(this.MS004Editor0)).BeginInit();
  241. ((System.ComponentModel.ISupportInitialize)(this.MS003Editor0)).BeginInit();
  242. ((System.ComponentModel.ISupportInitialize)(this.MS002Editor0)).BeginInit();
  243. ((System.ComponentModel.ISupportInitialize)(this.MS025Editor1)).BeginInit();
  244. ((System.ComponentModel.ISupportInitialize)(this.MS025Editor2)).BeginInit();
  245. this.SuspendLayout();
  246. //
  247. // MSBox
  248. //
  249. this.MSBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;
  250. this.MSBox.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  251. valueListItem1.CheckState = System.Windows.Forms.CheckState.Checked;
  252. valueListItem1.DataValue = "";
  253. valueListItem1.DisplayText = "";
  254. valueListItem2.CheckState = System.Windows.Forms.CheckState.Checked;
  255. valueListItem2.DataValue = "";
  256. valueListItem3.CheckState = System.Windows.Forms.CheckState.Checked;
  257. valueListItem3.DataValue = "";
  258. valueListItem3.DisplayText = "";
  259. valueListItem4.CheckState = System.Windows.Forms.CheckState.Checked;
  260. valueListItem4.DataValue = "";
  261. valueListItem5.CheckState = System.Windows.Forms.CheckState.Checked;
  262. valueListItem5.DataValue = "";
  263. valueListItem6.CheckState = System.Windows.Forms.CheckState.Checked;
  264. valueListItem6.DataValue = "";
  265. valueListItem7.CheckState = System.Windows.Forms.CheckState.Checked;
  266. valueListItem7.DataValue = "";
  267. valueListItem8.CheckState = System.Windows.Forms.CheckState.Checked;
  268. valueListItem8.DataValue = "";
  269. valueListItem9.CheckState = System.Windows.Forms.CheckState.Checked;
  270. valueListItem9.DataValue = "";
  271. valueListItem10.CheckState = System.Windows.Forms.CheckState.Checked;
  272. valueListItem10.DataValue = "";
  273. valueListItem11.CheckState = System.Windows.Forms.CheckState.Checked;
  274. valueListItem11.DataValue = "";
  275. valueListItem12.CheckState = System.Windows.Forms.CheckState.Checked;
  276. valueListItem12.DataValue = "";
  277. valueListItem13.CheckState = System.Windows.Forms.CheckState.Checked;
  278. valueListItem13.DataValue = "";
  279. valueListItem14.CheckState = System.Windows.Forms.CheckState.Checked;
  280. valueListItem14.DataValue = "";
  281. valueListItem15.CheckState = System.Windows.Forms.CheckState.Checked;
  282. valueListItem15.DataValue = "";
  283. valueListItem16.CheckState = System.Windows.Forms.CheckState.Checked;
  284. valueListItem16.DataValue = "";
  285. valueListItem17.CheckState = System.Windows.Forms.CheckState.Checked;
  286. valueListItem17.DataValue = "";
  287. valueListItem18.CheckState = System.Windows.Forms.CheckState.Checked;
  288. valueListItem18.DataValue = "";
  289. valueListItem19.DataValue = "";
  290. valueListItem20.DataValue = "";
  291. valueListItem21.DataValue = "";
  292. valueListItem22.DataValue = "";
  293. valueListItem23.DataValue = "";
  294. valueListItem24.DataValue = "";
  295. valueListItem25.DataValue = "";
  296. valueListItem26.DataValue = "";
  297. valueListItem27.DataValue = "";
  298. this.MSBox.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  299. valueListItem1,
  300. valueListItem2,
  301. valueListItem3,
  302. valueListItem4,
  303. valueListItem5,
  304. valueListItem6,
  305. valueListItem7,
  306. valueListItem8,
  307. valueListItem9,
  308. valueListItem10,
  309. valueListItem11,
  310. valueListItem12,
  311. valueListItem13,
  312. valueListItem14,
  313. valueListItem15,
  314. valueListItem16,
  315. valueListItem17,
  316. valueListItem18,
  317. valueListItem19,
  318. valueListItem20,
  319. valueListItem21,
  320. valueListItem22,
  321. valueListItem23,
  322. valueListItem24,
  323. valueListItem25,
  324. valueListItem26,
  325. valueListItem27});
  326. this.MSBox.ItemSpacingVertical = 12;
  327. this.MSBox.Location = new System.Drawing.Point(15, 8);
  328. this.MSBox.Margin = new System.Windows.Forms.Padding(4);
  329. this.MSBox.Name = "MSBox";
  330. this.MSBox.Size = new System.Drawing.Size(29, 838);
  331. this.MSBox.TabIndex = 1;
  332. this.MSBox.ValueChanged += new System.EventHandler(this.MSBox_ValueChanged);
  333. this.MSBox.MouseCaptureChanged += new System.EventHandler(this.MSBox_MouseCaptureChanged);
  334. //
  335. // buttonEsc
  336. //
  337. this.buttonEsc.Location = new System.Drawing.Point(1043, 810);
  338. this.buttonEsc.Margin = new System.Windows.Forms.Padding(4);
  339. this.buttonEsc.Name = "buttonEsc";
  340. this.buttonEsc.Size = new System.Drawing.Size(100, 46);
  341. this.buttonEsc.TabIndex = 172;
  342. this.buttonEsc.Text = "关闭";
  343. this.buttonEsc.Click += new System.EventHandler(this.ultraButtonClose_Click);
  344. //
  345. // buttonCom
  346. //
  347. this.buttonCom.Location = new System.Drawing.Point(945, 810);
  348. this.buttonCom.Margin = new System.Windows.Forms.Padding(4);
  349. this.buttonCom.Name = "buttonCom";
  350. this.buttonCom.Size = new System.Drawing.Size(100, 46);
  351. this.buttonCom.TabIndex = 171;
  352. this.buttonCom.Text = "确定";
  353. this.buttonCom.Click += new System.EventHandler(this.ultraButtonCom_Click);
  354. //
  355. // MS015Lab4
  356. //
  357. this.MS015Lab4.AutoSize = true;
  358. this.MS015Lab4.Location = new System.Drawing.Point(555, 454);
  359. this.MS015Lab4.Margin = new System.Windows.Forms.Padding(4);
  360. this.MS015Lab4.Name = "MS015Lab4";
  361. this.MS015Lab4.Size = new System.Drawing.Size(36, 19);
  362. this.MS015Lab4.TabIndex = 257;
  363. this.MS015Lab4.Text = "月。";
  364. //
  365. // MS015Editor3
  366. //
  367. this.MS015Editor3.Location = new System.Drawing.Point(503, 449);
  368. this.MS015Editor3.Margin = new System.Windows.Forms.Padding(4);
  369. this.MS015Editor3.MaskInput = "nn";
  370. this.MS015Editor3.Name = "MS015Editor3";
  371. this.MS015Editor3.Nullable = true;
  372. this.MS015Editor3.Size = new System.Drawing.Size(47, 24);
  373. this.MS015Editor3.TabIndex = 35;
  374. //
  375. // MS015Lab3
  376. //
  377. this.MS015Lab3.AutoSize = true;
  378. this.MS015Lab3.Location = new System.Drawing.Point(371, 454);
  379. this.MS015Lab3.Margin = new System.Windows.Forms.Padding(4);
  380. this.MS015Lab3.Name = "MS015Lab3";
  381. this.MS015Lab3.Size = new System.Drawing.Size(129, 19);
  382. this.MS015Lab3.TabIndex = 255;
  383. this.MS015Lab3.Text = "为质保金,质保期";
  384. //
  385. // MS015Editor2
  386. //
  387. this.MS015Editor2.Location = new System.Drawing.Point(323, 449);
  388. this.MS015Editor2.Margin = new System.Windows.Forms.Padding(4);
  389. this.MS015Editor2.MaskInput = "nn";
  390. this.MS015Editor2.Name = "MS015Editor2";
  391. this.MS015Editor2.Nullable = true;
  392. this.MS015Editor2.Size = new System.Drawing.Size(47, 24);
  393. this.MS015Editor2.TabIndex = 34;
  394. //
  395. // MS015Lab2
  396. //
  397. this.MS015Lab2.AutoSize = true;
  398. this.MS015Lab2.Location = new System.Drawing.Point(188, 454);
  399. this.MS015Lab2.Margin = new System.Windows.Forms.Padding(4);
  400. this.MS015Lab2.Name = "MS015Lab2";
  401. this.MS015Lab2.Size = new System.Drawing.Size(129, 19);
  402. this.MS015Lab2.TabIndex = 253;
  403. this.MS015Lab2.Text = "天。其中合同总价";
  404. //
  405. // MS015Editor1
  406. //
  407. this.MS015Editor1.Location = new System.Drawing.Point(137, 449);
  408. this.MS015Editor1.Margin = new System.Windows.Forms.Padding(4);
  409. this.MS015Editor1.MaskInput = "nn";
  410. this.MS015Editor1.Name = "MS015Editor1";
  411. this.MS015Editor1.Nullable = true;
  412. this.MS015Editor1.Size = new System.Drawing.Size(47, 24);
  413. this.MS015Editor1.TabIndex = 33;
  414. //
  415. // MS015Lab1
  416. //
  417. this.MS015Lab1.AutoSize = true;
  418. this.MS015Lab1.Location = new System.Drawing.Point(52, 454);
  419. this.MS015Lab1.Margin = new System.Windows.Forms.Padding(4);
  420. this.MS015Lab1.Name = "MS015Lab1";
  421. this.MS015Lab1.Size = new System.Drawing.Size(83, 19);
  422. this.MS015Lab1.TabIndex = 251;
  423. this.MS015Lab1.Text = "发票开出后";
  424. //
  425. // MS014Label2
  426. //
  427. this.MS014Label2.AutoSize = true;
  428. this.MS014Label2.Location = new System.Drawing.Point(188, 422);
  429. this.MS014Label2.Margin = new System.Windows.Forms.Padding(4);
  430. this.MS014Label2.Name = "MS014Label2";
  431. this.MS014Label2.Size = new System.Drawing.Size(67, 19);
  432. this.MS014Label2.TabIndex = 250;
  433. this.MS014Label2.Text = "天付款。";
  434. //
  435. // MS014Editor1
  436. //
  437. this.MS014Editor1.Location = new System.Drawing.Point(137, 418);
  438. this.MS014Editor1.Margin = new System.Windows.Forms.Padding(4);
  439. this.MS014Editor1.MaskInput = "nnn";
  440. this.MS014Editor1.Name = "MS014Editor1";
  441. this.MS014Editor1.Nullable = true;
  442. this.MS014Editor1.Size = new System.Drawing.Size(47, 24);
  443. this.MS014Editor1.TabIndex = 32;
  444. //
  445. // MS014Lab1
  446. //
  447. this.MS014Lab1.AutoSize = true;
  448. this.MS014Lab1.Location = new System.Drawing.Point(52, 422);
  449. this.MS014Lab1.Margin = new System.Windows.Forms.Padding(4);
  450. this.MS014Lab1.Name = "MS014Lab1";
  451. this.MS014Lab1.Size = new System.Drawing.Size(83, 19);
  452. this.MS014Lab1.TabIndex = 248;
  453. this.MS014Lab1.Text = "发票开出后";
  454. //
  455. // MS013Lab4
  456. //
  457. this.MS013Lab4.AutoSize = true;
  458. this.MS013Lab4.Location = new System.Drawing.Point(587, 391);
  459. this.MS013Lab4.Margin = new System.Windows.Forms.Padding(4);
  460. this.MS013Lab4.Name = "MS013Lab4";
  461. this.MS013Lab4.Size = new System.Drawing.Size(36, 19);
  462. this.MS013Lab4.TabIndex = 247;
  463. this.MS013Lab4.Text = "月。";
  464. //
  465. // MS013Editor3
  466. //
  467. this.MS013Editor3.Location = new System.Drawing.Point(536, 386);
  468. this.MS013Editor3.Margin = new System.Windows.Forms.Padding(4);
  469. this.MS013Editor3.MaskInput = "nn";
  470. this.MS013Editor3.Name = "MS013Editor3";
  471. this.MS013Editor3.Nullable = true;
  472. this.MS013Editor3.Size = new System.Drawing.Size(47, 24);
  473. this.MS013Editor3.TabIndex = 31;
  474. //
  475. // MS013Lab3
  476. //
  477. this.MS013Lab3.AutoSize = true;
  478. this.MS013Lab3.Location = new System.Drawing.Point(403, 391);
  479. this.MS013Lab3.Margin = new System.Windows.Forms.Padding(4);
  480. this.MS013Lab3.Name = "MS013Lab3";
  481. this.MS013Lab3.Size = new System.Drawing.Size(129, 19);
  482. this.MS013Lab3.TabIndex = 245;
  483. this.MS013Lab3.Text = "为质保金,质保期";
  484. //
  485. // MS013Editor2
  486. //
  487. this.MS013Editor2.Location = new System.Drawing.Point(355, 386);
  488. this.MS013Editor2.Margin = new System.Windows.Forms.Padding(4);
  489. this.MS013Editor2.MaskInput = "nn";
  490. this.MS013Editor2.Name = "MS013Editor2";
  491. this.MS013Editor2.Nullable = true;
  492. this.MS013Editor2.Size = new System.Drawing.Size(47, 24);
  493. this.MS013Editor2.TabIndex = 30;
  494. //
  495. // MS013Label2
  496. //
  497. this.MS013Label2.AutoSize = true;
  498. this.MS013Label2.Location = new System.Drawing.Point(140, 391);
  499. this.MS013Label2.Margin = new System.Windows.Forms.Padding(4);
  500. this.MS013Label2.Name = "MS013Label2";
  501. this.MS013Label2.Size = new System.Drawing.Size(206, 19);
  502. this.MS013Label2.TabIndex = 243;
  503. this.MS013Label2.Text = "工作日后付款。其中合同总价";
  504. //
  505. // MS013Editor1
  506. //
  507. this.MS013Editor1.Location = new System.Drawing.Point(89, 386);
  508. this.MS013Editor1.Margin = new System.Windows.Forms.Padding(4);
  509. this.MS013Editor1.MaskInput = "nn";
  510. this.MS013Editor1.Name = "MS013Editor1";
  511. this.MS013Editor1.Nullable = true;
  512. this.MS013Editor1.Size = new System.Drawing.Size(47, 24);
  513. this.MS013Editor1.TabIndex = 29;
  514. //
  515. // MS013Lab1
  516. //
  517. this.MS013Lab1.AutoSize = true;
  518. this.MS013Lab1.Location = new System.Drawing.Point(52, 391);
  519. this.MS013Lab1.Margin = new System.Windows.Forms.Padding(4);
  520. this.MS013Lab1.Name = "MS013Lab1";
  521. this.MS013Lab1.Size = new System.Drawing.Size(36, 19);
  522. this.MS013Lab1.TabIndex = 241;
  523. this.MS013Lab1.Text = "货到";
  524. //
  525. // MS012Lab2
  526. //
  527. this.MS012Lab2.AutoSize = true;
  528. this.MS012Lab2.Location = new System.Drawing.Point(143, 360);
  529. this.MS012Lab2.Margin = new System.Windows.Forms.Padding(4);
  530. this.MS012Lab2.Name = "MS012Lab2";
  531. this.MS012Lab2.Size = new System.Drawing.Size(114, 19);
  532. this.MS012Lab2.TabIndex = 240;
  533. this.MS012Lab2.Text = "工作日后付款。";
  534. //
  535. // MS012Editor1
  536. //
  537. this.MS012Editor1.Location = new System.Drawing.Point(89, 355);
  538. this.MS012Editor1.Margin = new System.Windows.Forms.Padding(4);
  539. this.MS012Editor1.MaskInput = "nn";
  540. this.MS012Editor1.Name = "MS012Editor1";
  541. this.MS012Editor1.Nullable = true;
  542. this.MS012Editor1.Size = new System.Drawing.Size(47, 24);
  543. this.MS012Editor1.TabIndex = 28;
  544. //
  545. // MS012Lab1
  546. //
  547. this.MS012Lab1.AutoSize = true;
  548. this.MS012Lab1.Location = new System.Drawing.Point(52, 360);
  549. this.MS012Lab1.Margin = new System.Windows.Forms.Padding(4);
  550. this.MS012Lab1.Name = "MS012Lab1";
  551. this.MS012Lab1.Size = new System.Drawing.Size(36, 19);
  552. this.MS012Lab1.TabIndex = 238;
  553. this.MS012Lab1.Text = "货到";
  554. //
  555. // MS011Label6
  556. //
  557. this.MS011Label6.AutoSize = true;
  558. this.MS011Label6.Location = new System.Drawing.Point(1233, 329);
  559. this.MS011Label6.Margin = new System.Windows.Forms.Padding(4);
  560. this.MS011Label6.Name = "MS011Label6";
  561. this.MS011Label6.Size = new System.Drawing.Size(36, 19);
  562. this.MS011Label6.TabIndex = 237;
  563. this.MS011Label6.Text = "月。";
  564. //
  565. // MS011Editor5
  566. //
  567. this.MS011Editor5.Location = new System.Drawing.Point(1184, 324);
  568. this.MS011Editor5.Margin = new System.Windows.Forms.Padding(4);
  569. this.MS011Editor5.MaskInput = "nn";
  570. this.MS011Editor5.Name = "MS011Editor5";
  571. this.MS011Editor5.Nullable = true;
  572. this.MS011Editor5.Size = new System.Drawing.Size(47, 24);
  573. this.MS011Editor5.TabIndex = 27;
  574. //
  575. // MS011Lab5
  576. //
  577. this.MS011Lab5.AutoSize = true;
  578. this.MS011Lab5.Location = new System.Drawing.Point(1044, 329);
  579. this.MS011Lab5.Margin = new System.Windows.Forms.Padding(4);
  580. this.MS011Lab5.Name = "MS011Lab5";
  581. this.MS011Lab5.Size = new System.Drawing.Size(137, 19);
  582. this.MS011Lab5.TabIndex = 235;
  583. this.MS011Lab5.Text = "%为质保金,质保期";
  584. //
  585. // MS011Editor4
  586. //
  587. this.MS011Editor4.Location = new System.Drawing.Point(996, 324);
  588. this.MS011Editor4.Margin = new System.Windows.Forms.Padding(4);
  589. this.MS011Editor4.MaskInput = "nnn";
  590. this.MS011Editor4.MaxValue = 100;
  591. this.MS011Editor4.Name = "MS011Editor4";
  592. this.MS011Editor4.Nullable = true;
  593. this.MS011Editor4.Size = new System.Drawing.Size(47, 24);
  594. this.MS011Editor4.TabIndex = 26;
  595. //
  596. // MS011Lab4
  597. //
  598. this.MS011Lab4.AutoSize = true;
  599. this.MS011Lab4.Location = new System.Drawing.Point(831, 329);
  600. this.MS011Lab4.Margin = new System.Windows.Forms.Padding(4);
  601. this.MS011Lab4.Name = "MS011Lab4";
  602. this.MS011Lab4.Size = new System.Drawing.Size(160, 19);
  603. this.MS011Lab4.TabIndex = 233;
  604. this.MS011Lab4.Text = "天付清。其中合同总价";
  605. //
  606. // MS011Editor3
  607. //
  608. this.MS011Editor3.Location = new System.Drawing.Point(780, 324);
  609. this.MS011Editor3.Margin = new System.Windows.Forms.Padding(4);
  610. this.MS011Editor3.MaskInput = "nnn";
  611. this.MS011Editor3.Name = "MS011Editor3";
  612. this.MS011Editor3.Nullable = true;
  613. this.MS011Editor3.Size = new System.Drawing.Size(47, 24);
  614. this.MS011Editor3.TabIndex = 25;
  615. //
  616. // MS011Lab3
  617. //
  618. this.MS011Lab3.AutoSize = true;
  619. this.MS011Lab3.Location = new System.Drawing.Point(556, 329);
  620. this.MS011Lab3.Margin = new System.Windows.Forms.Padding(4);
  621. this.MS011Lab3.Name = "MS011Lab3";
  622. this.MS011Lab3.Size = new System.Drawing.Size(214, 19);
  623. this.MS011Lab3.TabIndex = 231;
  624. this.MS011Lab3.Text = "%后发运,剩余货款发票开出后";
  625. //
  626. // MS011Editor2
  627. //
  628. this.MS011Editor2.Location = new System.Drawing.Point(508, 324);
  629. this.MS011Editor2.Margin = new System.Windows.Forms.Padding(4);
  630. this.MS011Editor2.MaskInput = "nnn";
  631. this.MS011Editor2.MaxValue = 100;
  632. this.MS011Editor2.Name = "MS011Editor2";
  633. this.MS011Editor2.Nullable = true;
  634. this.MS011Editor2.Size = new System.Drawing.Size(47, 24);
  635. this.MS011Editor2.TabIndex = 24;
  636. //
  637. // MS011Label2
  638. //
  639. this.MS011Label2.AutoSize = true;
  640. this.MS011Label2.Location = new System.Drawing.Point(383, 329);
  641. this.MS011Label2.Margin = new System.Windows.Forms.Padding(4);
  642. this.MS011Label2.Name = "MS011Label2";
  643. this.MS011Label2.Size = new System.Drawing.Size(121, 19);
  644. this.MS011Label2.TabIndex = 229;
  645. this.MS011Label2.Text = "%排产,支付余款";
  646. //
  647. // MS011Editor1
  648. //
  649. this.MS011Editor1.Location = new System.Drawing.Point(332, 324);
  650. this.MS011Editor1.Margin = new System.Windows.Forms.Padding(4);
  651. this.MS011Editor1.MaskInput = "nnn";
  652. this.MS011Editor1.MaxValue = 100;
  653. this.MS011Editor1.Name = "MS011Editor1";
  654. this.MS011Editor1.Nullable = true;
  655. this.MS011Editor1.Size = new System.Drawing.Size(47, 24);
  656. this.MS011Editor1.TabIndex = 23;
  657. //
  658. // MS011Lab1
  659. //
  660. this.MS011Lab1.AutoSize = true;
  661. this.MS011Lab1.Location = new System.Drawing.Point(177, 329);
  662. this.MS011Lab1.Margin = new System.Windows.Forms.Padding(4);
  663. this.MS011Lab1.Name = "MS011Lab1";
  664. this.MS011Lab1.Size = new System.Drawing.Size(145, 19);
  665. this.MS011Lab1.TabIndex = 227;
  666. this.MS011Lab1.Text = "日内,预付合同总价";
  667. //
  668. // MS010Lab4
  669. //
  670. this.MS010Lab4.AutoSize = true;
  671. this.MS010Lab4.Location = new System.Drawing.Point(831, 299);
  672. this.MS010Lab4.Margin = new System.Windows.Forms.Padding(4);
  673. this.MS010Lab4.Name = "MS010Lab4";
  674. this.MS010Lab4.Size = new System.Drawing.Size(67, 19);
  675. this.MS010Lab4.TabIndex = 226;
  676. this.MS010Lab4.Text = "天付清。";
  677. //
  678. // MS010Editor3
  679. //
  680. this.MS010Editor3.Location = new System.Drawing.Point(780, 294);
  681. this.MS010Editor3.Margin = new System.Windows.Forms.Padding(4);
  682. this.MS010Editor3.MaskInput = "nnn";
  683. this.MS010Editor3.Name = "MS010Editor3";
  684. this.MS010Editor3.Nullable = true;
  685. this.MS010Editor3.Size = new System.Drawing.Size(47, 24);
  686. this.MS010Editor3.TabIndex = 22;
  687. //
  688. // MS010Lab3
  689. //
  690. this.MS010Lab3.AutoSize = true;
  691. this.MS010Lab3.Location = new System.Drawing.Point(556, 299);
  692. this.MS010Lab3.Margin = new System.Windows.Forms.Padding(4);
  693. this.MS010Lab3.Name = "MS010Lab3";
  694. this.MS010Lab3.Size = new System.Drawing.Size(214, 19);
  695. this.MS010Lab3.TabIndex = 224;
  696. this.MS010Lab3.Text = "%后发运,剩余货款发票开出后";
  697. //
  698. // MS010Editor2
  699. //
  700. this.MS010Editor2.Location = new System.Drawing.Point(508, 294);
  701. this.MS010Editor2.Margin = new System.Windows.Forms.Padding(4);
  702. this.MS010Editor2.MaskInput = "nnn";
  703. this.MS010Editor2.MaxValue = 100;
  704. this.MS010Editor2.Name = "MS010Editor2";
  705. this.MS010Editor2.Nullable = true;
  706. this.MS010Editor2.Size = new System.Drawing.Size(47, 24);
  707. this.MS010Editor2.TabIndex = 21;
  708. //
  709. // MS010Lab2
  710. //
  711. this.MS010Lab2.AutoSize = true;
  712. this.MS010Lab2.Location = new System.Drawing.Point(383, 299);
  713. this.MS010Lab2.Margin = new System.Windows.Forms.Padding(4);
  714. this.MS010Lab2.Name = "MS010Lab2";
  715. this.MS010Lab2.Size = new System.Drawing.Size(121, 19);
  716. this.MS010Lab2.TabIndex = 222;
  717. this.MS010Lab2.Text = "%排产,支付余款";
  718. //
  719. // MS010Editor1
  720. //
  721. this.MS010Editor1.Location = new System.Drawing.Point(332, 294);
  722. this.MS010Editor1.Margin = new System.Windows.Forms.Padding(4);
  723. this.MS010Editor1.MaskInput = "nnn";
  724. this.MS010Editor1.MaxValue = 100;
  725. this.MS010Editor1.MinValue = 0;
  726. this.MS010Editor1.Name = "MS010Editor1";
  727. this.MS010Editor1.Nullable = true;
  728. this.MS010Editor1.Size = new System.Drawing.Size(47, 24);
  729. this.MS010Editor1.TabIndex = 20;
  730. //
  731. // MS010Lab1
  732. //
  733. this.MS010Lab1.AutoSize = true;
  734. this.MS010Lab1.Location = new System.Drawing.Point(177, 299);
  735. this.MS010Lab1.Margin = new System.Windows.Forms.Padding(4);
  736. this.MS010Lab1.Name = "MS010Lab1";
  737. this.MS010Lab1.Size = new System.Drawing.Size(145, 19);
  738. this.MS010Lab1.TabIndex = 220;
  739. this.MS010Lab1.Text = "日内,预付合同总价";
  740. //
  741. // MS009Lab5
  742. //
  743. this.MS009Lab5.AutoSize = true;
  744. this.MS009Lab5.Location = new System.Drawing.Point(1024, 266);
  745. this.MS009Lab5.Margin = new System.Windows.Forms.Padding(4);
  746. this.MS009Lab5.Name = "MS009Lab5";
  747. this.MS009Lab5.Size = new System.Drawing.Size(36, 19);
  748. this.MS009Lab5.TabIndex = 219;
  749. this.MS009Lab5.Text = "月。";
  750. //
  751. // MS009Editor4
  752. //
  753. this.MS009Editor4.Location = new System.Drawing.Point(973, 261);
  754. this.MS009Editor4.Margin = new System.Windows.Forms.Padding(4);
  755. this.MS009Editor4.MaskInput = "nn";
  756. this.MS009Editor4.Name = "MS009Editor4";
  757. this.MS009Editor4.Nullable = true;
  758. this.MS009Editor4.Size = new System.Drawing.Size(47, 24);
  759. this.MS009Editor4.TabIndex = 19;
  760. //
  761. // MS009Lab4
  762. //
  763. this.MS009Lab4.AutoSize = true;
  764. this.MS009Lab4.Location = new System.Drawing.Point(831, 266);
  765. this.MS009Lab4.Margin = new System.Windows.Forms.Padding(4);
  766. this.MS009Lab4.Name = "MS009Lab4";
  767. this.MS009Lab4.Size = new System.Drawing.Size(137, 19);
  768. this.MS009Lab4.TabIndex = 217;
  769. this.MS009Lab4.Text = "%为质保金,质保期";
  770. //
  771. // MS009Editor3
  772. //
  773. this.MS009Editor3.Location = new System.Drawing.Point(780, 261);
  774. this.MS009Editor3.Margin = new System.Windows.Forms.Padding(4);
  775. this.MS009Editor3.MaskInput = "nnn";
  776. this.MS009Editor3.MaxValue = 100;
  777. this.MS009Editor3.Name = "MS009Editor3";
  778. this.MS009Editor3.Nullable = true;
  779. this.MS009Editor3.Size = new System.Drawing.Size(47, 24);
  780. this.MS009Editor3.TabIndex = 18;
  781. //
  782. // MS009Lab3
  783. //
  784. this.MS009Lab3.AutoSize = true;
  785. this.MS009Lab3.Location = new System.Drawing.Point(613, 266);
  786. this.MS009Lab3.Margin = new System.Windows.Forms.Padding(4);
  787. this.MS009Lab3.Name = "MS009Lab3";
  788. this.MS009Lab3.Size = new System.Drawing.Size(160, 19);
  789. this.MS009Lab3.TabIndex = 215;
  790. this.MS009Lab3.Text = "天付款。其中合同总价";
  791. //
  792. // MS009Editor2
  793. //
  794. this.MS009Editor2.Location = new System.Drawing.Point(563, 261);
  795. this.MS009Editor2.Margin = new System.Windows.Forms.Padding(4);
  796. this.MS009Editor2.MaskInput = "nnn";
  797. this.MS009Editor2.Name = "MS009Editor2";
  798. this.MS009Editor2.Nullable = true;
  799. this.MS009Editor2.Size = new System.Drawing.Size(47, 24);
  800. this.MS009Editor2.TabIndex = 17;
  801. //
  802. // MS009Lab2
  803. //
  804. this.MS009Lab2.AutoSize = true;
  805. this.MS009Lab2.Location = new System.Drawing.Point(383, 266);
  806. this.MS009Lab2.Margin = new System.Windows.Forms.Padding(4);
  807. this.MS009Lab2.Name = "MS009Lab2";
  808. this.MS009Lab2.Size = new System.Drawing.Size(168, 19);
  809. this.MS009Lab2.TabIndex = 213;
  810. this.MS009Lab2.Text = "%发货,余款发票开出后";
  811. //
  812. // MS009Editor1
  813. //
  814. this.MS009Editor1.Location = new System.Drawing.Point(332, 261);
  815. this.MS009Editor1.Margin = new System.Windows.Forms.Padding(4);
  816. this.MS009Editor1.MaskInput = "nnn";
  817. this.MS009Editor1.MaxValue = 100;
  818. this.MS009Editor1.Name = "MS009Editor1";
  819. this.MS009Editor1.Nullable = true;
  820. this.MS009Editor1.Size = new System.Drawing.Size(47, 24);
  821. this.MS009Editor1.TabIndex = 16;
  822. //
  823. // MS009Lab1
  824. //
  825. this.MS009Lab1.AutoSize = true;
  826. this.MS009Lab1.Location = new System.Drawing.Point(177, 266);
  827. this.MS009Lab1.Margin = new System.Windows.Forms.Padding(4);
  828. this.MS009Lab1.Name = "MS009Lab1";
  829. this.MS009Lab1.Size = new System.Drawing.Size(145, 19);
  830. this.MS009Lab1.TabIndex = 211;
  831. this.MS009Lab1.Text = "日内,支付合同总价";
  832. //
  833. // MS008Lab3
  834. //
  835. this.MS008Lab3.AutoSize = true;
  836. this.MS008Lab3.Location = new System.Drawing.Point(613, 235);
  837. this.MS008Lab3.Margin = new System.Windows.Forms.Padding(4);
  838. this.MS008Lab3.Name = "MS008Lab3";
  839. this.MS008Lab3.Size = new System.Drawing.Size(67, 19);
  840. this.MS008Lab3.TabIndex = 210;
  841. this.MS008Lab3.Text = "天付款。";
  842. //
  843. // MS008Editor2
  844. //
  845. this.MS008Editor2.Location = new System.Drawing.Point(563, 230);
  846. this.MS008Editor2.Margin = new System.Windows.Forms.Padding(4);
  847. this.MS008Editor2.MaskInput = "nnn";
  848. this.MS008Editor2.Name = "MS008Editor2";
  849. this.MS008Editor2.Nullable = true;
  850. this.MS008Editor2.Size = new System.Drawing.Size(47, 24);
  851. this.MS008Editor2.TabIndex = 15;
  852. //
  853. // MS008Lab2
  854. //
  855. this.MS008Lab2.AutoSize = true;
  856. this.MS008Lab2.Location = new System.Drawing.Point(383, 235);
  857. this.MS008Lab2.Margin = new System.Windows.Forms.Padding(4);
  858. this.MS008Lab2.Name = "MS008Lab2";
  859. this.MS008Lab2.Size = new System.Drawing.Size(168, 19);
  860. this.MS008Lab2.TabIndex = 208;
  861. this.MS008Lab2.Text = "%发货,余款发票开出后";
  862. //
  863. // MS008Editor1
  864. //
  865. this.MS008Editor1.Location = new System.Drawing.Point(332, 230);
  866. this.MS008Editor1.Margin = new System.Windows.Forms.Padding(4);
  867. this.MS008Editor1.MaskInput = "nnn";
  868. this.MS008Editor1.MaxValue = 100;
  869. this.MS008Editor1.Name = "MS008Editor1";
  870. this.MS008Editor1.Nullable = true;
  871. this.MS008Editor1.Size = new System.Drawing.Size(47, 24);
  872. this.MS008Editor1.TabIndex = 14;
  873. //
  874. // MS008Lab1
  875. //
  876. this.MS008Lab1.AutoSize = true;
  877. this.MS008Lab1.Location = new System.Drawing.Point(177, 235);
  878. this.MS008Lab1.Margin = new System.Windows.Forms.Padding(4);
  879. this.MS008Lab1.Name = "MS008Lab1";
  880. this.MS008Lab1.Size = new System.Drawing.Size(145, 19);
  881. this.MS008Lab1.TabIndex = 206;
  882. this.MS008Lab1.Text = "日内,支付合同总价";
  883. //
  884. // MS007Lab5
  885. //
  886. this.MS007Lab5.AutoSize = true;
  887. this.MS007Lab5.Location = new System.Drawing.Point(1024, 204);
  888. this.MS007Lab5.Margin = new System.Windows.Forms.Padding(4);
  889. this.MS007Lab5.Name = "MS007Lab5";
  890. this.MS007Lab5.Size = new System.Drawing.Size(36, 19);
  891. this.MS007Lab5.TabIndex = 205;
  892. this.MS007Lab5.Text = "月。";
  893. //
  894. // MS007Editor4
  895. //
  896. this.MS007Editor4.Location = new System.Drawing.Point(973, 199);
  897. this.MS007Editor4.Margin = new System.Windows.Forms.Padding(4);
  898. this.MS007Editor4.MaskInput = "nn";
  899. this.MS007Editor4.Name = "MS007Editor4";
  900. this.MS007Editor4.Nullable = true;
  901. this.MS007Editor4.Size = new System.Drawing.Size(47, 24);
  902. this.MS007Editor4.TabIndex = 13;
  903. //
  904. // MS007Lab4
  905. //
  906. this.MS007Lab4.AutoSize = true;
  907. this.MS007Lab4.Location = new System.Drawing.Point(831, 204);
  908. this.MS007Lab4.Margin = new System.Windows.Forms.Padding(4);
  909. this.MS007Lab4.Name = "MS007Lab4";
  910. this.MS007Lab4.Size = new System.Drawing.Size(137, 19);
  911. this.MS007Lab4.TabIndex = 203;
  912. this.MS007Lab4.Text = "%为质保金,质保期";
  913. //
  914. // MS007Editor3
  915. //
  916. this.MS007Editor3.Location = new System.Drawing.Point(780, 199);
  917. this.MS007Editor3.Margin = new System.Windows.Forms.Padding(4);
  918. this.MS007Editor3.MaskInput = "nnn";
  919. this.MS007Editor3.MaxValue = 100;
  920. this.MS007Editor3.Name = "MS007Editor3";
  921. this.MS007Editor3.Nullable = true;
  922. this.MS007Editor3.Size = new System.Drawing.Size(47, 24);
  923. this.MS007Editor3.TabIndex = 12;
  924. //
  925. // MS007Lab3
  926. //
  927. this.MS007Lab3.AutoSize = true;
  928. this.MS007Lab3.Location = new System.Drawing.Point(613, 204);
  929. this.MS007Lab3.Margin = new System.Windows.Forms.Padding(4);
  930. this.MS007Lab3.Name = "MS007Lab3";
  931. this.MS007Lab3.Size = new System.Drawing.Size(160, 19);
  932. this.MS007Lab3.TabIndex = 201;
  933. this.MS007Lab3.Text = "天付款。其中合同总价";
  934. //
  935. // MS007Editor2
  936. //
  937. this.MS007Editor2.Location = new System.Drawing.Point(563, 199);
  938. this.MS007Editor2.Margin = new System.Windows.Forms.Padding(4);
  939. this.MS007Editor2.MaskInput = "nnn";
  940. this.MS007Editor2.Name = "MS007Editor2";
  941. this.MS007Editor2.Nullable = true;
  942. this.MS007Editor2.Size = new System.Drawing.Size(47, 24);
  943. this.MS007Editor2.TabIndex = 11;
  944. //
  945. // MS007Lab2
  946. //
  947. this.MS007Lab2.AutoSize = true;
  948. this.MS007Lab2.Location = new System.Drawing.Point(383, 204);
  949. this.MS007Lab2.Margin = new System.Windows.Forms.Padding(4);
  950. this.MS007Lab2.Name = "MS007Lab2";
  951. this.MS007Lab2.Size = new System.Drawing.Size(168, 19);
  952. this.MS007Lab2.TabIndex = 199;
  953. this.MS007Lab2.Text = "%发货,余款货物交齐后";
  954. //
  955. // MS007Editor1
  956. //
  957. this.MS007Editor1.Location = new System.Drawing.Point(332, 199);
  958. this.MS007Editor1.Margin = new System.Windows.Forms.Padding(4);
  959. this.MS007Editor1.MaskInput = "nnn";
  960. this.MS007Editor1.MaxValue = 100;
  961. this.MS007Editor1.Name = "MS007Editor1";
  962. this.MS007Editor1.Nullable = true;
  963. this.MS007Editor1.Size = new System.Drawing.Size(47, 24);
  964. this.MS007Editor1.TabIndex = 10;
  965. //
  966. // MS007Lab1
  967. //
  968. this.MS007Lab1.AutoSize = true;
  969. this.MS007Lab1.Location = new System.Drawing.Point(177, 204);
  970. this.MS007Lab1.Margin = new System.Windows.Forms.Padding(4);
  971. this.MS007Lab1.Name = "MS007Lab1";
  972. this.MS007Lab1.Size = new System.Drawing.Size(145, 19);
  973. this.MS007Lab1.TabIndex = 197;
  974. this.MS007Lab1.Text = "日内,支付合同总价";
  975. //
  976. // MS006Lab3
  977. //
  978. this.MS006Lab3.AutoSize = true;
  979. this.MS006Lab3.Location = new System.Drawing.Point(613, 172);
  980. this.MS006Lab3.Margin = new System.Windows.Forms.Padding(4);
  981. this.MS006Lab3.Name = "MS006Lab3";
  982. this.MS006Lab3.Size = new System.Drawing.Size(67, 19);
  983. this.MS006Lab3.TabIndex = 196;
  984. this.MS006Lab3.Text = "天付清。";
  985. //
  986. // MS006Editor2
  987. //
  988. this.MS006Editor2.Location = new System.Drawing.Point(563, 168);
  989. this.MS006Editor2.Margin = new System.Windows.Forms.Padding(4);
  990. this.MS006Editor2.MaskInput = "nnn";
  991. this.MS006Editor2.Name = "MS006Editor2";
  992. this.MS006Editor2.Nullable = true;
  993. this.MS006Editor2.Size = new System.Drawing.Size(47, 24);
  994. this.MS006Editor2.TabIndex = 9;
  995. //
  996. // MS006Lab2
  997. //
  998. this.MS006Lab2.AutoSize = true;
  999. this.MS006Lab2.Location = new System.Drawing.Point(383, 172);
  1000. this.MS006Lab2.Margin = new System.Windows.Forms.Padding(4);
  1001. this.MS006Lab2.Name = "MS006Lab2";
  1002. this.MS006Lab2.Size = new System.Drawing.Size(168, 19);
  1003. this.MS006Lab2.TabIndex = 194;
  1004. this.MS006Lab2.Text = "%发货,余款货物发运后";
  1005. //
  1006. // MS006Editor1
  1007. //
  1008. this.MS006Editor1.Location = new System.Drawing.Point(332, 168);
  1009. this.MS006Editor1.Margin = new System.Windows.Forms.Padding(4);
  1010. this.MS006Editor1.MaskInput = "nnn";
  1011. this.MS006Editor1.MaxValue = 100;
  1012. this.MS006Editor1.Name = "MS006Editor1";
  1013. this.MS006Editor1.Nullable = true;
  1014. this.MS006Editor1.Size = new System.Drawing.Size(47, 24);
  1015. this.MS006Editor1.TabIndex = 8;
  1016. //
  1017. // MS006Lab1
  1018. //
  1019. this.MS006Lab1.AutoSize = true;
  1020. this.MS006Lab1.Location = new System.Drawing.Point(177, 172);
  1021. this.MS006Lab1.Margin = new System.Windows.Forms.Padding(4);
  1022. this.MS006Lab1.Name = "MS006Lab1";
  1023. this.MS006Lab1.Size = new System.Drawing.Size(145, 19);
  1024. this.MS006Lab1.TabIndex = 192;
  1025. this.MS006Lab1.Text = "日内,支付合同总价";
  1026. //
  1027. // MS005Label5
  1028. //
  1029. this.MS005Label5.AutoSize = true;
  1030. this.MS005Label5.Location = new System.Drawing.Point(1024, 141);
  1031. this.MS005Label5.Margin = new System.Windows.Forms.Padding(4);
  1032. this.MS005Label5.Name = "MS005Label5";
  1033. this.MS005Label5.Size = new System.Drawing.Size(36, 19);
  1034. this.MS005Label5.TabIndex = 191;
  1035. this.MS005Label5.Text = "月。";
  1036. //
  1037. // MS005Editor4
  1038. //
  1039. this.MS005Editor4.Location = new System.Drawing.Point(973, 136);
  1040. this.MS005Editor4.Margin = new System.Windows.Forms.Padding(4);
  1041. this.MS005Editor4.MaskInput = "nn";
  1042. this.MS005Editor4.Name = "MS005Editor4";
  1043. this.MS005Editor4.Nullable = true;
  1044. this.MS005Editor4.Size = new System.Drawing.Size(47, 24);
  1045. this.MS005Editor4.TabIndex = 7;
  1046. //
  1047. // MS005Lab4
  1048. //
  1049. this.MS005Lab4.AutoSize = true;
  1050. this.MS005Lab4.Location = new System.Drawing.Point(831, 141);
  1051. this.MS005Lab4.Margin = new System.Windows.Forms.Padding(4);
  1052. this.MS005Lab4.Name = "MS005Lab4";
  1053. this.MS005Lab4.Size = new System.Drawing.Size(137, 19);
  1054. this.MS005Lab4.TabIndex = 189;
  1055. this.MS005Lab4.Text = "%为质保金,质保期";
  1056. //
  1057. // MS005Editor3
  1058. //
  1059. this.MS005Editor3.Location = new System.Drawing.Point(780, 136);
  1060. this.MS005Editor3.Margin = new System.Windows.Forms.Padding(4);
  1061. this.MS005Editor3.MaskInput = "nnn";
  1062. this.MS005Editor3.MaxValue = 100;
  1063. this.MS005Editor3.MinValue = 0;
  1064. this.MS005Editor3.Name = "MS005Editor3";
  1065. this.MS005Editor3.Nullable = true;
  1066. this.MS005Editor3.Size = new System.Drawing.Size(47, 24);
  1067. this.MS005Editor3.TabIndex = 6;
  1068. //
  1069. // MS005Lab3
  1070. //
  1071. this.MS005Lab3.AutoSize = true;
  1072. this.MS005Lab3.Location = new System.Drawing.Point(613, 141);
  1073. this.MS005Lab3.Margin = new System.Windows.Forms.Padding(4);
  1074. this.MS005Lab3.Name = "MS005Lab3";
  1075. this.MS005Lab3.Size = new System.Drawing.Size(160, 19);
  1076. this.MS005Lab3.TabIndex = 187;
  1077. this.MS005Lab3.Text = "天付款。其中合同总价";
  1078. //
  1079. // MS005Editor2
  1080. //
  1081. this.MS005Editor2.Location = new System.Drawing.Point(563, 136);
  1082. this.MS005Editor2.Margin = new System.Windows.Forms.Padding(4);
  1083. this.MS005Editor2.MaskInput = "nnn";
  1084. this.MS005Editor2.Name = "MS005Editor2";
  1085. this.MS005Editor2.Nullable = true;
  1086. this.MS005Editor2.Size = new System.Drawing.Size(47, 24);
  1087. this.MS005Editor2.TabIndex = 5;
  1088. //
  1089. // MS005Lab2
  1090. //
  1091. this.MS005Lab2.AutoSize = true;
  1092. this.MS005Lab2.Location = new System.Drawing.Point(383, 141);
  1093. this.MS005Lab2.Margin = new System.Windows.Forms.Padding(4);
  1094. this.MS005Lab2.Name = "MS005Lab2";
  1095. this.MS005Lab2.Size = new System.Drawing.Size(168, 19);
  1096. this.MS005Lab2.TabIndex = 185;
  1097. this.MS005Lab2.Text = "%发货,余款货物发运后";
  1098. //
  1099. // MS005Editor1
  1100. //
  1101. this.MS005Editor1.Location = new System.Drawing.Point(332, 136);
  1102. this.MS005Editor1.Margin = new System.Windows.Forms.Padding(4);
  1103. this.MS005Editor1.MaskInput = "nnn";
  1104. this.MS005Editor1.MaxValue = 100;
  1105. this.MS005Editor1.Name = "MS005Editor1";
  1106. this.MS005Editor1.Nullable = true;
  1107. this.MS005Editor1.Size = new System.Drawing.Size(47, 24);
  1108. this.MS005Editor1.TabIndex = 4;
  1109. //
  1110. // MS005Lab1
  1111. //
  1112. this.MS005Lab1.AutoSize = true;
  1113. this.MS005Lab1.Location = new System.Drawing.Point(177, 141);
  1114. this.MS005Lab1.Margin = new System.Windows.Forms.Padding(4);
  1115. this.MS005Lab1.Name = "MS005Lab1";
  1116. this.MS005Lab1.Size = new System.Drawing.Size(145, 19);
  1117. this.MS005Lab1.TabIndex = 183;
  1118. this.MS005Lab1.Text = "日内,支付合同总价";
  1119. //
  1120. // MS004Lab3
  1121. //
  1122. this.MS004Lab3.AutoSize = true;
  1123. this.MS004Lab3.Location = new System.Drawing.Point(613, 110);
  1124. this.MS004Lab3.Margin = new System.Windows.Forms.Padding(4);
  1125. this.MS004Lab3.Name = "MS004Lab3";
  1126. this.MS004Lab3.Size = new System.Drawing.Size(67, 19);
  1127. this.MS004Lab3.TabIndex = 182;
  1128. this.MS004Lab3.Text = "天付款。";
  1129. //
  1130. // MS004Editor2
  1131. //
  1132. this.MS004Editor2.Location = new System.Drawing.Point(563, 105);
  1133. this.MS004Editor2.Margin = new System.Windows.Forms.Padding(4);
  1134. this.MS004Editor2.MaskInput = "nnn";
  1135. this.MS004Editor2.Name = "MS004Editor2";
  1136. this.MS004Editor2.Nullable = true;
  1137. this.MS004Editor2.Size = new System.Drawing.Size(47, 24);
  1138. this.MS004Editor2.TabIndex = 3;
  1139. //
  1140. // MS004Lab2
  1141. //
  1142. this.MS004Lab2.AutoSize = true;
  1143. this.MS004Lab2.Location = new System.Drawing.Point(383, 110);
  1144. this.MS004Lab2.Margin = new System.Windows.Forms.Padding(4);
  1145. this.MS004Lab2.Name = "MS004Lab2";
  1146. this.MS004Lab2.Size = new System.Drawing.Size(168, 19);
  1147. this.MS004Lab2.TabIndex = 180;
  1148. this.MS004Lab2.Text = "%发货,余款货物发运后";
  1149. //
  1150. // MS004Editor1
  1151. //
  1152. this.MS004Editor1.Location = new System.Drawing.Point(332, 105);
  1153. this.MS004Editor1.Margin = new System.Windows.Forms.Padding(4);
  1154. this.MS004Editor1.MaskInput = "nnn";
  1155. this.MS004Editor1.MaxValue = 100;
  1156. this.MS004Editor1.Name = "MS004Editor1";
  1157. this.MS004Editor1.Nullable = true;
  1158. this.MS004Editor1.Size = new System.Drawing.Size(47, 24);
  1159. this.MS004Editor1.TabIndex = 2;
  1160. //
  1161. // MS004Lab1
  1162. //
  1163. this.MS004Lab1.AutoSize = true;
  1164. this.MS004Lab1.Location = new System.Drawing.Point(177, 110);
  1165. this.MS004Lab1.Margin = new System.Windows.Forms.Padding(4);
  1166. this.MS004Lab1.Name = "MS004Lab1";
  1167. this.MS004Lab1.Size = new System.Drawing.Size(145, 19);
  1168. this.MS004Lab1.TabIndex = 178;
  1169. this.MS004Lab1.Text = "日内,支付合同总价";
  1170. //
  1171. // MS003Lab1
  1172. //
  1173. this.MS003Lab1.AutoSize = true;
  1174. this.MS003Lab1.Location = new System.Drawing.Point(177, 80);
  1175. this.MS003Lab1.Margin = new System.Windows.Forms.Padding(4);
  1176. this.MS003Lab1.Name = "MS003Lab1";
  1177. this.MS003Lab1.Size = new System.Drawing.Size(222, 19);
  1178. this.MS003Lab1.TabIndex = 177;
  1179. this.MS003Lab1.Text = "日内,合同总价全额付讫发货。";
  1180. //
  1181. // MS002Lab2
  1182. //
  1183. this.MS002Lab2.AutoSize = true;
  1184. this.MS002Lab2.Location = new System.Drawing.Point(384, 49);
  1185. this.MS002Lab2.Margin = new System.Windows.Forms.Padding(4);
  1186. this.MS002Lab2.Name = "MS002Lab2";
  1187. this.MS002Lab2.Size = new System.Drawing.Size(168, 19);
  1188. this.MS002Lab2.TabIndex = 176;
  1189. this.MS002Lab2.Text = "%排产、余款付讫发货。";
  1190. //
  1191. // MS002Editor1
  1192. //
  1193. this.MS002Editor1.Location = new System.Drawing.Point(333, 44);
  1194. this.MS002Editor1.Margin = new System.Windows.Forms.Padding(4);
  1195. this.MS002Editor1.MaskInput = "nnn";
  1196. this.MS002Editor1.MaxValue = 100;
  1197. this.MS002Editor1.Name = "MS002Editor1";
  1198. this.MS002Editor1.Nullable = true;
  1199. this.MS002Editor1.Size = new System.Drawing.Size(47, 24);
  1200. this.MS002Editor1.TabIndex = 1;
  1201. //
  1202. // MS002Lab1
  1203. //
  1204. this.MS002Lab1.AutoSize = true;
  1205. this.MS002Lab1.Location = new System.Drawing.Point(177, 49);
  1206. this.MS002Lab1.Margin = new System.Windows.Forms.Padding(4);
  1207. this.MS002Lab1.Name = "MS002Lab1";
  1208. this.MS002Lab1.Size = new System.Drawing.Size(145, 19);
  1209. this.MS002Lab1.TabIndex = 174;
  1210. this.MS002Lab1.Text = "日内,预付合同总价";
  1211. //
  1212. // MS001Lab
  1213. //
  1214. this.MS001Lab.AutoSize = true;
  1215. this.MS001Lab.Location = new System.Drawing.Point(52, 16);
  1216. this.MS001Lab.Margin = new System.Windows.Forms.Padding(4);
  1217. this.MS001Lab.Name = "MS001Lab";
  1218. this.MS001Lab.Size = new System.Drawing.Size(175, 19);
  1219. this.MS001Lab.TabIndex = 173;
  1220. this.MS001Lab.Text = "预付合同总价全额排产。";
  1221. //
  1222. // MS016Lab1
  1223. //
  1224. this.MS016Lab1.AutoSize = true;
  1225. this.MS016Lab1.Location = new System.Drawing.Point(52, 482);
  1226. this.MS016Lab1.Margin = new System.Windows.Forms.Padding(4);
  1227. this.MS016Lab1.Name = "MS016Lab1";
  1228. this.MS016Lab1.Size = new System.Drawing.Size(13, 17);
  1229. this.MS016Lab1.TabIndex = 251;
  1230. this.MS016Lab1.Text = "/";
  1231. //
  1232. // MS017Lab1
  1233. //
  1234. this.MS017Lab1.AutoSize = true;
  1235. this.MS017Lab1.Location = new System.Drawing.Point(52, 516);
  1236. this.MS017Lab1.Margin = new System.Windows.Forms.Padding(4);
  1237. this.MS017Lab1.Name = "MS017Lab1";
  1238. this.MS017Lab1.Size = new System.Drawing.Size(36, 19);
  1239. this.MS017Lab1.TabIndex = 251;
  1240. this.MS017Lab1.Text = "即期";
  1241. //
  1242. // MS018Lab1
  1243. //
  1244. this.MS018Lab1.AutoSize = true;
  1245. this.MS018Lab1.Location = new System.Drawing.Point(52, 546);
  1246. this.MS018Lab1.Margin = new System.Windows.Forms.Padding(4);
  1247. this.MS018Lab1.Name = "MS018Lab1";
  1248. this.MS018Lab1.Size = new System.Drawing.Size(36, 19);
  1249. this.MS018Lab1.TabIndex = 251;
  1250. this.MS018Lab1.Text = "远期";
  1251. //
  1252. // MS018Lab2
  1253. //
  1254. this.MS018Lab2.AutoSize = true;
  1255. this.MS018Lab2.Location = new System.Drawing.Point(177, 581);
  1256. this.MS018Lab2.Margin = new System.Windows.Forms.Padding(4);
  1257. this.MS018Lab2.Name = "MS018Lab2";
  1258. this.MS018Lab2.Size = new System.Drawing.Size(145, 19);
  1259. this.MS018Lab2.TabIndex = 258;
  1260. this.MS018Lab2.Text = "日内,预付合同总价";
  1261. //
  1262. // MS018Editor1
  1263. //
  1264. this.MS018Editor1.Location = new System.Drawing.Point(339, 576);
  1265. this.MS018Editor1.Margin = new System.Windows.Forms.Padding(4);
  1266. this.MS018Editor1.MaskInput = "nnn";
  1267. this.MS018Editor1.MaxValue = 100;
  1268. this.MS018Editor1.Name = "MS018Editor1";
  1269. this.MS018Editor1.Nullable = true;
  1270. this.MS018Editor1.Size = new System.Drawing.Size(47, 24);
  1271. this.MS018Editor1.TabIndex = 35;
  1272. //
  1273. // MS018Lab3
  1274. //
  1275. this.MS018Lab3.AutoSize = true;
  1276. this.MS018Lab3.Location = new System.Drawing.Point(393, 581);
  1277. this.MS018Lab3.Margin = new System.Windows.Forms.Padding(4);
  1278. this.MS018Lab3.Name = "MS018Lab3";
  1279. this.MS018Lab3.Size = new System.Drawing.Size(75, 19);
  1280. this.MS018Lab3.TabIndex = 259;
  1281. this.MS018Lab3.Text = "%的定金和";
  1282. //
  1283. // MS018Editor2
  1284. //
  1285. this.MS018Editor2.Location = new System.Drawing.Point(476, 576);
  1286. this.MS018Editor2.Margin = new System.Windows.Forms.Padding(4);
  1287. this.MS018Editor2.MaskInput = "nnn";
  1288. this.MS018Editor2.MaxValue = 100;
  1289. this.MS018Editor2.Name = "MS018Editor2";
  1290. this.MS018Editor2.Nullable = true;
  1291. this.MS018Editor2.Size = new System.Drawing.Size(47, 24);
  1292. this.MS018Editor2.TabIndex = 35;
  1293. //
  1294. // MS018Lab4
  1295. //
  1296. this.MS018Lab4.AutoSize = true;
  1297. this.MS018Lab4.Location = new System.Drawing.Point(531, 581);
  1298. this.MS018Lab4.Margin = new System.Windows.Forms.Padding(4);
  1299. this.MS018Lab4.Name = "MS018Lab4";
  1300. this.MS018Lab4.Size = new System.Drawing.Size(199, 19);
  1301. this.MS018Lab4.TabIndex = 260;
  1302. this.MS018Lab4.Text = "%的预付款,余款付讫发货。";
  1303. //
  1304. // MS019Lab1
  1305. //
  1306. this.MS019Lab1.AutoSize = true;
  1307. this.MS019Lab1.Location = new System.Drawing.Point(53, 609);
  1308. this.MS019Lab1.Margin = new System.Windows.Forms.Padding(4);
  1309. this.MS019Lab1.Name = "MS019Lab1";
  1310. this.MS019Lab1.Size = new System.Drawing.Size(36, 19);
  1311. this.MS019Lab1.TabIndex = 261;
  1312. this.MS019Lab1.Text = "当月";
  1313. //
  1314. // MS019Editor1
  1315. //
  1316. this.MS019Editor1.Location = new System.Drawing.Point(93, 604);
  1317. this.MS019Editor1.Margin = new System.Windows.Forms.Padding(4);
  1318. this.MS019Editor1.MaskInput = "nn";
  1319. this.MS019Editor1.MaxValue = 31;
  1320. this.MS019Editor1.Name = "MS019Editor1";
  1321. this.MS019Editor1.Nullable = true;
  1322. this.MS019Editor1.Size = new System.Drawing.Size(47, 24);
  1323. this.MS019Editor1.TabIndex = 35;
  1324. //
  1325. // MS019Lab2
  1326. //
  1327. this.MS019Lab2.AutoSize = true;
  1328. this.MS019Lab2.Location = new System.Drawing.Point(148, 609);
  1329. this.MS019Lab2.Margin = new System.Windows.Forms.Padding(4);
  1330. this.MS019Lab2.Name = "MS019Lab2";
  1331. this.MS019Lab2.Size = new System.Drawing.Size(222, 19);
  1332. this.MS019Lab2.TabIndex = 261;
  1333. this.MS019Lab2.Text = "日前开出的发票,当月底前结清";
  1334. //
  1335. // ultraLabel1
  1336. //
  1337. this.ultraLabel1.AutoSize = true;
  1338. this.ultraLabel1.Location = new System.Drawing.Point(53, 645);
  1339. this.ultraLabel1.Margin = new System.Windows.Forms.Padding(4);
  1340. this.ultraLabel1.Name = "ultraLabel1";
  1341. this.ultraLabel1.Size = new System.Drawing.Size(83, 19);
  1342. this.ultraLabel1.TabIndex = 261;
  1343. this.ultraLabel1.Text = "按协议付款";
  1344. //
  1345. // ultraLabel2
  1346. //
  1347. this.ultraLabel2.AutoSize = true;
  1348. this.ultraLabel2.Location = new System.Drawing.Point(52, 672);
  1349. this.ultraLabel2.Margin = new System.Windows.Forms.Padding(4);
  1350. this.ultraLabel2.Name = "ultraLabel2";
  1351. this.ultraLabel2.Size = new System.Drawing.Size(67, 19);
  1352. this.ultraLabel2.TabIndex = 261;
  1353. this.ultraLabel2.Text = "持票付款";
  1354. //
  1355. // ultraLabel3
  1356. //
  1357. this.ultraLabel3.AutoSize = true;
  1358. this.ultraLabel3.Location = new System.Drawing.Point(52, 823);
  1359. this.ultraLabel3.Margin = new System.Windows.Forms.Padding(4);
  1360. this.ultraLabel3.Name = "ultraLabel3";
  1361. this.ultraLabel3.Size = new System.Drawing.Size(67, 19);
  1362. this.ultraLabel3.TabIndex = 261;
  1363. this.ultraLabel3.Text = "见备注栏";
  1364. //
  1365. // txtMemo
  1366. //
  1367. this.txtMemo.Location = new System.Drawing.Point(132, 819);
  1368. this.txtMemo.Margin = new System.Windows.Forms.Padding(4);
  1369. this.txtMemo.Name = "txtMemo";
  1370. this.txtMemo.Size = new System.Drawing.Size(736, 24);
  1371. this.txtMemo.TabIndex = 262;
  1372. //
  1373. // ultraPanel1
  1374. //
  1375. this.ultraPanel1.AutoScroll = true;
  1376. //
  1377. // ultraPanel1.ClientArea
  1378. //
  1379. this.ultraPanel1.ClientArea.Controls.Add(this.MS025Lab3);
  1380. this.ultraPanel1.ClientArea.Controls.Add(this.MS025Editor2);
  1381. this.ultraPanel1.ClientArea.Controls.Add(this.MS025Lab2);
  1382. this.ultraPanel1.ClientArea.Controls.Add(this.MS025Lab1);
  1383. this.ultraPanel1.ClientArea.Controls.Add(this.MS025Editor1);
  1384. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel6);
  1385. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel5);
  1386. this.ultraPanel1.ClientArea.Controls.Add(this.MS018Lab0);
  1387. this.ultraPanel1.ClientArea.Controls.Add(this.MS018Editor0);
  1388. this.ultraPanel1.ClientArea.Controls.Add(this.MS011Lab0);
  1389. this.ultraPanel1.ClientArea.Controls.Add(this.MS011Editor0);
  1390. this.ultraPanel1.ClientArea.Controls.Add(this.MS010Lab0);
  1391. this.ultraPanel1.ClientArea.Controls.Add(this.MS010Editor0);
  1392. this.ultraPanel1.ClientArea.Controls.Add(this.MS009Lab0);
  1393. this.ultraPanel1.ClientArea.Controls.Add(this.MS009Editor0);
  1394. this.ultraPanel1.ClientArea.Controls.Add(this.MS008Lab0);
  1395. this.ultraPanel1.ClientArea.Controls.Add(this.MS008Editor0);
  1396. this.ultraPanel1.ClientArea.Controls.Add(this.MS007Lab0);
  1397. this.ultraPanel1.ClientArea.Controls.Add(this.MS007Editor0);
  1398. this.ultraPanel1.ClientArea.Controls.Add(this.MS006Lab0);
  1399. this.ultraPanel1.ClientArea.Controls.Add(this.MS006Editor0);
  1400. this.ultraPanel1.ClientArea.Controls.Add(this.MS005Lab0);
  1401. this.ultraPanel1.ClientArea.Controls.Add(this.MS005Editor0);
  1402. this.ultraPanel1.ClientArea.Controls.Add(this.MS004Lab0);
  1403. this.ultraPanel1.ClientArea.Controls.Add(this.MS004Editor0);
  1404. this.ultraPanel1.ClientArea.Controls.Add(this.MS003Lab0);
  1405. this.ultraPanel1.ClientArea.Controls.Add(this.MS003Editor0);
  1406. this.ultraPanel1.ClientArea.Controls.Add(this.MS002Lab0);
  1407. this.ultraPanel1.ClientArea.Controls.Add(this.MS002Editor0);
  1408. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel4);
  1409. this.ultraPanel1.ClientArea.Controls.Add(this.MS010Lab3);
  1410. this.ultraPanel1.ClientArea.Controls.Add(this.txtMemo);
  1411. this.ultraPanel1.ClientArea.Controls.Add(this.MSBox);
  1412. this.ultraPanel1.ClientArea.Controls.Add(this.MS019Lab2);
  1413. this.ultraPanel1.ClientArea.Controls.Add(this.buttonCom);
  1414. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel3);
  1415. this.ultraPanel1.ClientArea.Controls.Add(this.buttonEsc);
  1416. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel2);
  1417. this.ultraPanel1.ClientArea.Controls.Add(this.MS001Lab);
  1418. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel1);
  1419. this.ultraPanel1.ClientArea.Controls.Add(this.MS002Lab1);
  1420. this.ultraPanel1.ClientArea.Controls.Add(this.MS019Lab1);
  1421. this.ultraPanel1.ClientArea.Controls.Add(this.MS002Editor1);
  1422. this.ultraPanel1.ClientArea.Controls.Add(this.MS018Lab4);
  1423. this.ultraPanel1.ClientArea.Controls.Add(this.MS002Lab2);
  1424. this.ultraPanel1.ClientArea.Controls.Add(this.MS018Lab3);
  1425. this.ultraPanel1.ClientArea.Controls.Add(this.MS003Lab1);
  1426. this.ultraPanel1.ClientArea.Controls.Add(this.MS018Lab2);
  1427. this.ultraPanel1.ClientArea.Controls.Add(this.MS004Lab1);
  1428. this.ultraPanel1.ClientArea.Controls.Add(this.MS015Lab4);
  1429. this.ultraPanel1.ClientArea.Controls.Add(this.MS004Editor1);
  1430. this.ultraPanel1.ClientArea.Controls.Add(this.MS019Editor1);
  1431. this.ultraPanel1.ClientArea.Controls.Add(this.MS004Lab2);
  1432. this.ultraPanel1.ClientArea.Controls.Add(this.MS018Editor1);
  1433. this.ultraPanel1.ClientArea.Controls.Add(this.MS004Editor2);
  1434. this.ultraPanel1.ClientArea.Controls.Add(this.MS018Editor2);
  1435. this.ultraPanel1.ClientArea.Controls.Add(this.MS004Lab3);
  1436. this.ultraPanel1.ClientArea.Controls.Add(this.MS015Editor3);
  1437. this.ultraPanel1.ClientArea.Controls.Add(this.MS005Lab1);
  1438. this.ultraPanel1.ClientArea.Controls.Add(this.MS015Lab3);
  1439. this.ultraPanel1.ClientArea.Controls.Add(this.MS005Editor1);
  1440. this.ultraPanel1.ClientArea.Controls.Add(this.MS015Editor2);
  1441. this.ultraPanel1.ClientArea.Controls.Add(this.MS005Lab2);
  1442. this.ultraPanel1.ClientArea.Controls.Add(this.MS015Lab2);
  1443. this.ultraPanel1.ClientArea.Controls.Add(this.MS005Editor2);
  1444. this.ultraPanel1.ClientArea.Controls.Add(this.MS015Editor1);
  1445. this.ultraPanel1.ClientArea.Controls.Add(this.MS005Lab3);
  1446. this.ultraPanel1.ClientArea.Controls.Add(this.MS018Lab1);
  1447. this.ultraPanel1.ClientArea.Controls.Add(this.MS005Editor3);
  1448. this.ultraPanel1.ClientArea.Controls.Add(this.MS017Lab1);
  1449. this.ultraPanel1.ClientArea.Controls.Add(this.MS005Lab4);
  1450. this.ultraPanel1.ClientArea.Controls.Add(this.MS016Lab1);
  1451. this.ultraPanel1.ClientArea.Controls.Add(this.MS005Editor4);
  1452. this.ultraPanel1.ClientArea.Controls.Add(this.MS015Lab1);
  1453. this.ultraPanel1.ClientArea.Controls.Add(this.MS005Label5);
  1454. this.ultraPanel1.ClientArea.Controls.Add(this.MS014Label2);
  1455. this.ultraPanel1.ClientArea.Controls.Add(this.MS006Lab1);
  1456. this.ultraPanel1.ClientArea.Controls.Add(this.MS014Editor1);
  1457. this.ultraPanel1.ClientArea.Controls.Add(this.MS006Editor1);
  1458. this.ultraPanel1.ClientArea.Controls.Add(this.MS014Lab1);
  1459. this.ultraPanel1.ClientArea.Controls.Add(this.MS006Lab2);
  1460. this.ultraPanel1.ClientArea.Controls.Add(this.MS013Lab4);
  1461. this.ultraPanel1.ClientArea.Controls.Add(this.MS006Editor2);
  1462. this.ultraPanel1.ClientArea.Controls.Add(this.MS013Editor3);
  1463. this.ultraPanel1.ClientArea.Controls.Add(this.MS006Lab3);
  1464. this.ultraPanel1.ClientArea.Controls.Add(this.MS013Lab3);
  1465. this.ultraPanel1.ClientArea.Controls.Add(this.MS007Lab1);
  1466. this.ultraPanel1.ClientArea.Controls.Add(this.MS013Editor2);
  1467. this.ultraPanel1.ClientArea.Controls.Add(this.MS007Editor1);
  1468. this.ultraPanel1.ClientArea.Controls.Add(this.MS013Label2);
  1469. this.ultraPanel1.ClientArea.Controls.Add(this.MS007Lab2);
  1470. this.ultraPanel1.ClientArea.Controls.Add(this.MS013Editor1);
  1471. this.ultraPanel1.ClientArea.Controls.Add(this.MS007Editor2);
  1472. this.ultraPanel1.ClientArea.Controls.Add(this.MS013Lab1);
  1473. this.ultraPanel1.ClientArea.Controls.Add(this.MS007Lab3);
  1474. this.ultraPanel1.ClientArea.Controls.Add(this.MS012Lab2);
  1475. this.ultraPanel1.ClientArea.Controls.Add(this.MS007Editor3);
  1476. this.ultraPanel1.ClientArea.Controls.Add(this.MS012Editor1);
  1477. this.ultraPanel1.ClientArea.Controls.Add(this.MS007Lab4);
  1478. this.ultraPanel1.ClientArea.Controls.Add(this.MS012Lab1);
  1479. this.ultraPanel1.ClientArea.Controls.Add(this.MS007Editor4);
  1480. this.ultraPanel1.ClientArea.Controls.Add(this.MS011Label6);
  1481. this.ultraPanel1.ClientArea.Controls.Add(this.MS007Lab5);
  1482. this.ultraPanel1.ClientArea.Controls.Add(this.MS011Editor5);
  1483. this.ultraPanel1.ClientArea.Controls.Add(this.MS008Lab1);
  1484. this.ultraPanel1.ClientArea.Controls.Add(this.MS011Lab5);
  1485. this.ultraPanel1.ClientArea.Controls.Add(this.MS008Editor1);
  1486. this.ultraPanel1.ClientArea.Controls.Add(this.MS011Editor4);
  1487. this.ultraPanel1.ClientArea.Controls.Add(this.MS008Lab2);
  1488. this.ultraPanel1.ClientArea.Controls.Add(this.MS011Lab4);
  1489. this.ultraPanel1.ClientArea.Controls.Add(this.MS008Editor2);
  1490. this.ultraPanel1.ClientArea.Controls.Add(this.MS011Editor3);
  1491. this.ultraPanel1.ClientArea.Controls.Add(this.MS008Lab3);
  1492. this.ultraPanel1.ClientArea.Controls.Add(this.MS011Lab3);
  1493. this.ultraPanel1.ClientArea.Controls.Add(this.MS009Lab1);
  1494. this.ultraPanel1.ClientArea.Controls.Add(this.MS011Editor2);
  1495. this.ultraPanel1.ClientArea.Controls.Add(this.MS009Editor1);
  1496. this.ultraPanel1.ClientArea.Controls.Add(this.MS011Label2);
  1497. this.ultraPanel1.ClientArea.Controls.Add(this.MS009Lab2);
  1498. this.ultraPanel1.ClientArea.Controls.Add(this.MS011Editor1);
  1499. this.ultraPanel1.ClientArea.Controls.Add(this.MS009Editor2);
  1500. this.ultraPanel1.ClientArea.Controls.Add(this.MS011Lab1);
  1501. this.ultraPanel1.ClientArea.Controls.Add(this.MS009Lab3);
  1502. this.ultraPanel1.ClientArea.Controls.Add(this.MS010Lab4);
  1503. this.ultraPanel1.ClientArea.Controls.Add(this.MS009Editor3);
  1504. this.ultraPanel1.ClientArea.Controls.Add(this.MS010Editor3);
  1505. this.ultraPanel1.ClientArea.Controls.Add(this.MS009Lab4);
  1506. this.ultraPanel1.ClientArea.Controls.Add(this.MS009Editor4);
  1507. this.ultraPanel1.ClientArea.Controls.Add(this.MS010Editor2);
  1508. this.ultraPanel1.ClientArea.Controls.Add(this.MS009Lab5);
  1509. this.ultraPanel1.ClientArea.Controls.Add(this.MS010Lab2);
  1510. this.ultraPanel1.ClientArea.Controls.Add(this.MS010Lab1);
  1511. this.ultraPanel1.ClientArea.Controls.Add(this.MS010Editor1);
  1512. this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1513. this.ultraPanel1.Location = new System.Drawing.Point(0, 0);
  1514. this.ultraPanel1.Margin = new System.Windows.Forms.Padding(4);
  1515. this.ultraPanel1.Name = "ultraPanel1";
  1516. this.ultraPanel1.Size = new System.Drawing.Size(1287, 862);
  1517. this.ultraPanel1.TabIndex = 263;
  1518. //
  1519. // ultraLabel6
  1520. //
  1521. this.ultraLabel6.AutoSize = true;
  1522. this.ultraLabel6.Location = new System.Drawing.Point(53, 764);
  1523. this.ultraLabel6.Margin = new System.Windows.Forms.Padding(4);
  1524. this.ultraLabel6.Name = "ultraLabel6";
  1525. this.ultraLabel6.Size = new System.Drawing.Size(206, 19);
  1526. this.ultraLabel6.TabIndex = 287;
  1527. this.ultraLabel6.Text = "当月开票货款,当月全部结清";
  1528. //
  1529. // ultraLabel5
  1530. //
  1531. this.ultraLabel5.AutoSize = true;
  1532. this.ultraLabel5.Location = new System.Drawing.Point(52, 733);
  1533. this.ultraLabel5.Margin = new System.Windows.Forms.Padding(4);
  1534. this.ultraLabel5.Name = "ultraLabel5";
  1535. this.ultraLabel5.Size = new System.Drawing.Size(237, 19);
  1536. this.ultraLabel5.TabIndex = 286;
  1537. this.ultraLabel5.Text = "与坯料合同货款对冲后,带款提货";
  1538. //
  1539. // MS018Lab0
  1540. //
  1541. this.MS018Lab0.AutoSize = true;
  1542. this.MS018Lab0.Location = new System.Drawing.Point(53, 578);
  1543. this.MS018Lab0.Margin = new System.Windows.Forms.Padding(4);
  1544. this.MS018Lab0.Name = "MS018Lab0";
  1545. this.MS018Lab0.Size = new System.Drawing.Size(67, 19);
  1546. this.MS018Lab0.TabIndex = 285;
  1547. this.MS018Lab0.Text = "合同签订";
  1548. //
  1549. // MS018Editor0
  1550. //
  1551. this.MS018Editor0.Location = new System.Drawing.Point(127, 574);
  1552. this.MS018Editor0.Margin = new System.Windows.Forms.Padding(4);
  1553. this.MS018Editor0.MaskInput = "nnn";
  1554. this.MS018Editor0.MaxValue = 365;
  1555. this.MS018Editor0.Name = "MS018Editor0";
  1556. this.MS018Editor0.Nullable = true;
  1557. this.MS018Editor0.Size = new System.Drawing.Size(47, 24);
  1558. this.MS018Editor0.TabIndex = 284;
  1559. //
  1560. // MS011Lab0
  1561. //
  1562. this.MS011Lab0.AutoSize = true;
  1563. this.MS011Lab0.Location = new System.Drawing.Point(53, 329);
  1564. this.MS011Lab0.Margin = new System.Windows.Forms.Padding(4);
  1565. this.MS011Lab0.Name = "MS011Lab0";
  1566. this.MS011Lab0.Size = new System.Drawing.Size(67, 19);
  1567. this.MS011Lab0.TabIndex = 283;
  1568. this.MS011Lab0.Text = "合同签订";
  1569. //
  1570. // MS011Editor0
  1571. //
  1572. this.MS011Editor0.Location = new System.Drawing.Point(127, 324);
  1573. this.MS011Editor0.Margin = new System.Windows.Forms.Padding(4);
  1574. this.MS011Editor0.MaskInput = "nnn";
  1575. this.MS011Editor0.MaxValue = 365;
  1576. this.MS011Editor0.Name = "MS011Editor0";
  1577. this.MS011Editor0.Nullable = true;
  1578. this.MS011Editor0.Size = new System.Drawing.Size(47, 24);
  1579. this.MS011Editor0.TabIndex = 282;
  1580. //
  1581. // MS010Lab0
  1582. //
  1583. this.MS010Lab0.AutoSize = true;
  1584. this.MS010Lab0.Location = new System.Drawing.Point(53, 299);
  1585. this.MS010Lab0.Margin = new System.Windows.Forms.Padding(4);
  1586. this.MS010Lab0.Name = "MS010Lab0";
  1587. this.MS010Lab0.Size = new System.Drawing.Size(67, 19);
  1588. this.MS010Lab0.TabIndex = 281;
  1589. this.MS010Lab0.Text = "合同签订";
  1590. //
  1591. // MS010Editor0
  1592. //
  1593. this.MS010Editor0.Location = new System.Drawing.Point(127, 294);
  1594. this.MS010Editor0.Margin = new System.Windows.Forms.Padding(4);
  1595. this.MS010Editor0.MaskInput = "nnn";
  1596. this.MS010Editor0.MaxValue = 365;
  1597. this.MS010Editor0.Name = "MS010Editor0";
  1598. this.MS010Editor0.Nullable = true;
  1599. this.MS010Editor0.Size = new System.Drawing.Size(47, 24);
  1600. this.MS010Editor0.TabIndex = 280;
  1601. //
  1602. // MS009Lab0
  1603. //
  1604. this.MS009Lab0.AutoSize = true;
  1605. this.MS009Lab0.Location = new System.Drawing.Point(53, 266);
  1606. this.MS009Lab0.Margin = new System.Windows.Forms.Padding(4);
  1607. this.MS009Lab0.Name = "MS009Lab0";
  1608. this.MS009Lab0.Size = new System.Drawing.Size(67, 19);
  1609. this.MS009Lab0.TabIndex = 279;
  1610. this.MS009Lab0.Text = "合同签订";
  1611. //
  1612. // MS009Editor0
  1613. //
  1614. this.MS009Editor0.Location = new System.Drawing.Point(127, 262);
  1615. this.MS009Editor0.Margin = new System.Windows.Forms.Padding(4);
  1616. this.MS009Editor0.MaskInput = "nnn";
  1617. this.MS009Editor0.MaxValue = 365;
  1618. this.MS009Editor0.Name = "MS009Editor0";
  1619. this.MS009Editor0.Nullable = true;
  1620. this.MS009Editor0.Size = new System.Drawing.Size(47, 24);
  1621. this.MS009Editor0.TabIndex = 278;
  1622. //
  1623. // MS008Lab0
  1624. //
  1625. this.MS008Lab0.AutoSize = true;
  1626. this.MS008Lab0.Location = new System.Drawing.Point(52, 235);
  1627. this.MS008Lab0.Margin = new System.Windows.Forms.Padding(4);
  1628. this.MS008Lab0.Name = "MS008Lab0";
  1629. this.MS008Lab0.Size = new System.Drawing.Size(67, 19);
  1630. this.MS008Lab0.TabIndex = 277;
  1631. this.MS008Lab0.Text = "合同签订";
  1632. //
  1633. // MS008Editor0
  1634. //
  1635. this.MS008Editor0.Location = new System.Drawing.Point(127, 230);
  1636. this.MS008Editor0.Margin = new System.Windows.Forms.Padding(4);
  1637. this.MS008Editor0.MaskInput = "nnn";
  1638. this.MS008Editor0.MaxValue = 365;
  1639. this.MS008Editor0.Name = "MS008Editor0";
  1640. this.MS008Editor0.Nullable = true;
  1641. this.MS008Editor0.Size = new System.Drawing.Size(47, 24);
  1642. this.MS008Editor0.TabIndex = 276;
  1643. //
  1644. // MS007Lab0
  1645. //
  1646. this.MS007Lab0.AutoSize = true;
  1647. this.MS007Lab0.Location = new System.Drawing.Point(53, 204);
  1648. this.MS007Lab0.Margin = new System.Windows.Forms.Padding(4);
  1649. this.MS007Lab0.Name = "MS007Lab0";
  1650. this.MS007Lab0.Size = new System.Drawing.Size(67, 19);
  1651. this.MS007Lab0.TabIndex = 275;
  1652. this.MS007Lab0.Text = "合同签订";
  1653. //
  1654. // MS007Editor0
  1655. //
  1656. this.MS007Editor0.Location = new System.Drawing.Point(127, 200);
  1657. this.MS007Editor0.Margin = new System.Windows.Forms.Padding(4);
  1658. this.MS007Editor0.MaskInput = "nnn";
  1659. this.MS007Editor0.MaxValue = 365;
  1660. this.MS007Editor0.Name = "MS007Editor0";
  1661. this.MS007Editor0.Nullable = true;
  1662. this.MS007Editor0.Size = new System.Drawing.Size(47, 24);
  1663. this.MS007Editor0.TabIndex = 274;
  1664. //
  1665. // MS006Lab0
  1666. //
  1667. this.MS006Lab0.AutoSize = true;
  1668. this.MS006Lab0.Location = new System.Drawing.Point(53, 172);
  1669. this.MS006Lab0.Margin = new System.Windows.Forms.Padding(4);
  1670. this.MS006Lab0.Name = "MS006Lab0";
  1671. this.MS006Lab0.Size = new System.Drawing.Size(67, 19);
  1672. this.MS006Lab0.TabIndex = 273;
  1673. this.MS006Lab0.Text = "合同签订";
  1674. //
  1675. // MS006Editor0
  1676. //
  1677. this.MS006Editor0.Location = new System.Drawing.Point(127, 169);
  1678. this.MS006Editor0.Margin = new System.Windows.Forms.Padding(4);
  1679. this.MS006Editor0.MaskInput = "nnn";
  1680. this.MS006Editor0.MaxValue = 365;
  1681. this.MS006Editor0.Name = "MS006Editor0";
  1682. this.MS006Editor0.Nullable = true;
  1683. this.MS006Editor0.Size = new System.Drawing.Size(47, 24);
  1684. this.MS006Editor0.TabIndex = 272;
  1685. //
  1686. // MS005Lab0
  1687. //
  1688. this.MS005Lab0.AutoSize = true;
  1689. this.MS005Lab0.Location = new System.Drawing.Point(53, 141);
  1690. this.MS005Lab0.Margin = new System.Windows.Forms.Padding(4);
  1691. this.MS005Lab0.Name = "MS005Lab0";
  1692. this.MS005Lab0.Size = new System.Drawing.Size(67, 19);
  1693. this.MS005Lab0.TabIndex = 271;
  1694. this.MS005Lab0.Text = "合同签订";
  1695. //
  1696. // MS005Editor0
  1697. //
  1698. this.MS005Editor0.Location = new System.Drawing.Point(127, 136);
  1699. this.MS005Editor0.Margin = new System.Windows.Forms.Padding(4);
  1700. this.MS005Editor0.MaskInput = "nnn";
  1701. this.MS005Editor0.MaxValue = 365;
  1702. this.MS005Editor0.Name = "MS005Editor0";
  1703. this.MS005Editor0.Nullable = true;
  1704. this.MS005Editor0.Size = new System.Drawing.Size(47, 24);
  1705. this.MS005Editor0.TabIndex = 270;
  1706. //
  1707. // MS004Lab0
  1708. //
  1709. this.MS004Lab0.AutoSize = true;
  1710. this.MS004Lab0.Location = new System.Drawing.Point(52, 110);
  1711. this.MS004Lab0.Margin = new System.Windows.Forms.Padding(4);
  1712. this.MS004Lab0.Name = "MS004Lab0";
  1713. this.MS004Lab0.Size = new System.Drawing.Size(67, 19);
  1714. this.MS004Lab0.TabIndex = 269;
  1715. this.MS004Lab0.Text = "合同签订";
  1716. //
  1717. // MS004Editor0
  1718. //
  1719. this.MS004Editor0.Location = new System.Drawing.Point(127, 105);
  1720. this.MS004Editor0.Margin = new System.Windows.Forms.Padding(4);
  1721. this.MS004Editor0.MaskInput = "nnn";
  1722. this.MS004Editor0.MaxValue = 365;
  1723. this.MS004Editor0.Name = "MS004Editor0";
  1724. this.MS004Editor0.Nullable = true;
  1725. this.MS004Editor0.Size = new System.Drawing.Size(47, 24);
  1726. this.MS004Editor0.TabIndex = 268;
  1727. //
  1728. // MS003Lab0
  1729. //
  1730. this.MS003Lab0.AutoSize = true;
  1731. this.MS003Lab0.Location = new System.Drawing.Point(53, 80);
  1732. this.MS003Lab0.Margin = new System.Windows.Forms.Padding(4);
  1733. this.MS003Lab0.Name = "MS003Lab0";
  1734. this.MS003Lab0.Size = new System.Drawing.Size(67, 19);
  1735. this.MS003Lab0.TabIndex = 267;
  1736. this.MS003Lab0.Text = "合同签订";
  1737. //
  1738. // MS003Editor0
  1739. //
  1740. this.MS003Editor0.Location = new System.Drawing.Point(127, 74);
  1741. this.MS003Editor0.Margin = new System.Windows.Forms.Padding(4);
  1742. this.MS003Editor0.MaskInput = "nnn";
  1743. this.MS003Editor0.MaxValue = 365;
  1744. this.MS003Editor0.Name = "MS003Editor0";
  1745. this.MS003Editor0.Nullable = true;
  1746. this.MS003Editor0.Size = new System.Drawing.Size(47, 24);
  1747. this.MS003Editor0.TabIndex = 266;
  1748. //
  1749. // MS002Lab0
  1750. //
  1751. this.MS002Lab0.AutoSize = true;
  1752. this.MS002Lab0.Location = new System.Drawing.Point(53, 49);
  1753. this.MS002Lab0.Margin = new System.Windows.Forms.Padding(4);
  1754. this.MS002Lab0.Name = "MS002Lab0";
  1755. this.MS002Lab0.Size = new System.Drawing.Size(67, 19);
  1756. this.MS002Lab0.TabIndex = 265;
  1757. this.MS002Lab0.Text = "合同签订";
  1758. //
  1759. // MS002Editor0
  1760. //
  1761. this.MS002Editor0.Location = new System.Drawing.Point(127, 44);
  1762. this.MS002Editor0.Margin = new System.Windows.Forms.Padding(4);
  1763. this.MS002Editor0.MaskInput = "nnn";
  1764. this.MS002Editor0.MaxValue = 365;
  1765. this.MS002Editor0.Name = "MS002Editor0";
  1766. this.MS002Editor0.Nullable = true;
  1767. this.MS002Editor0.Size = new System.Drawing.Size(47, 24);
  1768. this.MS002Editor0.TabIndex = 264;
  1769. //
  1770. // ultraLabel4
  1771. //
  1772. this.ultraLabel4.AutoSize = true;
  1773. this.ultraLabel4.Location = new System.Drawing.Point(52, 702);
  1774. this.ultraLabel4.Margin = new System.Windows.Forms.Padding(4);
  1775. this.ultraLabel4.Name = "ultraLabel4";
  1776. this.ultraLabel4.Size = new System.Drawing.Size(67, 19);
  1777. this.ultraLabel4.TabIndex = 263;
  1778. this.ultraLabel4.Text = "抹账购管";
  1779. //
  1780. // MS025Lab2
  1781. //
  1782. this.MS025Lab2.AutoSize = true;
  1783. this.MS025Lab2.Location = new System.Drawing.Point(148, 791);
  1784. this.MS025Lab2.Margin = new System.Windows.Forms.Padding(4);
  1785. this.MS025Lab2.Name = "MS025Lab2";
  1786. this.MS025Lab2.Size = new System.Drawing.Size(214, 19);
  1787. this.MS025Lab2.TabIndex = 290;
  1788. this.MS025Lab2.Text = "日前回款开出的发票80%,次月";
  1789. //
  1790. // MS025Lab1
  1791. //
  1792. this.MS025Lab1.AutoSize = true;
  1793. this.MS025Lab1.Location = new System.Drawing.Point(53, 791);
  1794. this.MS025Lab1.Margin = new System.Windows.Forms.Padding(4);
  1795. this.MS025Lab1.Name = "MS025Lab1";
  1796. this.MS025Lab1.Size = new System.Drawing.Size(36, 19);
  1797. this.MS025Lab1.TabIndex = 289;
  1798. this.MS025Lab1.Text = "当月";
  1799. //
  1800. // MS025Editor1
  1801. //
  1802. this.MS025Editor1.Location = new System.Drawing.Point(93, 786);
  1803. this.MS025Editor1.Margin = new System.Windows.Forms.Padding(4);
  1804. this.MS025Editor1.MaskInput = "nn";
  1805. this.MS025Editor1.MaxValue = 31;
  1806. this.MS025Editor1.Name = "MS025Editor1";
  1807. this.MS025Editor1.Nullable = true;
  1808. this.MS025Editor1.Size = new System.Drawing.Size(47, 24);
  1809. this.MS025Editor1.TabIndex = 288;
  1810. //
  1811. // MS025Editor2
  1812. //
  1813. this.MS025Editor2.Location = new System.Drawing.Point(370, 786);
  1814. this.MS025Editor2.Margin = new System.Windows.Forms.Padding(4);
  1815. this.MS025Editor2.MaskInput = "nn";
  1816. this.MS025Editor2.MaxValue = 100;
  1817. this.MS025Editor2.Name = "MS025Editor2";
  1818. this.MS025Editor2.Nullable = true;
  1819. this.MS025Editor2.Size = new System.Drawing.Size(47, 24);
  1820. this.MS025Editor2.TabIndex = 291;
  1821. //
  1822. // MS025Lab3
  1823. //
  1824. this.MS025Lab3.AutoSize = true;
  1825. this.MS025Lab3.Location = new System.Drawing.Point(425, 791);
  1826. this.MS025Lab3.Margin = new System.Windows.Forms.Padding(4);
  1827. this.MS025Lab3.Name = "MS025Lab3";
  1828. this.MS025Lab3.Size = new System.Drawing.Size(67, 19);
  1829. this.MS025Lab3.TabIndex = 292;
  1830. this.MS025Lab3.Text = "日前结清";
  1831. //
  1832. // FrmOrderMoneyAsk
  1833. //
  1834. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  1835. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1836. this.ClientSize = new System.Drawing.Size(1287, 862);
  1837. this.Controls.Add(this.ultraPanel1);
  1838. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  1839. this.Margin = new System.Windows.Forms.Padding(5);
  1840. this.MaximizeBox = false;
  1841. this.MinimizeBox = false;
  1842. this.Name = "FrmOrderMoneyAsk";
  1843. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  1844. this.Text = "合同资金要求";
  1845. this.Load += new System.EventHandler(this.FrmOrderMoneyAsk_Load);
  1846. ((System.ComponentModel.ISupportInitialize)(this.MSBox)).EndInit();
  1847. ((System.ComponentModel.ISupportInitialize)(this.MS015Editor3)).EndInit();
  1848. ((System.ComponentModel.ISupportInitialize)(this.MS015Editor2)).EndInit();
  1849. ((System.ComponentModel.ISupportInitialize)(this.MS015Editor1)).EndInit();
  1850. ((System.ComponentModel.ISupportInitialize)(this.MS014Editor1)).EndInit();
  1851. ((System.ComponentModel.ISupportInitialize)(this.MS013Editor3)).EndInit();
  1852. ((System.ComponentModel.ISupportInitialize)(this.MS013Editor2)).EndInit();
  1853. ((System.ComponentModel.ISupportInitialize)(this.MS013Editor1)).EndInit();
  1854. ((System.ComponentModel.ISupportInitialize)(this.MS012Editor1)).EndInit();
  1855. ((System.ComponentModel.ISupportInitialize)(this.MS011Editor5)).EndInit();
  1856. ((System.ComponentModel.ISupportInitialize)(this.MS011Editor4)).EndInit();
  1857. ((System.ComponentModel.ISupportInitialize)(this.MS011Editor3)).EndInit();
  1858. ((System.ComponentModel.ISupportInitialize)(this.MS011Editor2)).EndInit();
  1859. ((System.ComponentModel.ISupportInitialize)(this.MS011Editor1)).EndInit();
  1860. ((System.ComponentModel.ISupportInitialize)(this.MS010Editor3)).EndInit();
  1861. ((System.ComponentModel.ISupportInitialize)(this.MS010Editor2)).EndInit();
  1862. ((System.ComponentModel.ISupportInitialize)(this.MS010Editor1)).EndInit();
  1863. ((System.ComponentModel.ISupportInitialize)(this.MS009Editor4)).EndInit();
  1864. ((System.ComponentModel.ISupportInitialize)(this.MS009Editor3)).EndInit();
  1865. ((System.ComponentModel.ISupportInitialize)(this.MS009Editor2)).EndInit();
  1866. ((System.ComponentModel.ISupportInitialize)(this.MS009Editor1)).EndInit();
  1867. ((System.ComponentModel.ISupportInitialize)(this.MS008Editor2)).EndInit();
  1868. ((System.ComponentModel.ISupportInitialize)(this.MS008Editor1)).EndInit();
  1869. ((System.ComponentModel.ISupportInitialize)(this.MS007Editor4)).EndInit();
  1870. ((System.ComponentModel.ISupportInitialize)(this.MS007Editor3)).EndInit();
  1871. ((System.ComponentModel.ISupportInitialize)(this.MS007Editor2)).EndInit();
  1872. ((System.ComponentModel.ISupportInitialize)(this.MS007Editor1)).EndInit();
  1873. ((System.ComponentModel.ISupportInitialize)(this.MS006Editor2)).EndInit();
  1874. ((System.ComponentModel.ISupportInitialize)(this.MS006Editor1)).EndInit();
  1875. ((System.ComponentModel.ISupportInitialize)(this.MS005Editor4)).EndInit();
  1876. ((System.ComponentModel.ISupportInitialize)(this.MS005Editor3)).EndInit();
  1877. ((System.ComponentModel.ISupportInitialize)(this.MS005Editor2)).EndInit();
  1878. ((System.ComponentModel.ISupportInitialize)(this.MS005Editor1)).EndInit();
  1879. ((System.ComponentModel.ISupportInitialize)(this.MS004Editor2)).EndInit();
  1880. ((System.ComponentModel.ISupportInitialize)(this.MS004Editor1)).EndInit();
  1881. ((System.ComponentModel.ISupportInitialize)(this.MS002Editor1)).EndInit();
  1882. ((System.ComponentModel.ISupportInitialize)(this.MS018Editor1)).EndInit();
  1883. ((System.ComponentModel.ISupportInitialize)(this.MS018Editor2)).EndInit();
  1884. ((System.ComponentModel.ISupportInitialize)(this.MS019Editor1)).EndInit();
  1885. ((System.ComponentModel.ISupportInitialize)(this.txtMemo)).EndInit();
  1886. this.ultraPanel1.ClientArea.ResumeLayout(false);
  1887. this.ultraPanel1.ClientArea.PerformLayout();
  1888. this.ultraPanel1.ResumeLayout(false);
  1889. ((System.ComponentModel.ISupportInitialize)(this.MS018Editor0)).EndInit();
  1890. ((System.ComponentModel.ISupportInitialize)(this.MS011Editor0)).EndInit();
  1891. ((System.ComponentModel.ISupportInitialize)(this.MS010Editor0)).EndInit();
  1892. ((System.ComponentModel.ISupportInitialize)(this.MS009Editor0)).EndInit();
  1893. ((System.ComponentModel.ISupportInitialize)(this.MS008Editor0)).EndInit();
  1894. ((System.ComponentModel.ISupportInitialize)(this.MS007Editor0)).EndInit();
  1895. ((System.ComponentModel.ISupportInitialize)(this.MS006Editor0)).EndInit();
  1896. ((System.ComponentModel.ISupportInitialize)(this.MS005Editor0)).EndInit();
  1897. ((System.ComponentModel.ISupportInitialize)(this.MS004Editor0)).EndInit();
  1898. ((System.ComponentModel.ISupportInitialize)(this.MS003Editor0)).EndInit();
  1899. ((System.ComponentModel.ISupportInitialize)(this.MS002Editor0)).EndInit();
  1900. ((System.ComponentModel.ISupportInitialize)(this.MS025Editor1)).EndInit();
  1901. ((System.ComponentModel.ISupportInitialize)(this.MS025Editor2)).EndInit();
  1902. this.ResumeLayout(false);
  1903. }
  1904. #endregion
  1905. private Infragistics.Win.UltraWinEditors.UltraOptionSet MSBox;
  1906. private Infragistics.Win.Misc.UltraButton buttonEsc;
  1907. private Infragistics.Win.Misc.UltraButton buttonCom;
  1908. private Infragistics.Win.Misc.UltraLabel MS015Lab4;
  1909. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS015Editor3;
  1910. private Infragistics.Win.Misc.UltraLabel MS015Lab3;
  1911. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS015Editor2;
  1912. private Infragistics.Win.Misc.UltraLabel MS015Lab2;
  1913. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS015Editor1;
  1914. private Infragistics.Win.Misc.UltraLabel MS015Lab1;
  1915. private Infragistics.Win.Misc.UltraLabel MS014Label2;
  1916. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS014Editor1;
  1917. private Infragistics.Win.Misc.UltraLabel MS014Lab1;
  1918. private Infragistics.Win.Misc.UltraLabel MS013Lab4;
  1919. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS013Editor3;
  1920. private Infragistics.Win.Misc.UltraLabel MS013Lab3;
  1921. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS013Editor2;
  1922. private Infragistics.Win.Misc.UltraLabel MS013Label2;
  1923. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS013Editor1;
  1924. private Infragistics.Win.Misc.UltraLabel MS013Lab1;
  1925. private Infragistics.Win.Misc.UltraLabel MS012Lab2;
  1926. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS012Editor1;
  1927. private Infragistics.Win.Misc.UltraLabel MS012Lab1;
  1928. private Infragistics.Win.Misc.UltraLabel MS011Label6;
  1929. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS011Editor5;
  1930. private Infragistics.Win.Misc.UltraLabel MS011Lab5;
  1931. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS011Editor4;
  1932. private Infragistics.Win.Misc.UltraLabel MS011Lab4;
  1933. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS011Editor3;
  1934. private Infragistics.Win.Misc.UltraLabel MS011Lab3;
  1935. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS011Editor2;
  1936. private Infragistics.Win.Misc.UltraLabel MS011Label2;
  1937. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS011Editor1;
  1938. private Infragistics.Win.Misc.UltraLabel MS011Lab1;
  1939. private Infragistics.Win.Misc.UltraLabel MS010Lab4;
  1940. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS010Editor3;
  1941. private Infragistics.Win.Misc.UltraLabel MS010Lab3;
  1942. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS010Editor2;
  1943. private Infragistics.Win.Misc.UltraLabel MS010Lab2;
  1944. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS010Editor1;
  1945. private Infragistics.Win.Misc.UltraLabel MS010Lab1;
  1946. private Infragistics.Win.Misc.UltraLabel MS009Lab5;
  1947. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS009Editor4;
  1948. private Infragistics.Win.Misc.UltraLabel MS009Lab4;
  1949. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS009Editor3;
  1950. private Infragistics.Win.Misc.UltraLabel MS009Lab3;
  1951. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS009Editor2;
  1952. private Infragistics.Win.Misc.UltraLabel MS009Lab2;
  1953. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS009Editor1;
  1954. private Infragistics.Win.Misc.UltraLabel MS009Lab1;
  1955. private Infragistics.Win.Misc.UltraLabel MS008Lab3;
  1956. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS008Editor2;
  1957. private Infragistics.Win.Misc.UltraLabel MS008Lab2;
  1958. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS008Editor1;
  1959. private Infragistics.Win.Misc.UltraLabel MS008Lab1;
  1960. private Infragistics.Win.Misc.UltraLabel MS007Lab5;
  1961. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS007Editor4;
  1962. private Infragistics.Win.Misc.UltraLabel MS007Lab4;
  1963. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS007Editor3;
  1964. private Infragistics.Win.Misc.UltraLabel MS007Lab3;
  1965. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS007Editor2;
  1966. private Infragistics.Win.Misc.UltraLabel MS007Lab2;
  1967. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS007Editor1;
  1968. private Infragistics.Win.Misc.UltraLabel MS007Lab1;
  1969. private Infragistics.Win.Misc.UltraLabel MS006Lab3;
  1970. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS006Editor2;
  1971. private Infragistics.Win.Misc.UltraLabel MS006Lab2;
  1972. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS006Editor1;
  1973. private Infragistics.Win.Misc.UltraLabel MS006Lab1;
  1974. private Infragistics.Win.Misc.UltraLabel MS005Label5;
  1975. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS005Editor4;
  1976. private Infragistics.Win.Misc.UltraLabel MS005Lab4;
  1977. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS005Editor3;
  1978. private Infragistics.Win.Misc.UltraLabel MS005Lab3;
  1979. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS005Editor2;
  1980. private Infragistics.Win.Misc.UltraLabel MS005Lab2;
  1981. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS005Editor1;
  1982. private Infragistics.Win.Misc.UltraLabel MS005Lab1;
  1983. private Infragistics.Win.Misc.UltraLabel MS004Lab3;
  1984. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS004Editor2;
  1985. private Infragistics.Win.Misc.UltraLabel MS004Lab2;
  1986. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS004Editor1;
  1987. private Infragistics.Win.Misc.UltraLabel MS004Lab1;
  1988. private Infragistics.Win.Misc.UltraLabel MS003Lab1;
  1989. private Infragistics.Win.Misc.UltraLabel MS002Lab2;
  1990. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS002Editor1;
  1991. private Infragistics.Win.Misc.UltraLabel MS002Lab1;
  1992. private Infragistics.Win.Misc.UltraLabel MS001Lab;
  1993. private Infragistics.Win.Misc.UltraLabel MS016Lab1;
  1994. private Infragistics.Win.Misc.UltraLabel MS017Lab1;
  1995. private Infragistics.Win.Misc.UltraLabel MS018Lab1;
  1996. private Infragistics.Win.Misc.UltraLabel MS018Lab2;
  1997. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS018Editor1;
  1998. private Infragistics.Win.Misc.UltraLabel MS018Lab3;
  1999. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS018Editor2;
  2000. private Infragistics.Win.Misc.UltraLabel MS018Lab4;
  2001. private Infragistics.Win.Misc.UltraLabel MS019Lab1;
  2002. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS019Editor1;
  2003. private Infragistics.Win.Misc.UltraLabel MS019Lab2;
  2004. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  2005. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  2006. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  2007. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtMemo;
  2008. private Infragistics.Win.Misc.UltraPanel ultraPanel1;
  2009. private Infragistics.Win.Misc.UltraLabel ultraLabel4;
  2010. private Infragistics.Win.Misc.UltraLabel MS002Lab0;
  2011. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS002Editor0;
  2012. private Infragistics.Win.Misc.UltraLabel MS011Lab0;
  2013. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS011Editor0;
  2014. private Infragistics.Win.Misc.UltraLabel MS010Lab0;
  2015. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS010Editor0;
  2016. private Infragistics.Win.Misc.UltraLabel MS009Lab0;
  2017. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS009Editor0;
  2018. private Infragistics.Win.Misc.UltraLabel MS008Lab0;
  2019. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS008Editor0;
  2020. private Infragistics.Win.Misc.UltraLabel MS007Lab0;
  2021. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS007Editor0;
  2022. private Infragistics.Win.Misc.UltraLabel MS006Lab0;
  2023. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS006Editor0;
  2024. private Infragistics.Win.Misc.UltraLabel MS005Lab0;
  2025. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS005Editor0;
  2026. private Infragistics.Win.Misc.UltraLabel MS004Lab0;
  2027. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS004Editor0;
  2028. private Infragistics.Win.Misc.UltraLabel MS003Lab0;
  2029. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS003Editor0;
  2030. private Infragistics.Win.Misc.UltraLabel MS018Lab0;
  2031. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS018Editor0;
  2032. private Infragistics.Win.Misc.UltraLabel ultraLabel5;
  2033. private Infragistics.Win.Misc.UltraLabel ultraLabel6;
  2034. private Infragistics.Win.Misc.UltraLabel MS025Lab3;
  2035. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS025Editor2;
  2036. private Infragistics.Win.Misc.UltraLabel MS025Lab2;
  2037. private Infragistics.Win.Misc.UltraLabel MS025Lab1;
  2038. private Infragistics.Win.UltraWinEditors.UltraNumericEditor MS025Editor1;
  2039. }
  2040. }