FrmGlMoneyAsk.Designer.cs 95 KB

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