FundQ.Designer.cs 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561
  1. namespace ddq
  2. {
  3. partial class FundQ
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.panStaticData = new System.Windows.Forms.Panel();
  29. this.lblDomicile = new System.Windows.Forms.Label();
  30. this.lblInceptionDate = new System.Windows.Forms.Label();
  31. this.lblCategory = new System.Windows.Forms.Label();
  32. this.lblMainCode = new System.Windows.Forms.Label();
  33. this.lblFundName = new System.Windows.Forms.Label();
  34. this.tbcFund = new System.Windows.Forms.TabControl();
  35. this.tabGeneralInfo = new System.Windows.Forms.TabPage();
  36. this.grdTER = new System.Windows.Forms.DataGridView();
  37. this.grbFees = new System.Windows.Forms.GroupBox();
  38. this.txtSubscriptionFee = new System.Windows.Forms.TextBox();
  39. this.label8 = new System.Windows.Forms.Label();
  40. this.txtRedemptionFee = new System.Windows.Forms.TextBox();
  41. this.label7 = new System.Windows.Forms.Label();
  42. this.txtManagementFee = new System.Windows.Forms.TextBox();
  43. this.label6 = new System.Windows.Forms.Label();
  44. this.label5 = new System.Windows.Forms.Label();
  45. this.grdPortfolioManager = new System.Windows.Forms.DataGridView();
  46. this.label4 = new System.Windows.Forms.Label();
  47. this.txtInvestmentPhilosophy = new System.Windows.Forms.TextBox();
  48. this.txtBenchmark = new System.Windows.Forms.TextBox();
  49. this.label3 = new System.Windows.Forms.Label();
  50. this.label2 = new System.Windows.Forms.Label();
  51. this.txtInvestmentObjective = new System.Windows.Forms.TextBox();
  52. this.label1 = new System.Windows.Forms.Label();
  53. this.tabProcess = new System.Windows.Forms.TabPage();
  54. this.tabRisk = new System.Windows.Forms.TabPage();
  55. this.tabOwnership = new System.Windows.Forms.TabPage();
  56. this.tabPerformance = new System.Windows.Forms.TabPage();
  57. this.txtAdministrationFee = new System.Windows.Forms.TextBox();
  58. this.label9 = new System.Windows.Forms.Label();
  59. this.txtTrusteeFee = new System.Windows.Forms.TextBox();
  60. this.label11 = new System.Windows.Forms.Label();
  61. this.txtPerformanceFee = new System.Windows.Forms.TextBox();
  62. this.label12 = new System.Windows.Forms.Label();
  63. this.txtSwitchingFee = new System.Windows.Forms.TextBox();
  64. this.label13 = new System.Windows.Forms.Label();
  65. this.label14 = new System.Windows.Forms.Label();
  66. this.txtPolicyOfClosingFund = new System.Windows.Forms.TextBox();
  67. this.panel1 = new System.Windows.Forms.Panel();
  68. this.btnSaveGeneralInfo = new System.Windows.Forms.Button();
  69. this.panStaticData.SuspendLayout();
  70. this.tbcFund.SuspendLayout();
  71. this.tabGeneralInfo.SuspendLayout();
  72. ((System.ComponentModel.ISupportInitialize)(this.grdTER)).BeginInit();
  73. this.grbFees.SuspendLayout();
  74. ((System.ComponentModel.ISupportInitialize)(this.grdPortfolioManager)).BeginInit();
  75. this.panel1.SuspendLayout();
  76. this.SuspendLayout();
  77. //
  78. // panStaticData
  79. //
  80. this.panStaticData.Controls.Add(this.lblDomicile);
  81. this.panStaticData.Controls.Add(this.lblInceptionDate);
  82. this.panStaticData.Controls.Add(this.lblCategory);
  83. this.panStaticData.Controls.Add(this.lblMainCode);
  84. this.panStaticData.Controls.Add(this.lblFundName);
  85. this.panStaticData.Dock = System.Windows.Forms.DockStyle.Top;
  86. this.panStaticData.Location = new System.Drawing.Point(0, 0);
  87. this.panStaticData.Name = "panStaticData";
  88. this.panStaticData.Size = new System.Drawing.Size(1067, 76);
  89. this.panStaticData.TabIndex = 0;
  90. //
  91. // lblDomicile
  92. //
  93. this.lblDomicile.AutoSize = true;
  94. this.lblDomicile.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  95. this.lblDomicile.Location = new System.Drawing.Point(382, 49);
  96. this.lblDomicile.Name = "lblDomicile";
  97. this.lblDomicile.Size = new System.Drawing.Size(59, 14);
  98. this.lblDomicile.TabIndex = 4;
  99. this.lblDomicile.Text = "Domicile:";
  100. //
  101. // lblInceptionDate
  102. //
  103. this.lblInceptionDate.AutoSize = true;
  104. this.lblInceptionDate.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  105. this.lblInceptionDate.Location = new System.Drawing.Point(183, 49);
  106. this.lblInceptionDate.Name = "lblInceptionDate";
  107. this.lblInceptionDate.Size = new System.Drawing.Size(121, 14);
  108. this.lblInceptionDate.TabIndex = 3;
  109. this.lblInceptionDate.Text = "Launched: XXXX-XX-XX";
  110. //
  111. // lblCategory
  112. //
  113. this.lblCategory.AutoSize = true;
  114. this.lblCategory.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  115. this.lblCategory.Location = new System.Drawing.Point(546, 49);
  116. this.lblCategory.Name = "lblCategory";
  117. this.lblCategory.Size = new System.Drawing.Size(56, 14);
  118. this.lblCategory.TabIndex = 2;
  119. this.lblCategory.Text = "Category:";
  120. //
  121. // lblMainCode
  122. //
  123. this.lblMainCode.AutoSize = true;
  124. this.lblMainCode.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  125. this.lblMainCode.Location = new System.Drawing.Point(22, 49);
  126. this.lblMainCode.Name = "lblMainCode";
  127. this.lblMainCode.Size = new System.Drawing.Size(37, 14);
  128. this.lblMainCode.TabIndex = 1;
  129. this.lblMainCode.Text = "Code:";
  130. //
  131. // lblFundName
  132. //
  133. this.lblFundName.AutoSize = true;
  134. this.lblFundName.Location = new System.Drawing.Point(22, 22);
  135. this.lblFundName.Name = "lblFundName";
  136. this.lblFundName.Size = new System.Drawing.Size(79, 18);
  137. this.lblFundName.TabIndex = 0;
  138. this.lblFundName.Text = "Fund Name";
  139. //
  140. // tbcFund
  141. //
  142. this.tbcFund.Controls.Add(this.tabGeneralInfo);
  143. this.tbcFund.Controls.Add(this.tabProcess);
  144. this.tbcFund.Controls.Add(this.tabRisk);
  145. this.tbcFund.Controls.Add(this.tabOwnership);
  146. this.tbcFund.Controls.Add(this.tabPerformance);
  147. this.tbcFund.Dock = System.Windows.Forms.DockStyle.Fill;
  148. this.tbcFund.Location = new System.Drawing.Point(0, 76);
  149. this.tbcFund.Name = "tbcFund";
  150. this.tbcFund.SelectedIndex = 0;
  151. this.tbcFund.Size = new System.Drawing.Size(1067, 599);
  152. this.tbcFund.TabIndex = 1;
  153. //
  154. // tabGeneralInfo
  155. //
  156. this.tabGeneralInfo.AutoScroll = true;
  157. this.tabGeneralInfo.Controls.Add(this.panel1);
  158. this.tabGeneralInfo.Controls.Add(this.txtPolicyOfClosingFund);
  159. this.tabGeneralInfo.Controls.Add(this.label14);
  160. this.tabGeneralInfo.Controls.Add(this.grdTER);
  161. this.tabGeneralInfo.Controls.Add(this.grbFees);
  162. this.tabGeneralInfo.Controls.Add(this.label5);
  163. this.tabGeneralInfo.Controls.Add(this.grdPortfolioManager);
  164. this.tabGeneralInfo.Controls.Add(this.label4);
  165. this.tabGeneralInfo.Controls.Add(this.txtInvestmentPhilosophy);
  166. this.tabGeneralInfo.Controls.Add(this.txtBenchmark);
  167. this.tabGeneralInfo.Controls.Add(this.label3);
  168. this.tabGeneralInfo.Controls.Add(this.label2);
  169. this.tabGeneralInfo.Controls.Add(this.txtInvestmentObjective);
  170. this.tabGeneralInfo.Controls.Add(this.label1);
  171. this.tabGeneralInfo.Location = new System.Drawing.Point(4, 27);
  172. this.tabGeneralInfo.Name = "tabGeneralInfo";
  173. this.tabGeneralInfo.Padding = new System.Windows.Forms.Padding(3);
  174. this.tabGeneralInfo.Size = new System.Drawing.Size(1059, 568);
  175. this.tabGeneralInfo.TabIndex = 0;
  176. this.tabGeneralInfo.Text = "General Info";
  177. this.tabGeneralInfo.UseVisualStyleBackColor = true;
  178. //
  179. // grdTER
  180. //
  181. this.grdTER.AllowUserToAddRows = false;
  182. this.grdTER.AllowUserToDeleteRows = false;
  183. this.grdTER.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  184. this.grdTER.Location = new System.Drawing.Point(24, 532);
  185. this.grdTER.Name = "grdTER";
  186. this.grdTER.RowTemplate.Height = 23;
  187. this.grdTER.Size = new System.Drawing.Size(340, 210);
  188. this.grdTER.TabIndex = 10;
  189. //
  190. // grbFees
  191. //
  192. this.grbFees.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  193. | System.Windows.Forms.AnchorStyles.Right)));
  194. this.grbFees.Controls.Add(this.txtTrusteeFee);
  195. this.grbFees.Controls.Add(this.label11);
  196. this.grbFees.Controls.Add(this.txtPerformanceFee);
  197. this.grbFees.Controls.Add(this.label12);
  198. this.grbFees.Controls.Add(this.txtSwitchingFee);
  199. this.grbFees.Controls.Add(this.label13);
  200. this.grbFees.Controls.Add(this.txtAdministrationFee);
  201. this.grbFees.Controls.Add(this.label9);
  202. this.grbFees.Controls.Add(this.txtSubscriptionFee);
  203. this.grbFees.Controls.Add(this.label8);
  204. this.grbFees.Controls.Add(this.txtRedemptionFee);
  205. this.grbFees.Controls.Add(this.label7);
  206. this.grbFees.Controls.Add(this.txtManagementFee);
  207. this.grbFees.Controls.Add(this.label6);
  208. this.grbFees.Location = new System.Drawing.Point(370, 524);
  209. this.grbFees.Name = "grbFees";
  210. this.grbFees.Size = new System.Drawing.Size(661, 218);
  211. this.grbFees.TabIndex = 9;
  212. this.grbFees.TabStop = false;
  213. this.grbFees.Text = "Current Fees";
  214. //
  215. // txtSubscriptionFee
  216. //
  217. this.txtSubscriptionFee.Location = new System.Drawing.Point(469, 22);
  218. this.txtSubscriptionFee.Name = "txtSubscriptionFee";
  219. this.txtSubscriptionFee.Size = new System.Drawing.Size(100, 26);
  220. this.txtSubscriptionFee.TabIndex = 3;
  221. //
  222. // label8
  223. //
  224. this.label8.AutoSize = true;
  225. this.label8.Location = new System.Drawing.Point(342, 25);
  226. this.label8.Name = "label8";
  227. this.label8.Size = new System.Drawing.Size(110, 18);
  228. this.label8.TabIndex = 2;
  229. this.label8.Text = "Subscription Fee";
  230. //
  231. // txtRedemptionFee
  232. //
  233. this.txtRedemptionFee.Location = new System.Drawing.Point(150, 58);
  234. this.txtRedemptionFee.Name = "txtRedemptionFee";
  235. this.txtRedemptionFee.Size = new System.Drawing.Size(100, 26);
  236. this.txtRedemptionFee.TabIndex = 5;
  237. //
  238. // label7
  239. //
  240. this.label7.AutoSize = true;
  241. this.label7.Location = new System.Drawing.Point(23, 61);
  242. this.label7.Name = "label7";
  243. this.label7.Size = new System.Drawing.Size(110, 18);
  244. this.label7.TabIndex = 4;
  245. this.label7.Text = "Redemption Fee";
  246. //
  247. // txtManagementFee
  248. //
  249. this.txtManagementFee.Location = new System.Drawing.Point(150, 22);
  250. this.txtManagementFee.Name = "txtManagementFee";
  251. this.txtManagementFee.Size = new System.Drawing.Size(100, 26);
  252. this.txtManagementFee.TabIndex = 1;
  253. //
  254. // label6
  255. //
  256. this.label6.AutoSize = true;
  257. this.label6.Location = new System.Drawing.Point(23, 25);
  258. this.label6.Name = "label6";
  259. this.label6.Size = new System.Drawing.Size(116, 18);
  260. this.label6.TabIndex = 0;
  261. this.label6.Text = "Management Fee";
  262. //
  263. // label5
  264. //
  265. this.label5.AutoSize = true;
  266. this.label5.Location = new System.Drawing.Point(21, 510);
  267. this.label5.Name = "label5";
  268. this.label5.Size = new System.Drawing.Size(86, 18);
  269. this.label5.TabIndex = 8;
  270. this.label5.Text = "Fee & Charges";
  271. //
  272. // grdPortfolioManager
  273. //
  274. this.grdPortfolioManager.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  275. | System.Windows.Forms.AnchorStyles.Right)));
  276. this.grdPortfolioManager.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  277. this.grdPortfolioManager.Location = new System.Drawing.Point(24, 398);
  278. this.grdPortfolioManager.Name = "grdPortfolioManager";
  279. this.grdPortfolioManager.RowTemplate.Height = 23;
  280. this.grdPortfolioManager.Size = new System.Drawing.Size(1007, 85);
  281. this.grdPortfolioManager.TabIndex = 7;
  282. //
  283. // label4
  284. //
  285. this.label4.AutoSize = true;
  286. this.label4.Location = new System.Drawing.Point(21, 377);
  287. this.label4.Name = "label4";
  288. this.label4.Size = new System.Drawing.Size(119, 18);
  289. this.label4.TabIndex = 6;
  290. this.label4.Text = "Portfolio Manager";
  291. //
  292. // txtInvestmentPhilosophy
  293. //
  294. this.txtInvestmentPhilosophy.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  295. | System.Windows.Forms.AnchorStyles.Right)));
  296. this.txtInvestmentPhilosophy.Location = new System.Drawing.Point(24, 255);
  297. this.txtInvestmentPhilosophy.Multiline = true;
  298. this.txtInvestmentPhilosophy.Name = "txtInvestmentPhilosophy";
  299. this.txtInvestmentPhilosophy.Size = new System.Drawing.Size(1007, 95);
  300. this.txtInvestmentPhilosophy.TabIndex = 5;
  301. //
  302. // txtBenchmark
  303. //
  304. this.txtBenchmark.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  305. | System.Windows.Forms.AnchorStyles.Right)));
  306. this.txtBenchmark.Location = new System.Drawing.Point(24, 179);
  307. this.txtBenchmark.Name = "txtBenchmark";
  308. this.txtBenchmark.Size = new System.Drawing.Size(1007, 26);
  309. this.txtBenchmark.TabIndex = 4;
  310. //
  311. // label3
  312. //
  313. this.label3.AutoSize = true;
  314. this.label3.Location = new System.Drawing.Point(21, 158);
  315. this.label3.Name = "label3";
  316. this.label3.Size = new System.Drawing.Size(77, 18);
  317. this.label3.TabIndex = 3;
  318. this.label3.Text = "Benchmark";
  319. //
  320. // label2
  321. //
  322. this.label2.AutoSize = true;
  323. this.label2.Location = new System.Drawing.Point(21, 234);
  324. this.label2.Name = "label2";
  325. this.label2.Size = new System.Drawing.Size(151, 18);
  326. this.label2.TabIndex = 2;
  327. this.label2.Text = "Investment Philosophy";
  328. //
  329. // txtInvestmentObjective
  330. //
  331. this.txtInvestmentObjective.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  332. | System.Windows.Forms.AnchorStyles.Right)));
  333. this.txtInvestmentObjective.Location = new System.Drawing.Point(24, 39);
  334. this.txtInvestmentObjective.Multiline = true;
  335. this.txtInvestmentObjective.Name = "txtInvestmentObjective";
  336. this.txtInvestmentObjective.Size = new System.Drawing.Size(1007, 95);
  337. this.txtInvestmentObjective.TabIndex = 1;
  338. //
  339. // label1
  340. //
  341. this.label1.AutoSize = true;
  342. this.label1.Location = new System.Drawing.Point(21, 18);
  343. this.label1.Name = "label1";
  344. this.label1.Size = new System.Drawing.Size(141, 18);
  345. this.label1.TabIndex = 0;
  346. this.label1.Text = "Investment Objective";
  347. //
  348. // tabProcess
  349. //
  350. this.tabProcess.Location = new System.Drawing.Point(4, 27);
  351. this.tabProcess.Name = "tabProcess";
  352. this.tabProcess.Padding = new System.Windows.Forms.Padding(3);
  353. this.tabProcess.Size = new System.Drawing.Size(1059, 568);
  354. this.tabProcess.TabIndex = 1;
  355. this.tabProcess.Text = "Process";
  356. this.tabProcess.UseVisualStyleBackColor = true;
  357. //
  358. // tabRisk
  359. //
  360. this.tabRisk.Location = new System.Drawing.Point(4, 27);
  361. this.tabRisk.Name = "tabRisk";
  362. this.tabRisk.Size = new System.Drawing.Size(1059, 568);
  363. this.tabRisk.TabIndex = 2;
  364. this.tabRisk.Text = "Risk & Compliance";
  365. this.tabRisk.UseVisualStyleBackColor = true;
  366. //
  367. // tabOwnership
  368. //
  369. this.tabOwnership.Location = new System.Drawing.Point(4, 27);
  370. this.tabOwnership.Name = "tabOwnership";
  371. this.tabOwnership.Size = new System.Drawing.Size(1059, 568);
  372. this.tabOwnership.TabIndex = 3;
  373. this.tabOwnership.Text = "Ownership";
  374. this.tabOwnership.UseVisualStyleBackColor = true;
  375. //
  376. // tabPerformance
  377. //
  378. this.tabPerformance.Location = new System.Drawing.Point(4, 27);
  379. this.tabPerformance.Name = "tabPerformance";
  380. this.tabPerformance.Size = new System.Drawing.Size(1059, 568);
  381. this.tabPerformance.TabIndex = 4;
  382. this.tabPerformance.Text = "Performance";
  383. this.tabPerformance.UseVisualStyleBackColor = true;
  384. //
  385. // txtAdministrationFee
  386. //
  387. this.txtAdministrationFee.Location = new System.Drawing.Point(469, 58);
  388. this.txtAdministrationFee.Name = "txtAdministrationFee";
  389. this.txtAdministrationFee.Size = new System.Drawing.Size(100, 26);
  390. this.txtAdministrationFee.TabIndex = 7;
  391. //
  392. // label9
  393. //
  394. this.label9.AutoSize = true;
  395. this.label9.Location = new System.Drawing.Point(342, 61);
  396. this.label9.Name = "label9";
  397. this.label9.Size = new System.Drawing.Size(126, 18);
  398. this.label9.TabIndex = 6;
  399. this.label9.Text = "Administration Fee";
  400. //
  401. // txtTrusteeFee
  402. //
  403. this.txtTrusteeFee.Location = new System.Drawing.Point(469, 90);
  404. this.txtTrusteeFee.Name = "txtTrusteeFee";
  405. this.txtTrusteeFee.Size = new System.Drawing.Size(100, 26);
  406. this.txtTrusteeFee.TabIndex = 11;
  407. //
  408. // label11
  409. //
  410. this.label11.AutoSize = true;
  411. this.label11.Location = new System.Drawing.Point(342, 93);
  412. this.label11.Name = "label11";
  413. this.label11.Size = new System.Drawing.Size(80, 18);
  414. this.label11.TabIndex = 10;
  415. this.label11.Text = "Trustee Fee";
  416. //
  417. // txtPerformanceFee
  418. //
  419. this.txtPerformanceFee.Location = new System.Drawing.Point(150, 126);
  420. this.txtPerformanceFee.Multiline = true;
  421. this.txtPerformanceFee.Name = "txtPerformanceFee";
  422. this.txtPerformanceFee.Size = new System.Drawing.Size(419, 77);
  423. this.txtPerformanceFee.TabIndex = 13;
  424. //
  425. // label12
  426. //
  427. this.label12.AutoSize = true;
  428. this.label12.Location = new System.Drawing.Point(23, 129);
  429. this.label12.Name = "label12";
  430. this.label12.Size = new System.Drawing.Size(114, 18);
  431. this.label12.TabIndex = 12;
  432. this.label12.Text = "Performance Fee";
  433. //
  434. // txtSwitchingFee
  435. //
  436. this.txtSwitchingFee.Location = new System.Drawing.Point(150, 90);
  437. this.txtSwitchingFee.Name = "txtSwitchingFee";
  438. this.txtSwitchingFee.Size = new System.Drawing.Size(100, 26);
  439. this.txtSwitchingFee.TabIndex = 9;
  440. //
  441. // label13
  442. //
  443. this.label13.AutoSize = true;
  444. this.label13.Location = new System.Drawing.Point(23, 93);
  445. this.label13.Name = "label13";
  446. this.label13.Size = new System.Drawing.Size(94, 18);
  447. this.label13.TabIndex = 8;
  448. this.label13.Text = "Switching Fee";
  449. //
  450. // label14
  451. //
  452. this.label14.AutoSize = true;
  453. this.label14.Location = new System.Drawing.Point(21, 757);
  454. this.label14.Name = "label14";
  455. this.label14.Size = new System.Drawing.Size(143, 18);
  456. this.label14.TabIndex = 11;
  457. this.label14.Text = "Policy of Closing Fund";
  458. //
  459. // txtPolicyOfClosingFund
  460. //
  461. this.txtPolicyOfClosingFund.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  462. | System.Windows.Forms.AnchorStyles.Right)));
  463. this.txtPolicyOfClosingFund.Location = new System.Drawing.Point(24, 779);
  464. this.txtPolicyOfClosingFund.Multiline = true;
  465. this.txtPolicyOfClosingFund.Name = "txtPolicyOfClosingFund";
  466. this.txtPolicyOfClosingFund.Size = new System.Drawing.Size(1007, 167);
  467. this.txtPolicyOfClosingFund.TabIndex = 12;
  468. //
  469. // panel1
  470. //
  471. this.panel1.Controls.Add(this.btnSaveGeneralInfo);
  472. this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
  473. this.panel1.Location = new System.Drawing.Point(3, 946);
  474. this.panel1.Name = "panel1";
  475. this.panel1.Size = new System.Drawing.Size(1036, 50);
  476. this.panel1.TabIndex = 13;
  477. //
  478. // btnSaveGeneralInfo
  479. //
  480. this.btnSaveGeneralInfo.Location = new System.Drawing.Point(936, 15);
  481. this.btnSaveGeneralInfo.Name = "btnSaveGeneralInfo";
  482. this.btnSaveGeneralInfo.Size = new System.Drawing.Size(75, 23);
  483. this.btnSaveGeneralInfo.TabIndex = 0;
  484. this.btnSaveGeneralInfo.Text = "Save";
  485. this.btnSaveGeneralInfo.UseVisualStyleBackColor = true;
  486. this.btnSaveGeneralInfo.Click += new System.EventHandler(this.btnSaveGeneralInfo_Click);
  487. //
  488. // FundQ
  489. //
  490. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 18F);
  491. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  492. this.ClientSize = new System.Drawing.Size(1067, 675);
  493. this.Controls.Add(this.tbcFund);
  494. this.Controls.Add(this.panStaticData);
  495. this.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  496. this.Margin = new System.Windows.Forms.Padding(4);
  497. this.Name = "FundQ";
  498. this.Text = "Fund Data";
  499. this.Load += new System.EventHandler(this.FundQ_Load);
  500. this.panStaticData.ResumeLayout(false);
  501. this.panStaticData.PerformLayout();
  502. this.tbcFund.ResumeLayout(false);
  503. this.tabGeneralInfo.ResumeLayout(false);
  504. this.tabGeneralInfo.PerformLayout();
  505. ((System.ComponentModel.ISupportInitialize)(this.grdTER)).EndInit();
  506. this.grbFees.ResumeLayout(false);
  507. this.grbFees.PerformLayout();
  508. ((System.ComponentModel.ISupportInitialize)(this.grdPortfolioManager)).EndInit();
  509. this.panel1.ResumeLayout(false);
  510. this.ResumeLayout(false);
  511. }
  512. #endregion
  513. private System.Windows.Forms.Panel panStaticData;
  514. private System.Windows.Forms.Label lblMainCode;
  515. private System.Windows.Forms.Label lblFundName;
  516. private System.Windows.Forms.TabControl tbcFund;
  517. private System.Windows.Forms.TabPage tabGeneralInfo;
  518. private System.Windows.Forms.TabPage tabProcess;
  519. private System.Windows.Forms.TabPage tabRisk;
  520. private System.Windows.Forms.TabPage tabOwnership;
  521. private System.Windows.Forms.TabPage tabPerformance;
  522. private System.Windows.Forms.Label lblDomicile;
  523. private System.Windows.Forms.Label lblInceptionDate;
  524. private System.Windows.Forms.Label lblCategory;
  525. private System.Windows.Forms.Label label3;
  526. private System.Windows.Forms.Label label2;
  527. private System.Windows.Forms.TextBox txtInvestmentObjective;
  528. private System.Windows.Forms.Label label1;
  529. private System.Windows.Forms.DataGridView grdPortfolioManager;
  530. private System.Windows.Forms.Label label4;
  531. private System.Windows.Forms.TextBox txtInvestmentPhilosophy;
  532. private System.Windows.Forms.TextBox txtBenchmark;
  533. private System.Windows.Forms.GroupBox grbFees;
  534. private System.Windows.Forms.Label label5;
  535. private System.Windows.Forms.DataGridView grdTER;
  536. private System.Windows.Forms.TextBox txtManagementFee;
  537. private System.Windows.Forms.Label label6;
  538. private System.Windows.Forms.TextBox txtRedemptionFee;
  539. private System.Windows.Forms.Label label7;
  540. private System.Windows.Forms.TextBox txtSubscriptionFee;
  541. private System.Windows.Forms.Label label8;
  542. private System.Windows.Forms.TextBox txtAdministrationFee;
  543. private System.Windows.Forms.Label label9;
  544. private System.Windows.Forms.Label label14;
  545. private System.Windows.Forms.TextBox txtTrusteeFee;
  546. private System.Windows.Forms.Label label11;
  547. private System.Windows.Forms.TextBox txtPerformanceFee;
  548. private System.Windows.Forms.Label label12;
  549. private System.Windows.Forms.TextBox txtSwitchingFee;
  550. private System.Windows.Forms.Label label13;
  551. private System.Windows.Forms.TextBox txtPolicyOfClosingFund;
  552. private System.Windows.Forms.Panel panel1;
  553. private System.Windows.Forms.Button btnSaveGeneralInfo;
  554. }
  555. }