DDQ.Designer.cs 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862
  1. namespace ddq
  2. {
  3. partial class frmMain
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.tbcMain = new System.Windows.Forms.TabControl();
  29. this.tabRequests = new System.Windows.Forms.TabPage();
  30. this.panRequests = new System.Windows.Forms.Panel();
  31. this.panRequestList = new System.Windows.Forms.Panel();
  32. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  33. this.panRequestsTool = new System.Windows.Forms.Panel();
  34. this.cmbRequestAction = new System.Windows.Forms.ComboBox();
  35. this.label1 = new System.Windows.Forms.Label();
  36. this.btnSearchRequest = new System.Windows.Forms.Button();
  37. this.txtSearchRequest = new System.Windows.Forms.TextBox();
  38. this.tabData = new System.Windows.Forms.TabPage();
  39. this.tbcData = new System.Windows.Forms.TabControl();
  40. this.tabFunds = new System.Windows.Forms.TabPage();
  41. this.panFundList = new System.Windows.Forms.Panel();
  42. this.grdFundList = new System.Windows.Forms.DataGridView();
  43. this.panFundsTool = new System.Windows.Forms.Panel();
  44. this.cmbFundCategory = new System.Windows.Forms.ComboBox();
  45. this.label2 = new System.Windows.Forms.Label();
  46. this.btnSearchFund = new System.Windows.Forms.Button();
  47. this.txtSearchFund = new System.Windows.Forms.TextBox();
  48. this.tabPeople = new System.Windows.Forms.TabPage();
  49. this.btnAddPersonn = new System.Windows.Forms.Button();
  50. this.grdPeopleList = new System.Windows.Forms.DataGridView();
  51. this.panPeopleTool = new System.Windows.Forms.Panel();
  52. this.cmbRole = new System.Windows.Forms.ComboBox();
  53. this.label3 = new System.Windows.Forms.Label();
  54. this.btnSearchPeople = new System.Windows.Forms.Button();
  55. this.txtSearchPeople = new System.Windows.Forms.TextBox();
  56. this.tabCompany = new System.Windows.Forms.TabPage();
  57. this.panCompanyBottom = new System.Windows.Forms.Panel();
  58. this.panel1 = new System.Windows.Forms.Panel();
  59. this.grdClientBreakdown = new System.Windows.Forms.DataGridView();
  60. this.label12 = new System.Windows.Forms.Label();
  61. this.grdAUM = new System.Windows.Forms.DataGridView();
  62. this.label11 = new System.Windows.Forms.Label();
  63. this.grdCreditRating = new System.Windows.Forms.DataGridView();
  64. this.label10 = new System.Windows.Forms.Label();
  65. this.grdFinancialData = new System.Windows.Forms.DataGridView();
  66. this.label9 = new System.Windows.Forms.Label();
  67. this.label8 = new System.Windows.Forms.Label();
  68. this.txtParentCompanyName = new System.Windows.Forms.TextBox();
  69. this.label7 = new System.Windows.Forms.Label();
  70. this.txtDetailOfAcquired = new System.Windows.Forms.TextBox();
  71. this.label6 = new System.Windows.Forms.Label();
  72. this.grdAcquisiton = new System.Windows.Forms.DataGridView();
  73. this.label5 = new System.Windows.Forms.Label();
  74. this.dtpIncepionDate = new System.Windows.Forms.DateTimePicker();
  75. this.label4 = new System.Windows.Forms.Label();
  76. this.tabSettings = new System.Windows.Forms.TabPage();
  77. this.btnSaveCompany = new System.Windows.Forms.Button();
  78. this.chkSupportFinancial = new System.Windows.Forms.CheckBox();
  79. this.chkSupportSales = new System.Windows.Forms.CheckBox();
  80. this.chkSupportMarketing = new System.Windows.Forms.CheckBox();
  81. this.chkSupportTechnical = new System.Windows.Forms.CheckBox();
  82. this.chkSupportPersonnel = new System.Windows.Forms.CheckBox();
  83. this.agent = new System.Windows.Forms.DataGridViewComboBoxColumn();
  84. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  85. this.tbcMain.SuspendLayout();
  86. this.tabRequests.SuspendLayout();
  87. this.panRequests.SuspendLayout();
  88. this.panRequestList.SuspendLayout();
  89. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  90. this.panRequestsTool.SuspendLayout();
  91. this.tabData.SuspendLayout();
  92. this.tbcData.SuspendLayout();
  93. this.tabFunds.SuspendLayout();
  94. this.panFundList.SuspendLayout();
  95. ((System.ComponentModel.ISupportInitialize)(this.grdFundList)).BeginInit();
  96. this.panFundsTool.SuspendLayout();
  97. this.tabPeople.SuspendLayout();
  98. ((System.ComponentModel.ISupportInitialize)(this.grdPeopleList)).BeginInit();
  99. this.panPeopleTool.SuspendLayout();
  100. this.tabCompany.SuspendLayout();
  101. this.panCompanyBottom.SuspendLayout();
  102. this.panel1.SuspendLayout();
  103. ((System.ComponentModel.ISupportInitialize)(this.grdClientBreakdown)).BeginInit();
  104. ((System.ComponentModel.ISupportInitialize)(this.grdAUM)).BeginInit();
  105. ((System.ComponentModel.ISupportInitialize)(this.grdCreditRating)).BeginInit();
  106. ((System.ComponentModel.ISupportInitialize)(this.grdFinancialData)).BeginInit();
  107. ((System.ComponentModel.ISupportInitialize)(this.grdAcquisiton)).BeginInit();
  108. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  109. this.SuspendLayout();
  110. //
  111. // tbcMain
  112. //
  113. this.tbcMain.Controls.Add(this.tabRequests);
  114. this.tbcMain.Controls.Add(this.tabData);
  115. this.tbcMain.Controls.Add(this.tabSettings);
  116. this.tbcMain.Dock = System.Windows.Forms.DockStyle.Fill;
  117. this.tbcMain.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  118. this.tbcMain.ItemSize = new System.Drawing.Size(76, 30);
  119. this.tbcMain.Location = new System.Drawing.Point(0, 0);
  120. this.tbcMain.Name = "tbcMain";
  121. this.tbcMain.SelectedIndex = 0;
  122. this.tbcMain.Size = new System.Drawing.Size(800, 525);
  123. this.tbcMain.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  124. this.tbcMain.TabIndex = 0;
  125. this.tbcMain.SelectedIndexChanged += new System.EventHandler(this.tbcMain_SelectedIndexChanged);
  126. //
  127. // tabRequests
  128. //
  129. this.tabRequests.Controls.Add(this.panRequests);
  130. this.tabRequests.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  131. this.tabRequests.Location = new System.Drawing.Point(4, 34);
  132. this.tabRequests.Name = "tabRequests";
  133. this.tabRequests.Padding = new System.Windows.Forms.Padding(3);
  134. this.tabRequests.Size = new System.Drawing.Size(792, 487);
  135. this.tabRequests.TabIndex = 0;
  136. this.tabRequests.Text = "Requests";
  137. this.tabRequests.UseVisualStyleBackColor = true;
  138. //
  139. // panRequests
  140. //
  141. this.panRequests.Controls.Add(this.panRequestList);
  142. this.panRequests.Controls.Add(this.panRequestsTool);
  143. this.panRequests.Dock = System.Windows.Forms.DockStyle.Fill;
  144. this.panRequests.Location = new System.Drawing.Point(3, 3);
  145. this.panRequests.Name = "panRequests";
  146. this.panRequests.Size = new System.Drawing.Size(786, 481);
  147. this.panRequests.TabIndex = 0;
  148. //
  149. // panRequestList
  150. //
  151. this.panRequestList.Controls.Add(this.dataGridView1);
  152. this.panRequestList.Dock = System.Windows.Forms.DockStyle.Fill;
  153. this.panRequestList.Location = new System.Drawing.Point(0, 55);
  154. this.panRequestList.Name = "panRequestList";
  155. this.panRequestList.Size = new System.Drawing.Size(786, 426);
  156. this.panRequestList.TabIndex = 1;
  157. //
  158. // dataGridView1
  159. //
  160. this.dataGridView1.AllowUserToAddRows = false;
  161. this.dataGridView1.AllowUserToDeleteRows = false;
  162. this.dataGridView1.AllowUserToOrderColumns = true;
  163. this.dataGridView1.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCells;
  164. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  165. this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
  166. this.dataGridView1.Location = new System.Drawing.Point(0, 0);
  167. this.dataGridView1.Name = "dataGridView1";
  168. this.dataGridView1.ReadOnly = true;
  169. this.dataGridView1.RowTemplate.Height = 23;
  170. this.dataGridView1.Size = new System.Drawing.Size(786, 426);
  171. this.dataGridView1.TabIndex = 0;
  172. //
  173. // panRequestsTool
  174. //
  175. this.panRequestsTool.Controls.Add(this.cmbRequestAction);
  176. this.panRequestsTool.Controls.Add(this.label1);
  177. this.panRequestsTool.Controls.Add(this.btnSearchRequest);
  178. this.panRequestsTool.Controls.Add(this.txtSearchRequest);
  179. this.panRequestsTool.Dock = System.Windows.Forms.DockStyle.Top;
  180. this.panRequestsTool.Location = new System.Drawing.Point(0, 0);
  181. this.panRequestsTool.Name = "panRequestsTool";
  182. this.panRequestsTool.Size = new System.Drawing.Size(786, 55);
  183. this.panRequestsTool.TabIndex = 0;
  184. //
  185. // cmbRequestAction
  186. //
  187. this.cmbRequestAction.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  188. this.cmbRequestAction.FormattingEnabled = true;
  189. this.cmbRequestAction.Location = new System.Drawing.Point(594, 13);
  190. this.cmbRequestAction.Name = "cmbRequestAction";
  191. this.cmbRequestAction.Size = new System.Drawing.Size(175, 26);
  192. this.cmbRequestAction.TabIndex = 3;
  193. //
  194. // label1
  195. //
  196. this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  197. this.label1.AutoSize = true;
  198. this.label1.Location = new System.Drawing.Point(541, 17);
  199. this.label1.Name = "label1";
  200. this.label1.Size = new System.Drawing.Size(47, 18);
  201. this.label1.TabIndex = 2;
  202. this.label1.Text = "Action";
  203. //
  204. // btnSearchRequest
  205. //
  206. this.btnSearchRequest.Location = new System.Drawing.Point(302, 13);
  207. this.btnSearchRequest.Name = "btnSearchRequest";
  208. this.btnSearchRequest.Size = new System.Drawing.Size(75, 26);
  209. this.btnSearchRequest.TabIndex = 1;
  210. this.btnSearchRequest.Text = "Search";
  211. this.btnSearchRequest.UseVisualStyleBackColor = true;
  212. //
  213. // txtSearchRequest
  214. //
  215. this.txtSearchRequest.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  216. this.txtSearchRequest.ForeColor = System.Drawing.SystemColors.GrayText;
  217. this.txtSearchRequest.Location = new System.Drawing.Point(16, 13);
  218. this.txtSearchRequest.Name = "txtSearchRequest";
  219. this.txtSearchRequest.Size = new System.Drawing.Size(279, 26);
  220. this.txtSearchRequest.TabIndex = 0;
  221. this.txtSearchRequest.Text = "Type in name of fund or requestor";
  222. //
  223. // tabData
  224. //
  225. this.tabData.Controls.Add(this.tbcData);
  226. this.tabData.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  227. this.tabData.Location = new System.Drawing.Point(4, 34);
  228. this.tabData.Name = "tabData";
  229. this.tabData.Padding = new System.Windows.Forms.Padding(3);
  230. this.tabData.Size = new System.Drawing.Size(792, 487);
  231. this.tabData.TabIndex = 1;
  232. this.tabData.Text = "Data";
  233. this.tabData.UseVisualStyleBackColor = true;
  234. //
  235. // tbcData
  236. //
  237. this.tbcData.Alignment = System.Windows.Forms.TabAlignment.Bottom;
  238. this.tbcData.Controls.Add(this.tabFunds);
  239. this.tbcData.Controls.Add(this.tabPeople);
  240. this.tbcData.Controls.Add(this.tabCompany);
  241. this.tbcData.Dock = System.Windows.Forms.DockStyle.Fill;
  242. this.tbcData.ItemSize = new System.Drawing.Size(70, 23);
  243. this.tbcData.Location = new System.Drawing.Point(3, 3);
  244. this.tbcData.Multiline = true;
  245. this.tbcData.Name = "tbcData";
  246. this.tbcData.SelectedIndex = 0;
  247. this.tbcData.Size = new System.Drawing.Size(786, 481);
  248. this.tbcData.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  249. this.tbcData.TabIndex = 0;
  250. this.tbcData.SelectedIndexChanged += new System.EventHandler(this.tbcData_SelectedIndexChanged);
  251. //
  252. // tabFunds
  253. //
  254. this.tabFunds.Controls.Add(this.panFundList);
  255. this.tabFunds.Controls.Add(this.panFundsTool);
  256. this.tabFunds.Location = new System.Drawing.Point(4, 4);
  257. this.tabFunds.Name = "tabFunds";
  258. this.tabFunds.Padding = new System.Windows.Forms.Padding(3);
  259. this.tabFunds.Size = new System.Drawing.Size(778, 450);
  260. this.tabFunds.TabIndex = 0;
  261. this.tabFunds.Text = "Funds";
  262. this.tabFunds.UseVisualStyleBackColor = true;
  263. //
  264. // panFundList
  265. //
  266. this.panFundList.Controls.Add(this.grdFundList);
  267. this.panFundList.Dock = System.Windows.Forms.DockStyle.Fill;
  268. this.panFundList.Location = new System.Drawing.Point(3, 64);
  269. this.panFundList.Name = "panFundList";
  270. this.panFundList.Size = new System.Drawing.Size(772, 383);
  271. this.panFundList.TabIndex = 1;
  272. //
  273. // grdFundList
  274. //
  275. this.grdFundList.AllowUserToAddRows = false;
  276. this.grdFundList.AllowUserToDeleteRows = false;
  277. this.grdFundList.AllowUserToOrderColumns = true;
  278. this.grdFundList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
  279. this.grdFundList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  280. this.grdFundList.Dock = System.Windows.Forms.DockStyle.Fill;
  281. this.grdFundList.Location = new System.Drawing.Point(0, 0);
  282. this.grdFundList.Name = "grdFundList";
  283. this.grdFundList.ReadOnly = true;
  284. this.grdFundList.RowTemplate.Height = 23;
  285. this.grdFundList.Size = new System.Drawing.Size(772, 383);
  286. this.grdFundList.TabIndex = 0;
  287. this.grdFundList.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdFundList_CellContentClick);
  288. //
  289. // panFundsTool
  290. //
  291. this.panFundsTool.Controls.Add(this.cmbFundCategory);
  292. this.panFundsTool.Controls.Add(this.label2);
  293. this.panFundsTool.Controls.Add(this.btnSearchFund);
  294. this.panFundsTool.Controls.Add(this.txtSearchFund);
  295. this.panFundsTool.Dock = System.Windows.Forms.DockStyle.Top;
  296. this.panFundsTool.Location = new System.Drawing.Point(3, 3);
  297. this.panFundsTool.Name = "panFundsTool";
  298. this.panFundsTool.Size = new System.Drawing.Size(772, 61);
  299. this.panFundsTool.TabIndex = 0;
  300. //
  301. // cmbFundCategory
  302. //
  303. this.cmbFundCategory.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  304. this.cmbFundCategory.Enabled = false;
  305. this.cmbFundCategory.FormattingEnabled = true;
  306. this.cmbFundCategory.Location = new System.Drawing.Point(562, 18);
  307. this.cmbFundCategory.Name = "cmbFundCategory";
  308. this.cmbFundCategory.Size = new System.Drawing.Size(196, 26);
  309. this.cmbFundCategory.TabIndex = 3;
  310. //
  311. // label2
  312. //
  313. this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  314. this.label2.AutoSize = true;
  315. this.label2.Location = new System.Drawing.Point(493, 22);
  316. this.label2.Name = "label2";
  317. this.label2.Size = new System.Drawing.Size(63, 18);
  318. this.label2.TabIndex = 2;
  319. this.label2.Text = "Category";
  320. //
  321. // btnSearchFund
  322. //
  323. this.btnSearchFund.Enabled = false;
  324. this.btnSearchFund.Location = new System.Drawing.Point(281, 18);
  325. this.btnSearchFund.Name = "btnSearchFund";
  326. this.btnSearchFund.Size = new System.Drawing.Size(75, 26);
  327. this.btnSearchFund.TabIndex = 1;
  328. this.btnSearchFund.Text = "Search";
  329. this.btnSearchFund.UseVisualStyleBackColor = true;
  330. //
  331. // txtSearchFund
  332. //
  333. this.txtSearchFund.Enabled = false;
  334. this.txtSearchFund.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  335. this.txtSearchFund.ForeColor = System.Drawing.SystemColors.GrayText;
  336. this.txtSearchFund.Location = new System.Drawing.Point(20, 18);
  337. this.txtSearchFund.Name = "txtSearchFund";
  338. this.txtSearchFund.Size = new System.Drawing.Size(255, 26);
  339. this.txtSearchFund.TabIndex = 0;
  340. this.txtSearchFund.Text = "Type in fund name";
  341. //
  342. // tabPeople
  343. //
  344. this.tabPeople.Controls.Add(this.btnAddPersonn);
  345. this.tabPeople.Controls.Add(this.grdPeopleList);
  346. this.tabPeople.Controls.Add(this.panPeopleTool);
  347. this.tabPeople.Location = new System.Drawing.Point(4, 4);
  348. this.tabPeople.Name = "tabPeople";
  349. this.tabPeople.Padding = new System.Windows.Forms.Padding(3);
  350. this.tabPeople.Size = new System.Drawing.Size(778, 450);
  351. this.tabPeople.TabIndex = 1;
  352. this.tabPeople.Text = "People";
  353. this.tabPeople.UseVisualStyleBackColor = true;
  354. //
  355. // btnAddPersonn
  356. //
  357. this.btnAddPersonn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  358. this.btnAddPersonn.Font = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  359. this.btnAddPersonn.Location = new System.Drawing.Point(644, 78);
  360. this.btnAddPersonn.Name = "btnAddPersonn";
  361. this.btnAddPersonn.Size = new System.Drawing.Size(128, 23);
  362. this.btnAddPersonn.TabIndex = 2;
  363. this.btnAddPersonn.Text = "Add a staff";
  364. this.btnAddPersonn.UseVisualStyleBackColor = true;
  365. this.btnAddPersonn.Click += new System.EventHandler(this.btnAddPersonn_Click);
  366. //
  367. // grdPeopleList
  368. //
  369. this.grdPeopleList.AllowUserToAddRows = false;
  370. this.grdPeopleList.AllowUserToDeleteRows = false;
  371. this.grdPeopleList.AllowUserToOrderColumns = true;
  372. this.grdPeopleList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  373. | System.Windows.Forms.AnchorStyles.Left)
  374. | System.Windows.Forms.AnchorStyles.Right)));
  375. this.grdPeopleList.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
  376. this.grdPeopleList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  377. this.grdPeopleList.Location = new System.Drawing.Point(3, 116);
  378. this.grdPeopleList.MultiSelect = false;
  379. this.grdPeopleList.Name = "grdPeopleList";
  380. this.grdPeopleList.ReadOnly = true;
  381. this.grdPeopleList.RowTemplate.Height = 23;
  382. this.grdPeopleList.Size = new System.Drawing.Size(772, 331);
  383. this.grdPeopleList.TabIndex = 1;
  384. this.grdPeopleList.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdPeopleList_CellClick);
  385. //
  386. // panPeopleTool
  387. //
  388. this.panPeopleTool.Controls.Add(this.cmbRole);
  389. this.panPeopleTool.Controls.Add(this.label3);
  390. this.panPeopleTool.Controls.Add(this.btnSearchPeople);
  391. this.panPeopleTool.Controls.Add(this.txtSearchPeople);
  392. this.panPeopleTool.Dock = System.Windows.Forms.DockStyle.Top;
  393. this.panPeopleTool.Location = new System.Drawing.Point(3, 3);
  394. this.panPeopleTool.Name = "panPeopleTool";
  395. this.panPeopleTool.Size = new System.Drawing.Size(772, 61);
  396. this.panPeopleTool.TabIndex = 0;
  397. //
  398. // cmbRole
  399. //
  400. this.cmbRole.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  401. this.cmbRole.Enabled = false;
  402. this.cmbRole.FormattingEnabled = true;
  403. this.cmbRole.Location = new System.Drawing.Point(559, 18);
  404. this.cmbRole.Name = "cmbRole";
  405. this.cmbRole.Size = new System.Drawing.Size(196, 26);
  406. this.cmbRole.TabIndex = 5;
  407. //
  408. // label3
  409. //
  410. this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  411. this.label3.AutoSize = true;
  412. this.label3.Location = new System.Drawing.Point(517, 22);
  413. this.label3.Name = "label3";
  414. this.label3.Size = new System.Drawing.Size(36, 18);
  415. this.label3.TabIndex = 4;
  416. this.label3.Text = "Role";
  417. //
  418. // btnSearchPeople
  419. //
  420. this.btnSearchPeople.Enabled = false;
  421. this.btnSearchPeople.Location = new System.Drawing.Point(280, 18);
  422. this.btnSearchPeople.Name = "btnSearchPeople";
  423. this.btnSearchPeople.Size = new System.Drawing.Size(75, 26);
  424. this.btnSearchPeople.TabIndex = 3;
  425. this.btnSearchPeople.Text = "Search";
  426. this.btnSearchPeople.UseVisualStyleBackColor = true;
  427. //
  428. // txtSearchPeople
  429. //
  430. this.txtSearchPeople.Enabled = false;
  431. this.txtSearchPeople.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  432. this.txtSearchPeople.ForeColor = System.Drawing.SystemColors.GrayText;
  433. this.txtSearchPeople.Location = new System.Drawing.Point(19, 18);
  434. this.txtSearchPeople.Name = "txtSearchPeople";
  435. this.txtSearchPeople.Size = new System.Drawing.Size(255, 26);
  436. this.txtSearchPeople.TabIndex = 2;
  437. this.txtSearchPeople.Text = "Type in fund name";
  438. //
  439. // tabCompany
  440. //
  441. this.tabCompany.Controls.Add(this.panCompanyBottom);
  442. this.tabCompany.Controls.Add(this.panel1);
  443. this.tabCompany.Location = new System.Drawing.Point(4, 4);
  444. this.tabCompany.Name = "tabCompany";
  445. this.tabCompany.Size = new System.Drawing.Size(778, 450);
  446. this.tabCompany.TabIndex = 2;
  447. this.tabCompany.Text = "Company";
  448. this.tabCompany.UseVisualStyleBackColor = true;
  449. //
  450. // panCompanyBottom
  451. //
  452. this.panCompanyBottom.BackColor = System.Drawing.Color.WhiteSmoke;
  453. this.panCompanyBottom.Controls.Add(this.btnSaveCompany);
  454. this.panCompanyBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
  455. this.panCompanyBottom.Location = new System.Drawing.Point(0, 402);
  456. this.panCompanyBottom.Name = "panCompanyBottom";
  457. this.panCompanyBottom.Size = new System.Drawing.Size(778, 48);
  458. this.panCompanyBottom.TabIndex = 1;
  459. //
  460. // panel1
  461. //
  462. this.panel1.AutoScroll = true;
  463. this.panel1.Controls.Add(this.pictureBox1);
  464. this.panel1.Controls.Add(this.chkSupportPersonnel);
  465. this.panel1.Controls.Add(this.chkSupportTechnical);
  466. this.panel1.Controls.Add(this.chkSupportMarketing);
  467. this.panel1.Controls.Add(this.chkSupportSales);
  468. this.panel1.Controls.Add(this.chkSupportFinancial);
  469. this.panel1.Controls.Add(this.grdClientBreakdown);
  470. this.panel1.Controls.Add(this.label12);
  471. this.panel1.Controls.Add(this.grdAUM);
  472. this.panel1.Controls.Add(this.label11);
  473. this.panel1.Controls.Add(this.grdCreditRating);
  474. this.panel1.Controls.Add(this.label10);
  475. this.panel1.Controls.Add(this.grdFinancialData);
  476. this.panel1.Controls.Add(this.label9);
  477. this.panel1.Controls.Add(this.label8);
  478. this.panel1.Controls.Add(this.txtParentCompanyName);
  479. this.panel1.Controls.Add(this.label7);
  480. this.panel1.Controls.Add(this.txtDetailOfAcquired);
  481. this.panel1.Controls.Add(this.label6);
  482. this.panel1.Controls.Add(this.grdAcquisiton);
  483. this.panel1.Controls.Add(this.label5);
  484. this.panel1.Controls.Add(this.dtpIncepionDate);
  485. this.panel1.Controls.Add(this.label4);
  486. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  487. this.panel1.Location = new System.Drawing.Point(0, 0);
  488. this.panel1.Name = "panel1";
  489. this.panel1.Size = new System.Drawing.Size(778, 450);
  490. this.panel1.TabIndex = 0;
  491. //
  492. // grdClientBreakdown
  493. //
  494. this.grdClientBreakdown.AllowUserToAddRows = false;
  495. this.grdClientBreakdown.AllowUserToDeleteRows = false;
  496. this.grdClientBreakdown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  497. | System.Windows.Forms.AnchorStyles.Right)));
  498. this.grdClientBreakdown.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  499. this.grdClientBreakdown.Location = new System.Drawing.Point(29, 1022);
  500. this.grdClientBreakdown.Name = "grdClientBreakdown";
  501. this.grdClientBreakdown.RowTemplate.Height = 23;
  502. this.grdClientBreakdown.Size = new System.Drawing.Size(706, 104);
  503. this.grdClientBreakdown.TabIndex = 20;
  504. //
  505. // label12
  506. //
  507. this.label12.AutoSize = true;
  508. this.label12.Location = new System.Drawing.Point(26, 1000);
  509. this.label12.Name = "label12";
  510. this.label12.Size = new System.Drawing.Size(460, 18);
  511. this.label12.TabIndex = 19;
  512. this.label12.Text = "Retail/Instituitional Breakdown (as accurate of 31 December of each year)";
  513. //
  514. // grdAUM
  515. //
  516. this.grdAUM.AllowUserToAddRows = false;
  517. this.grdAUM.AllowUserToDeleteRows = false;
  518. this.grdAUM.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  519. | System.Windows.Forms.AnchorStyles.Right)));
  520. this.grdAUM.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  521. this.grdAUM.Location = new System.Drawing.Point(29, 909);
  522. this.grdAUM.Name = "grdAUM";
  523. this.grdAUM.RowTemplate.Height = 23;
  524. this.grdAUM.Size = new System.Drawing.Size(706, 74);
  525. this.grdAUM.TabIndex = 18;
  526. //
  527. // label11
  528. //
  529. this.label11.AutoSize = true;
  530. this.label11.Location = new System.Drawing.Point(26, 887);
  531. this.label11.Name = "label11";
  532. this.label11.Size = new System.Drawing.Size(470, 18);
  533. this.label11.TabIndex = 17;
  534. this.label11.Text = "Asset Under Management (AUM) (as accurate of 31 December of each year)";
  535. //
  536. // grdCreditRating
  537. //
  538. this.grdCreditRating.AllowUserToDeleteRows = false;
  539. this.grdCreditRating.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  540. | System.Windows.Forms.AnchorStyles.Right)));
  541. this.grdCreditRating.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
  542. this.grdCreditRating.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  543. this.grdCreditRating.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  544. this.agent});
  545. this.grdCreditRating.Location = new System.Drawing.Point(29, 717);
  546. this.grdCreditRating.Name = "grdCreditRating";
  547. this.grdCreditRating.RowTemplate.Height = 23;
  548. this.grdCreditRating.Size = new System.Drawing.Size(706, 150);
  549. this.grdCreditRating.TabIndex = 16;
  550. //
  551. // label10
  552. //
  553. this.label10.AutoSize = true;
  554. this.label10.Location = new System.Drawing.Point(26, 695);
  555. this.label10.Name = "label10";
  556. this.label10.Size = new System.Drawing.Size(463, 18);
  557. this.label10.TabIndex = 15;
  558. this.label10.Text = "Credit Rating of the company or parent company (whichever is applicable)";
  559. //
  560. // grdFinancialData
  561. //
  562. this.grdFinancialData.AllowUserToAddRows = false;
  563. this.grdFinancialData.AllowUserToDeleteRows = false;
  564. this.grdFinancialData.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  565. | System.Windows.Forms.AnchorStyles.Right)));
  566. this.grdFinancialData.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
  567. this.grdFinancialData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  568. this.grdFinancialData.Location = new System.Drawing.Point(29, 518);
  569. this.grdFinancialData.Name = "grdFinancialData";
  570. this.grdFinancialData.RowTemplate.Height = 23;
  571. this.grdFinancialData.Size = new System.Drawing.Size(706, 150);
  572. this.grdFinancialData.TabIndex = 14;
  573. //
  574. // label9
  575. //
  576. this.label9.AutoSize = true;
  577. this.label9.Location = new System.Drawing.Point(26, 497);
  578. this.label9.Name = "label9";
  579. this.label9.Size = new System.Drawing.Size(469, 18);
  580. this.label9.TabIndex = 13;
  581. this.label9.Text = "Financial data of the company or parent company (whichever is applicable)";
  582. //
  583. // label8
  584. //
  585. this.label8.AutoSize = true;
  586. this.label8.Location = new System.Drawing.Point(26, 428);
  587. this.label8.Name = "label8";
  588. this.label8.Size = new System.Drawing.Size(385, 18);
  589. this.label8.TabIndex = 11;
  590. this.label8.Text = "Select all types of supports provided by your parent company";
  591. //
  592. // txtParentCompanyName
  593. //
  594. this.txtParentCompanyName.Location = new System.Drawing.Point(145, 377);
  595. this.txtParentCompanyName.Name = "txtParentCompanyName";
  596. this.txtParentCompanyName.Size = new System.Drawing.Size(430, 26);
  597. this.txtParentCompanyName.TabIndex = 10;
  598. //
  599. // label7
  600. //
  601. this.label7.AutoSize = true;
  602. this.label7.Location = new System.Drawing.Point(26, 380);
  603. this.label7.Name = "label7";
  604. this.label7.Size = new System.Drawing.Size(110, 18);
  605. this.label7.TabIndex = 9;
  606. this.label7.Text = "Parent Company";
  607. //
  608. // txtDetailOfAcquired
  609. //
  610. this.txtDetailOfAcquired.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  611. | System.Windows.Forms.AnchorStyles.Right)));
  612. this.txtDetailOfAcquired.Location = new System.Drawing.Point(29, 276);
  613. this.txtDetailOfAcquired.Multiline = true;
  614. this.txtDetailOfAcquired.Name = "txtDetailOfAcquired";
  615. this.txtDetailOfAcquired.Size = new System.Drawing.Size(706, 76);
  616. this.txtDetailOfAcquired.TabIndex = 5;
  617. //
  618. // label6
  619. //
  620. this.label6.AutoSize = true;
  621. this.label6.Location = new System.Drawing.Point(26, 254);
  622. this.label6.Name = "label6";
  623. this.label6.Size = new System.Drawing.Size(606, 18);
  624. this.label6.TabIndex = 4;
  625. this.label6.Text = "If your firm has recently been acquired by another entity, please describe in det" +
  626. "ail the acquisition";
  627. //
  628. // grdAcquisiton
  629. //
  630. this.grdAcquisiton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  631. | System.Windows.Forms.AnchorStyles.Right)));
  632. this.grdAcquisiton.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
  633. this.grdAcquisiton.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  634. this.grdAcquisiton.Location = new System.Drawing.Point(29, 80);
  635. this.grdAcquisiton.Name = "grdAcquisiton";
  636. this.grdAcquisiton.RowTemplate.Height = 23;
  637. this.grdAcquisiton.Size = new System.Drawing.Size(706, 150);
  638. this.grdAcquisiton.TabIndex = 3;
  639. //
  640. // label5
  641. //
  642. this.label5.AutoSize = true;
  643. this.label5.Location = new System.Drawing.Point(23, 58);
  644. this.label5.Name = "label5";
  645. this.label5.Size = new System.Drawing.Size(385, 18);
  646. this.label5.TabIndex = 2;
  647. this.label5.Text = "Recent changes in capital structure, mergers/acquisitions etc.";
  648. //
  649. // dtpIncepionDate
  650. //
  651. this.dtpIncepionDate.Location = new System.Drawing.Point(138, 16);
  652. this.dtpIncepionDate.MaxDate = new System.DateTime(2050, 12, 31, 0, 0, 0, 0);
  653. this.dtpIncepionDate.Name = "dtpIncepionDate";
  654. this.dtpIncepionDate.Size = new System.Drawing.Size(146, 26);
  655. this.dtpIncepionDate.TabIndex = 1;
  656. this.dtpIncepionDate.Value = new System.DateTime(2025, 10, 26, 0, 0, 0, 0);
  657. //
  658. // label4
  659. //
  660. this.label4.AutoSize = true;
  661. this.label4.Location = new System.Drawing.Point(20, 20);
  662. this.label4.Name = "label4";
  663. this.label4.Size = new System.Drawing.Size(95, 18);
  664. this.label4.TabIndex = 0;
  665. this.label4.Text = "Date Founded";
  666. //
  667. // tabSettings
  668. //
  669. this.tabSettings.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  670. this.tabSettings.Location = new System.Drawing.Point(4, 34);
  671. this.tabSettings.Name = "tabSettings";
  672. this.tabSettings.Size = new System.Drawing.Size(792, 487);
  673. this.tabSettings.TabIndex = 2;
  674. this.tabSettings.Text = "Settings";
  675. this.tabSettings.UseVisualStyleBackColor = true;
  676. //
  677. // btnSaveCompany
  678. //
  679. this.btnSaveCompany.Location = new System.Drawing.Point(685, 12);
  680. this.btnSaveCompany.Name = "btnSaveCompany";
  681. this.btnSaveCompany.Size = new System.Drawing.Size(75, 23);
  682. this.btnSaveCompany.TabIndex = 0;
  683. this.btnSaveCompany.Text = "Save";
  684. this.btnSaveCompany.UseVisualStyleBackColor = true;
  685. this.btnSaveCompany.Click += new System.EventHandler(this.btnSaveCompany_Click);
  686. //
  687. // chkSupportFinancial
  688. //
  689. this.chkSupportFinancial.AutoSize = true;
  690. this.chkSupportFinancial.Location = new System.Drawing.Point(49, 453);
  691. this.chkSupportFinancial.Name = "chkSupportFinancial";
  692. this.chkSupportFinancial.Size = new System.Drawing.Size(82, 22);
  693. this.chkSupportFinancial.TabIndex = 22;
  694. this.chkSupportFinancial.Text = "Financial";
  695. this.chkSupportFinancial.UseVisualStyleBackColor = true;
  696. //
  697. // chkSupportSales
  698. //
  699. this.chkSupportSales.AutoSize = true;
  700. this.chkSupportSales.Location = new System.Drawing.Point(165, 453);
  701. this.chkSupportSales.Name = "chkSupportSales";
  702. this.chkSupportSales.Size = new System.Drawing.Size(59, 22);
  703. this.chkSupportSales.TabIndex = 23;
  704. this.chkSupportSales.Text = "Sales";
  705. this.chkSupportSales.UseVisualStyleBackColor = true;
  706. //
  707. // chkSupportMarketing
  708. //
  709. this.chkSupportMarketing.AutoSize = true;
  710. this.chkSupportMarketing.Location = new System.Drawing.Point(256, 453);
  711. this.chkSupportMarketing.Name = "chkSupportMarketing";
  712. this.chkSupportMarketing.Size = new System.Drawing.Size(89, 22);
  713. this.chkSupportMarketing.TabIndex = 24;
  714. this.chkSupportMarketing.Text = "Marketing";
  715. this.chkSupportMarketing.UseVisualStyleBackColor = true;
  716. //
  717. // chkSupportTechnical
  718. //
  719. this.chkSupportTechnical.AutoSize = true;
  720. this.chkSupportTechnical.Location = new System.Drawing.Point(375, 453);
  721. this.chkSupportTechnical.Name = "chkSupportTechnical";
  722. this.chkSupportTechnical.Size = new System.Drawing.Size(84, 22);
  723. this.chkSupportTechnical.TabIndex = 25;
  724. this.chkSupportTechnical.Text = "Technical";
  725. this.chkSupportTechnical.UseVisualStyleBackColor = true;
  726. //
  727. // chkSupportPersonnel
  728. //
  729. this.chkSupportPersonnel.AutoSize = true;
  730. this.chkSupportPersonnel.Location = new System.Drawing.Point(485, 453);
  731. this.chkSupportPersonnel.Name = "chkSupportPersonnel";
  732. this.chkSupportPersonnel.Size = new System.Drawing.Size(90, 22);
  733. this.chkSupportPersonnel.TabIndex = 26;
  734. this.chkSupportPersonnel.Text = "Personnel";
  735. this.chkSupportPersonnel.UseVisualStyleBackColor = true;
  736. //
  737. // agent
  738. //
  739. this.agent.DataPropertyName = "agent";
  740. this.agent.HeaderText = "Rating Agent";
  741. this.agent.Items.AddRange(new object[] {
  742. "Moody\'s",
  743. "S&P",
  744. "Fitch"});
  745. this.agent.Name = "agent";
  746. this.agent.Width = 92;
  747. //
  748. // pictureBox1
  749. //
  750. this.pictureBox1.Location = new System.Drawing.Point(29, 1151);
  751. this.pictureBox1.Name = "pictureBox1";
  752. this.pictureBox1.Size = new System.Drawing.Size(688, 47);
  753. this.pictureBox1.TabIndex = 27;
  754. this.pictureBox1.TabStop = false;
  755. //
  756. // frmMain
  757. //
  758. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F);
  759. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  760. this.ClientSize = new System.Drawing.Size(800, 525);
  761. this.Controls.Add(this.tbcMain);
  762. this.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  763. this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  764. this.Name = "frmMain";
  765. this.Text = "Fundit DDQ";
  766. this.tbcMain.ResumeLayout(false);
  767. this.tabRequests.ResumeLayout(false);
  768. this.panRequests.ResumeLayout(false);
  769. this.panRequestList.ResumeLayout(false);
  770. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  771. this.panRequestsTool.ResumeLayout(false);
  772. this.panRequestsTool.PerformLayout();
  773. this.tabData.ResumeLayout(false);
  774. this.tbcData.ResumeLayout(false);
  775. this.tabFunds.ResumeLayout(false);
  776. this.panFundList.ResumeLayout(false);
  777. ((System.ComponentModel.ISupportInitialize)(this.grdFundList)).EndInit();
  778. this.panFundsTool.ResumeLayout(false);
  779. this.panFundsTool.PerformLayout();
  780. this.tabPeople.ResumeLayout(false);
  781. ((System.ComponentModel.ISupportInitialize)(this.grdPeopleList)).EndInit();
  782. this.panPeopleTool.ResumeLayout(false);
  783. this.panPeopleTool.PerformLayout();
  784. this.tabCompany.ResumeLayout(false);
  785. this.panCompanyBottom.ResumeLayout(false);
  786. this.panel1.ResumeLayout(false);
  787. this.panel1.PerformLayout();
  788. ((System.ComponentModel.ISupportInitialize)(this.grdClientBreakdown)).EndInit();
  789. ((System.ComponentModel.ISupportInitialize)(this.grdAUM)).EndInit();
  790. ((System.ComponentModel.ISupportInitialize)(this.grdCreditRating)).EndInit();
  791. ((System.ComponentModel.ISupportInitialize)(this.grdFinancialData)).EndInit();
  792. ((System.ComponentModel.ISupportInitialize)(this.grdAcquisiton)).EndInit();
  793. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  794. this.ResumeLayout(false);
  795. }
  796. #endregion
  797. private System.Windows.Forms.TabControl tbcMain;
  798. private System.Windows.Forms.TabPage tabRequests;
  799. private System.Windows.Forms.TabPage tabData;
  800. private System.Windows.Forms.TabPage tabSettings;
  801. private System.Windows.Forms.Panel panRequests;
  802. private System.Windows.Forms.Panel panRequestList;
  803. private System.Windows.Forms.Panel panRequestsTool;
  804. private System.Windows.Forms.TextBox txtSearchRequest;
  805. private System.Windows.Forms.DataGridView dataGridView1;
  806. private System.Windows.Forms.ComboBox cmbRequestAction;
  807. private System.Windows.Forms.Label label1;
  808. private System.Windows.Forms.Button btnSearchRequest;
  809. private System.Windows.Forms.TabControl tbcData;
  810. private System.Windows.Forms.TabPage tabFunds;
  811. private System.Windows.Forms.TabPage tabPeople;
  812. private System.Windows.Forms.Panel panFundList;
  813. private System.Windows.Forms.Panel panFundsTool;
  814. private System.Windows.Forms.TextBox txtSearchFund;
  815. private System.Windows.Forms.TabPage tabCompany;
  816. private System.Windows.Forms.DataGridView grdFundList;
  817. private System.Windows.Forms.ComboBox cmbFundCategory;
  818. private System.Windows.Forms.Label label2;
  819. private System.Windows.Forms.Button btnSearchFund;
  820. private System.Windows.Forms.DataGridView grdPeopleList;
  821. private System.Windows.Forms.Panel panPeopleTool;
  822. private System.Windows.Forms.Button btnSearchPeople;
  823. private System.Windows.Forms.TextBox txtSearchPeople;
  824. private System.Windows.Forms.ComboBox cmbRole;
  825. private System.Windows.Forms.Label label3;
  826. private System.Windows.Forms.Button btnAddPersonn;
  827. private System.Windows.Forms.Panel panCompanyBottom;
  828. private System.Windows.Forms.Panel panel1;
  829. private System.Windows.Forms.DateTimePicker dtpIncepionDate;
  830. private System.Windows.Forms.Label label4;
  831. private System.Windows.Forms.TextBox txtDetailOfAcquired;
  832. private System.Windows.Forms.Label label6;
  833. private System.Windows.Forms.DataGridView grdAcquisiton;
  834. private System.Windows.Forms.Label label5;
  835. private System.Windows.Forms.TextBox txtParentCompanyName;
  836. private System.Windows.Forms.Label label7;
  837. private System.Windows.Forms.Label label8;
  838. private System.Windows.Forms.Label label9;
  839. private System.Windows.Forms.Label label11;
  840. private System.Windows.Forms.DataGridView grdCreditRating;
  841. private System.Windows.Forms.Label label10;
  842. private System.Windows.Forms.DataGridView grdFinancialData;
  843. private System.Windows.Forms.DataGridView grdClientBreakdown;
  844. private System.Windows.Forms.Label label12;
  845. private System.Windows.Forms.DataGridView grdAUM;
  846. private System.Windows.Forms.Button btnSaveCompany;
  847. private System.Windows.Forms.CheckBox chkSupportFinancial;
  848. private System.Windows.Forms.CheckBox chkSupportPersonnel;
  849. private System.Windows.Forms.CheckBox chkSupportTechnical;
  850. private System.Windows.Forms.CheckBox chkSupportMarketing;
  851. private System.Windows.Forms.CheckBox chkSupportSales;
  852. private System.Windows.Forms.DataGridViewComboBoxColumn agent;
  853. private System.Windows.Forms.PictureBox pictureBox1;
  854. }
  855. }