public void LoadModule1(ListViewEx lsv, string str) { lsv.Items.Clear(); if (contendt != null && contendt.Rows.Count > 0) { DataTable dt1 = null; if (str.Trim().Length > 0) { try { string s = "TITLE like '%" + str + "%'"; dt1 = contendt.Select(s).CopyToDataTable(); } catch { dt1 = null; } if (dt1 == null || dt1.Rows.Count <= 0) { return; } foreach (DataRow dr in dt1.Rows) { ListViewItem lvi = new ListViewItem(); string type = dr["CoType"].ToString(); string code = dr["Code"].ToString(); string title = dr["Title"].ToString(); string titlelx = dr["TitleLx"].ToString(); lvi.Text = code; lvi.SubItems.AddRange(new string[] { title, titlelx, type }); lsv.BeginInvoke(new Action(() => { lsv.Items.Add(lvi); })); } } } }
public void ListViewEx_MouseUp(object sender, System.Windows.Forms.MouseEventArgs e) { Point objDrawingPoint = new Point(); ListViewItem objListViewItem = default(ListViewItem); objDrawingPoint = ListViewEx.PointToClient(Cursor.Position); //// Check to see if an item has been selected. if (!ReferenceEquals(objDrawingPoint, null)) { objListViewItem = ListViewEx.GetItemAt(objDrawingPoint.X, objDrawingPoint.Y); //// If an item has been selected, then enable toolstrip buttons. if (!ReferenceEquals(objListViewItem, null)) { btnResume.Enabled = true; btnPause.Enabled = true; btnRemove.Enabled = true; } else //// Else disable them. { btnResume.Enabled = false; btnPause.Enabled = false; btnRemove.Enabled = false; } } }
/// <summary> /// 绑定LvOneSelf(单个应用) /// </summary> /// <param name="imgList"></param> /// <param name="appName"></param> /// <param name="fullPath"></param> /// <param name="iconKey"></param> /// <param name="icon"></param> /// <param name="listView"></param> public bool LoadOneLvOneSelf(params object[] par) { if (par.Length < 0) { return(false); } try { Size size = new System.Drawing.Size(32, 32); ImageList imgList = par[0] as ImageList; Icon icon = par[3] as Icon; ListViewEx listView = par[4] as ListViewEx; string name = par[1].ToString(); imgList.ImageSize = size; imgList.Images.Add(par[2].ToString(), icon); listView.LargeImageList = imgList; listView.Items.Add(name, par[2].ToString()); listView.View = View.LargeIcon; //string str = name + "|" + Global.GetPingYin(name); Global.FileNames.Add(Global.GetPingYin(name)); return(true); } catch (Exception) { return(false); } }
public void LuuNDVaoBangCANHO_NGUOIDAN(string maCanHo, ListViewEx nguoiDan) { foreach (ListViewItem item in nguoiDan.Items) { m_NguoiDanData.LuuNDVaoBangCANHO_NGUOIDAN(maCanHo, item.SubItems[0].Text.ToString()); } }
public ThreadsUI(PluginMain pluginMain, ImageList imageList) { this.AutoKeyHandling = true; this.pluginMain = pluginMain; lv = new ListViewEx(); lv.ShowItemToolTips = true; this.imageColumnHeader = new ColumnHeader(); this.imageColumnHeader.Text = string.Empty; this.imageColumnHeader.Width = 20; this.frameColumnHeader = new ColumnHeader(); this.frameColumnHeader.Text = string.Empty; lv.Columns.AddRange(new ColumnHeader[] { this.imageColumnHeader, this.frameColumnHeader }); lv.FullRowSelect = true; lv.BorderStyle = BorderStyle.None; lv.Dock = System.Windows.Forms.DockStyle.Fill; lv.SmallImageList = imageList; runningImageIndex = imageList.Images.IndexOfKey("StartContinue"); suspendedImageIndex = imageList.Images.IndexOfKey("Pause"); lv.View = System.Windows.Forms.View.Details; lv.MouseDoubleClick += new MouseEventHandler(lv_MouseDoubleClick); lv.KeyDown += new KeyEventHandler(lv_KeyDown); lv.SizeChanged += new EventHandler(lv_SizeChanged); this.Controls.Add(lv); ScrollBarEx.Attach(lv); }
public void LuuHSVaoBangQuaTrinhHoc(String hocKyCu, String lopCu, ListViewEx hocSinh) { foreach (ListViewItem item in hocSinh.Items) { m_HocSinhData.LuuHSVaoBangQuaTrinhHoc(hocKyCu, lopCu, item.SubItems[0].Text.ToString()); } }
public void LuuHSVaoBangPhanLop(String maLop, String maHocKy, ListViewEx hocSinh) { foreach (ListViewItem item in hocSinh.Items) { m_HocSinhData.LuuHSVaoBangPhanLop(maLop, maHocKy, item.SubItems[0].Text.ToString()); } }
/// <summary> /// //加载子文件 /// </summary> /// <param name="xmlNode"></param> /// <param name="listView"></param> /// <param name="FlterType"></param> private void InitListViewSubFile(XmlNodeList xmlNode, ListViewEx listView, string FlterType) { foreach (XmlNode node in xmlNode) { if (node is FileSimpleExXmlElement) { FileSimpleExXmlElement fileEle = (FileSimpleExXmlElement)node; string exfile = Path.GetExtension(fileEle.AbsoluteFilePath).ToLower(); if (!FlterType.Contains(exfile)) { continue; } MyListFileItem myFileItem = new MyListFileItem(fileEle); if (fileEle.IsDeleted) { continue; } myFileItem.Element = fileEle; myFileItem.Text = fileEle.Title; listView.Items.Add(myFileItem); } } }
public void XoaHSKhoiBangPhanLop(String hocKyCu, String lopCu, ListViewEx hocSinh) { foreach (ListViewItem item in hocSinh.Items) { m_HocSinhData.XoaHSKhoiBangPhanLop(hocKyCu, lopCu, item.SubItems[0].Text.ToString()); } }
private void Apply_Btn_Click(object sender, EventArgs e) { for (int i = 0; i < Analog_flowpanel.Controls.Count; i++) { ListViewEx analog_listview = Analog_flowpanel.Controls[i] as ListViewEx; for (int j = 0; j < analog_listview.CheckedItems.Count; j++) { Constant.Capacity_Combine_str += analog_listview.CheckedItems[j].Text.Replace("-", "") + " "; } } for (int m = 0; m < Digital_flowpanel.Controls.Count; m++) { ListViewEx digit_listview = Digital_flowpanel.Controls[m] as ListViewEx; for (int n = 0; n < digit_listview.CheckedItems.Count; n++) { Constant.Capacity_Combine_str += digit_listview.CheckedItems[n].Text.Replace("-", "") + " "; } } if (!All_checkBoxX.Checked && string.IsNullOrEmpty(Constant.Capacity_Combine_str)) { DialogResult dr; dr = MessageBox.Show(string.Format("未配置有效的应变片容量,确定继续?"), "警告", MessageBoxButtons.YesNo, MessageBoxIcon.Warning); if (dr == DialogResult.No) { return; } Constant.Capacity_Combine_str = "0"; } UIHelper.DesktopNotify(true, "应变片配置成功!"); this.Close(); }
/// <summary> /// Describe (view) selected changelist and drive up/down back propagation through the host list view /// </summary> public static void DriveChangelistFromListViewEx(ref ListViewEx listRev) { // Get the SHA associated with the selected item on the log list ListView li = listRev; if (li.SelectedIndices.Count != 1) return; bool multiSel = li.MultiSelect; li.MultiSelect = false; int index = li.SelectedIndices[0]; FormShowChangelist form = new FormShowChangelist(); DialogResult dlg; do { li.Items[index].Selected = true; string sha = li.Items[index].Tag.ToString(); form.LoadChangelist(sha); dlg = form.ShowDialog(); // Using the "Yes" value to load a next commit if (dlg == DialogResult.Yes && index > 0) index--; // Using the "No" value to load a previous commit if (dlg == DialogResult.No && index < li.Items.Count - 1) index++; } while (dlg != DialogResult.Cancel); li.MultiSelect = multiSel; }
/// <summary> /// 创建 <see cref="OrderItem" /> 的新实例(OrderItem) /// </summary> public OrderTicketListViewItem(OrderItem orderItem, OrderTicket ticket, ListViewEx owner) { OrderItem = orderItem; Ticket = ticket; InitSubItems(owner); }
public void CapNhatDSSV(ListViewEx dssv) { bool[] thanhcong = new bool[dssv.Items.Count]; for (int i = 0; i < dssv.Items.Count; i++) { SinhVienInfo sv = (SinhVienInfo)dssv.Items[i].Tag; if (CapNhatSV(sv)) { thanhcong[i] = true; } else { thanhcong[i] = false; } } //Xóa những Sinh viên cập nhật thành công int DemSinhThanhCong = 0; for (int i = thanhcong.Length - 1; i >= 0; i--) { if (thanhcong[i]) { DemSinhThanhCong++; dssv.Items.RemoveAt(i); } } MessageBox.Show("Cập nhật thành công " + DemSinhThanhCong + " Sinh viên", "Sinh viên", MessageBoxButtons.OK, MessageBoxIcon.Information); //Xoa Danh Sách-- Nho lam ki hon mot chut khi cap nhat khong thành công hòan toan }
public bool EditName(params object[] par) { if (par.Length < 0) { return(false); } try { ListViewEx listView = par[0] as ListViewEx; string name = par[1] as string; int index = 0; if (listView.Tag != null && (listView.Tag as List <string>).Count != 0) { foreach (var item in listView.Tag as List <string> ) { if (!index.ToString().Equals(listView.SelectedIndices[0].ToString())) { index++; continue; } else { mXMLHelper.UpdateNode(item, "ShowName", name); break; } } } return(true); } catch (Exception) { return(false); } }
public static DataTable ListViewToDataTable(ListViewEx list, BackgroundWorker bw) { var dt = new DataTable("Data"); list.Invoke(new Action(() => { foreach (var listColumn in list.Columns) { dt.Columns.Add((listColumn as ColumnHeader).Text); } int c = 0; foreach (var listItem in list.Items) { bw.ReportProgress((int)((c / (double)list.Items.Count) * 100), "Converting..."); var item = listItem as ListViewItem; var values = new object[dt.Columns.Count]; for (int i = 0; i < item.SubItems.Count; i++) { values[i] = item.SubItems[i].Text; } dt.Rows.Add(values); } })); return(dt); }
private bool SavePage_Appearance() { for (int i = 0; i < LstColumns.Items.Count; i++) { ListViewItem currItem = LstColumns.Items[i]; Int32 columnIndex = (Int32)currItem.Tag; if (currItem.Checked) { ListViewEx.UnhideColumn(m_ListColumns[columnIndex]); } else { ListViewEx.HideColumn(m_ListColumns[columnIndex]); } } m_Settings.Appearance.RedPrice = ((double)TxtRedPrice.Value) / 100; m_Settings.Appearance.GreenPrice = ((double)TxtGreenPrice.Value) / 100; m_Settings.Appearance.OverrideAssetsColors = ChkOverrideColorsISK.Checked; m_Settings.Appearance.GreenIskLoss = (double)TxtGreenIskLoss.Value; m_Settings.Appearance.RedIskLoss = (double)TxtRedIskLoss.Value; return(true); }
public static DataTable ListViewToDataTable(ListViewEx list) { var dt = new DataTable("Data"); list.Invoke(new Action(() => { foreach (var listColumn in list.Columns) { dt.Columns.Add((listColumn as ColumnHeader).Text); } int c = 0; foreach (var listItem in list.Items) { var item = listItem as ListViewItem; var values = new object[dt.Columns.Count]; for (int i = 0; i < item.SubItems.Count; i++) { values[i] = item.SubItems[i].Text; } dt.Rows.Add(values); } })); return(dt); }
public int Compare(object x, object y) { if (x is FileSystemInfoListViewItem && y is FileSystemInfoListViewItem) { ListViewEx lv = (x as ListViewItem).ListView as ListViewEx; FileSystemInfoListViewItem a = x as FileSystemInfoListViewItem; FileSystemInfoListViewItem b = y as FileSystemInfoListViewItem; if (lv.Sorting == SortOrder.Ascending) { int diff = a.FileSystemInfo.IsDirectory.CompareTo(b.FileSystemInfo.IsDirectory); if (diff != 0) { return(-diff); } return(a.FileSystemInfo.Name.CompareTo(b.FileSystemInfo.Name)); } else { int diff = a.FileSystemInfo.IsDirectory.CompareTo(b.FileSystemInfo.IsDirectory); if (diff != 0) { return(diff); } return(-a.FileSystemInfo.Name.CompareTo(b.FileSystemInfo.Name)); } } else { return(0); } }
public static void FillSubjectItems(this ListViewEx listView, IEnumerable <string> items, string groupName, Dictionary <string, string> domaims) { listView.Groups.Clear(); listView.Items.Clear(); ListViewGroup group = new ListViewGroup(groupName); listView.Groups.Add(group); listView.SuspendLayout(); foreach (KeyValuePair <string, string> kvp in domaims) { foreach (string each in items) { ListViewItem item = new ListViewItem(); item.Group = group; item.Text = each; if (item.Text == kvp.Key) { item.Tag = kvp.Value; listView.Items.Add(item); } } } listView.ResumeLayout(); listView.Refresh(); }
public void LoadContentsinfo(int archid, ListViewEx lsv, bool ch) { if (archid <= 0) { return; } if (loadcon) { return; } loadcon = true; try { lsv.Items.Clear(); PageCount.Clear(); DataTable dt = Common.LoadContents(ContenTable, ContenCol, ContenPages, Convert.ToInt32(ch), archid); if (dt == null || dt.Rows.Count <= 0) { Common.InsterMl(archid); loadcon = false; LoadContents(archid, lsv, ch, 0); return; } int i = 1; foreach (DataRow dr in dt.Rows) { ListViewItem lvi = new ListViewItem(); lvi.Text = i.ToString(); string id = dr["id"].ToString(); lvi.SubItems.AddRange(new string[] { id }); for (int t = 0; t < ContenCoList.Count; t++) { string str = dr[ContenCoList[t]].ToString(); if (t == PagesWz) { PageCount.Add(str); } lvi.SubItems.AddRange(new string[] { str }); } lsv.Items.Add(lvi); i++; } //foreach (ListViewItem lvi in lsv.Items) { // string str = lvi.SubItems[5].Text.ToString(); // if (str != ywid) { // lvi.BackColor = Color.Red; // ywid = str; // } //} if (lsv.Items.Count > 0) { lsv.Items[0].Selected = true; } } catch { } finally { loadcon = false; } }
private void lvwInfactoryBatch_MouseDoubleClick(object sender, MouseEventArgs e) { ListViewEx lvw = sender as ListViewEx; if (lvw != null) { ListViewItem item = lvw.GetItemAt(e.X, e.Y); } }
/// <summary> /// 绑定LvOneSelf(多个应用) /// </summary> /// <param name="imgList"></param> /// <param name="imgList"></param> /// <param name="listIcon"></param> public bool LoadLvOneSelf(params object[] par) { if (par.Length < 0) { return(false); } int count = 0; Size size = new System.Drawing.Size(32, 32);//42 try { ImageList imgList = par[0] as ImageList; List <string> listPath = par[1] as List <string>; List <Icon> listIcon = par[2] as List <Icon>; ListViewEx listView = par[3] as ListViewEx; imgList.ImageSize = size; foreach (var item in listIcon) { imgList.Images.Add(count.ToString(), item); count++; easyOpen.mAddCount++; } count = 0; listView.LargeImageList = imgList; foreach (var item in listPath) { easyOpen.mListOneSelfPath.Add(item); string Name = mXMLHelper.GetXmlAttrValue(item, "ShowName"); if (string.IsNullOrEmpty(Name)) { string name = item.Substring(item.LastIndexOf('\\') + 1); //string str = name + "|" + Global.GetPingYin(name); Global.FileNames.Add(Global.GetPingYin(name)); listView.Items.Add(name, name, count); } else { //string str = Name + "|" + Global.GetPingYin(Name); Global.FileNames.Add(Global.GetPingYin(Name)); listView.Items.Add(Name, Name, count); } count++; } listView.Tag = easyOpen.mListOneSelfPath; easyOpen.mListOneSelfApp = listView.Items.ToList();// as List<ListViewItem>; return(true); } catch (Exception) { return(false); } }
public DebugService() { bpboundchange = new EventHandler(BpBoundChange); localsview = new ListViewEx(); autosview = new ListViewEx(); thisview = new ListViewEx(); callstackview = new ListViewEx(); InitVariableView(localsview, autosview, thisview); InitCallstackView(callstackview); // ServiceHost.Project.Opened += new EventHandler(ProjectEvent); // ServiceHost.Project.Closed += new EventHandler(ProjectEvent); // // ServiceHost.File.Opened +=new FileManagerEventHandler(FileEvent); // ServiceHost.File.Closed +=new FileManagerEventHandler(FileEvent); if (SettingsService.idemode) { IWindowService ws = ServiceHost.Window; IDockContent tbp = Runtime.DockFactory.Content(); tbp.Text = "Locals"; tbp.Icon = ServiceHost.ImageListProvider.GetIcon("console.png"); tbp.Controls.Add(localsview); tbp.Show(ws.Document, DockState.DockBottom); tbp.Hide(); tbp.HideOnClose = true; tbp = Runtime.DockFactory.Content(); tbp.Text = "Autos"; tbp.Icon = ServiceHost.ImageListProvider.GetIcon("console.png"); autosview.Tag = tbp; tbp.Controls.Add(autosview); tbp.Show(ws.Document, DockState.DockBottom); tbp.Hide(); tbp.HideOnClose = true; tbp = Runtime.DockFactory.Content(); tbp.Text = "This"; tbp.Icon = ServiceHost.ImageListProvider.GetIcon("console.png"); thisview.Tag = tbp; tbp.Controls.Add(thisview); tbp.Show(ws.Document, DockState.DockBottom); tbp.Hide(); tbp.HideOnClose = true; tbp = Runtime.DockFactory.Content(); tbp.Text = "Callstack"; tbp.Icon = ServiceHost.ImageListProvider.GetIcon("console.png"); callstackview.Tag = tbp; tbp.Controls.Add(callstackview); tbp.Show(ws.Document, DockState.DockBottom); tbp.Hide(); tbp.HideOnClose = true; } }
/// <summary> /// 窗前类表头,暂时做法 /// </summary> /// <param name="listView"></param> private void CreateHeader(ListViewEx listView) { listView.Columns.Clear(); listView.Columns.Add("文件名", 160, HorizontalAlignment.Left); listView.Columns.Add("文件大小", 60, HorizontalAlignment.Left); listView.Columns.Add("文件类型", 60, HorizontalAlignment.Left); listView.Columns.Add("创建时间", 120, HorizontalAlignment.Left); listView.Columns.Add("访问时间", 200, HorizontalAlignment.Left); }
public void loadKhuVuc_Ban() { stcKhuVuc.Tabs.Clear(); foreach(SuperTabControlPanel _panel in listSubTap) { this.stcKhuVuc.Controls.Remove(_panel); } listSubTap.Clear(); stcKhuVuc.RecalcLayout(); foreach (KhuVuc khuVuc in Global.listKhuVuc) { SuperTabControlPanel panel = new SuperTabControlPanel(); listSubTap.Add(panel); this.stcKhuVuc.Controls.Add(panel); ListViewEx listview = new ListViewEx(); listview.Name = "listview"; listview.BackColor = Color.Azure; listview.Dock = DockStyle.Fill; listview.LargeImageList = imageList1; listview.SelectedIndexChanged += listview_SelectedIndexChanged; panel.Controls.Add(listview); panel.Dock = System.Windows.Forms.DockStyle.Fill; panel.Location = new System.Drawing.Point(0, 25); panel.Name = "panell"; panel.Size = new System.Drawing.Size(249, 217); panel.TabIndex = 0; SuperTabItem subTabItem = new SuperTabItem(); panel.TabItem = subTabItem; subTabItem.AttachedControl = panel; subTabItem.GlobalItem = false; subTabItem.Name = "superTabItem"; subTabItem.Text = khuVuc.tenKhuVuc; foreach(Ban ban in Global.listBan) { if(ban.maKhuVuc == khuVuc.maKhuVuc) { ListViewItem item = new ListViewItem(); item.Text = ban.tenBan; item.Name = ban.maBan; item.ImageKey = "Table_empty.png"; item.ToolTipText = ban.tenBan; item.Tag = ban.tinhTrang; listview.Items.Add(item); } } subTabItem.AttachedControl = panel; this.stcKhuVuc.Tabs.Add(subTabItem); } }
private void OpenFile(ListViewEx list) { int index = list.SelectedIndices[0]; List <IntPtr> ptrs = list.Tag as List <IntPtr>; if (FileIsOpen.ShowWindow(ptrs[index], 9)) { FileIsOpen.SetWindowPos(ptrs[index], 0, 0, 0, 0, 0, 1 | 2); } this.Close(); }
/// <summary> /// Appends the list by thread. /// </summary> /// <param name="ViewEx">The view ex.</param> /// <param name="Item">The item.</param> private void AppendListByThread(ListViewEx ViewEx, ListViewItem Item) { if (this.InvokeRequired) { this.BeginInvoke(new AppendistViewItem(AppendListByThread), ViewEx, Item); return; } try{ ViewEx.Items.Add(Item); } catch { } }
protected override void OnElementChanged(ElementChangedEventArgs <Xamarin.Forms.ListView> e) { base.OnElementChanged(e); global::Android.Widget.ListView native = Control as global::Android.Widget.ListView; ListViewEx newElement = e.NewElement as ListViewEx; if (native != null && newElement != null) { SetAdapter(native, newElement); } }
/// <summary> /// 打开文件 /// </summary> /// <param name="sender"></param> private void OpenFile(object sender) { ListViewEx list = sender as ListViewEx; list = SelectListView(list); ExecuteCommon execute = new ExecuteCommon(); if (!(bool)execute.doMethod(Key_LogicCore.OpenApp.ToString(), new object[] { list })) { MessageBox.Show("打开应用程序失败!"); } }
public static void SearchByWord(ListViewEx lvw, String m_ID_Word) { DictionaryData data = new DictionaryData(); DataTable table= data.SearchByWord(m_ID_Word); lvw.Items.Clear(); foreach (DataRow row in table.Rows) { ListViewItem item = new ListViewItem(row["ID_Word"].ToString()); item.SubItems.Add(row["Word"].ToString()); item.SubItems.Add(row["Meaning"].ToString()); lvw.Items.Add(item); } }
private void ListView_GotFocus(object sender, EventArgs e) { _currentListView = sender as ListViewEx; if (_currentListView.Name.Contains("left")) { //_currentStatusTextBox = textBoxStatus1; } else { //_currentStatusTextBox = textBoxStatus2; } }
/// <summary> /// 删除应用 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void removeMenu_Click(object sender, EventArgs e) { ListViewEx list = sender as ListViewEx; list = SelectListView(list); ExecuteCommon execute = new ExecuteCommon(); if (!(bool)execute.doMethod(Key_LogicCore.RomoveApp.ToString(), new object[] { list })) { MessageBox.Show("删除应用失败!"); } }
public static void TimTheoTen(ListViewEx lvw, String m_TenNguoiDan) { NguoiDanData data = new NguoiDanData(); DataTable table = data.TimTheoTen(m_TenNguoiDan); lvw.Items.Clear(); foreach (DataRow row in table.Rows) { ListViewItem item = new ListViewItem(row["MANGUOIDAN"].ToString()); item.SubItems.Add(row["TENNGUOIDAN"].ToString()); lvw.Items.Add(item); } }
public void LoadArea(List<AreaData> _list) { tctKhuVuc.Tabs.Clear(); foreach (AreaData area in _list) { SuperTabItem areaTabItem = new SuperTabItem(); areaTabItem.Text = area.AreaName; SuperTabControlPanel panel = new SuperTabControlPanel(); // list view init ListViewEx listview = new ListViewEx(); listview.BackColor = System.Drawing.Color.White; listview.Dock=DockStyle.Fill; listview.LargeImageList = tableImage; listview.SelectedIndexChanged += listview_SelectedIndexChanged; LocatorBll.AreaAndTableBll.SelectAreaCommand.Execute(area); List<TableData> listtable = LocatorBll.AreaAndTableBll.ListTable; foreach (TableData tableData in listtable) { ListViewItem item = new ListViewItem(); item.Text = tableData.TableName; item.ImageKey = "OpenTable"; item.Tag = tableData; listview.Items.Add(item); } // tab panel config panel.Controls.Add(listview); panel.Dock = System.Windows.Forms.DockStyle.Fill; // panel.Location = new System.Drawing.Point(0, 33); panel.Name = area.AreaId; panel.Size = new System.Drawing.Size(600, 800); // panel.TabIndex = 0; tctKhuVuc.Controls.Add(panel); areaTabItem.AttachedControl = panel; tctKhuVuc.Tabs.Add(areaTabItem); } }
public static void ParseSnapshot( ListViewEx ExclusiveListView, List<FCallStackAllocationInfo> CallStackList, bool bShouldSortBySize, string FilterText ) { const int MaximumEntries = 400; // Progress bar. long ProgressInterval = MaximumEntries / 20; long NextProgressUpdate = ProgressInterval; int CallStackCurrent = 0; OwnerWindow.ToolStripProgressBar.Value = 0; OwnerWindow.ToolStripProgressBar.Visible = true; OwnerWindow.UpdateStatus("Updating exclusive list view for " + OwnerWindow.CurrentFilename); ExclusiveListView.BeginUpdate(); ExclusiveListView.ListViewItemSorter = null; // clear this to avoid a Sort for each call to Add // Sort based on passed in metric. if( bShouldSortBySize ) { CallStackList.Sort( CompareAbsSize ); } else { CallStackList.Sort( CompareCount ); } bool bFilterIn = OwnerWindow.IsFilteringIn(); using( FScopedLogTimer ParseTiming = new FScopedLogTimer( "FExclusiveListViewParser.ParseSnapshot" ) ) { // Figure out total size and count for percentages. long TotalSize = 0; long TotalCount = 0; foreach( FCallStackAllocationInfo AllocationInfo in CallStackList ) { // Apply optional filter. if( FStreamInfo.GlobalInstance.CallStackArray[ AllocationInfo.CallStackIndex ].RunFilters( FilterText, OwnerWindow.Options.ClassGroups, bFilterIn, OwnerWindow.SelectedMemoryPool ) ) { TotalSize += AllocationInfo.Size; TotalCount += AllocationInfo.Count; } } // Clear out existing entries and add top 400. ExclusiveListView.Items.Clear(); for( int CallStackIndex = 0; CallStackIndex < CallStackList.Count && ExclusiveListView.Items.Count <= MaximumEntries; CallStackIndex++ ) { // Update progress bar. if( CallStackCurrent >= NextProgressUpdate ) { OwnerWindow.ToolStripProgressBar.PerformStep(); NextProgressUpdate += ProgressInterval; Debug.WriteLine( "FExclusiveListViewParser.ParseSnapshot " + OwnerWindow.ToolStripProgressBar.Value + "/20" ); } CallStackCurrent++; FCallStackAllocationInfo AllocationInfo = CallStackList[ CallStackIndex ]; // Apply optional filter. FCallStack CallStack = FStreamInfo.GlobalInstance.CallStackArray[ AllocationInfo.CallStackIndex ]; if( CallStack.RunFilters( FilterText, OwnerWindow.Options.ClassGroups, bFilterIn, OwnerWindow.SelectedMemoryPool ) ) { string FunctionName = ""; int FirstStackFrameIndex; if( OwnerWindow.ContainersSplitButton.Text == " Show Containers" ) { FirstStackFrameIndex = CallStack.AddressIndices.Count - 1; } else { FirstStackFrameIndex = CallStack.FirstNonContainer; } do { FCallStackAddress Address = FStreamInfo.GlobalInstance.CallStackAddressArray[ CallStack.AddressIndices[ FirstStackFrameIndex ] ]; FunctionName = FStreamInfo.GlobalInstance.NameArray[ Address.FunctionIndex ]; FirstStackFrameIndex--; } while( UnhelpfulCallSites.Contains( FunctionName ) && FirstStackFrameIndex > 0 ); string SizeInKByte = String.Format( "{0:0}", ( float )AllocationInfo.Size / 1024 ).PadLeft( 10, ' ' ); string SizePercent = String.Format( "{0:0.00}", ( float )AllocationInfo.Size / TotalSize * 100 ).PadLeft( 10, ' ' ); string Count = String.Format( "{0:0}", AllocationInfo.Count ).PadLeft( 10, ' ' ); string CountPercent = String.Format( "{0:0.00}", ( float )AllocationInfo.Count / TotalCount * 100 ).PadLeft( 10, ' ' ); string GroupName = ( CallStack.Group != null ) ? CallStack.Group.Name : "Ungrouped"; string[] Row = new string[] { SizeInKByte, SizePercent, Count, CountPercent, GroupName, FunctionName }; ListViewItem Item = new ListViewItem( Row ); Item.Tag = AllocationInfo; ExclusiveListView.Items.Add( Item ); } } } var ColumnSorter = new MainWindow.FColumnSorter(); ColumnSorter.ColumnSortModeAscending = false; ColumnSorter.ColumnToSortBy = 0; ExclusiveListView.ListViewItemSorter = ColumnSorter; // Assignment automatically calls Sort ExclusiveListView.SetSortArrow( ColumnSorter.ColumnToSortBy, ColumnSorter.ColumnSortModeAscending ); ExclusiveListView.EndUpdate(); OwnerWindow.ToolStripProgressBar.Visible = false; }
private TabPage CreateListViewTabPage(string categoryname, TabControl tabcontrol, Search search) { for (int i = 0; i < tabcontrol.TabPages.Count; i++) { var tabpage = tabcontrol.TabPages[i]; var lw = GetTabListViewControl(tabpage); if (lw.search == search) { lw.DataItems = category.Filter(getSelectedCategory(), search.getSearch()); return tabpage; } } var listview = new ListViewEx(category.Filter(categoryname, search.getSearch())); var page = listview.DataItems.Count / config.ShowNum; listview.Page = listview.DataItems.Count % config.ShowNum == 0 ? page : page + 1; if (categoryname == Category.Trust) { listview.MultiSelect = true; } listview.search = search; listview.ContextMenuStrip = TabListViewContextMenuStrip; listview.MouseUp += (sender, e) => { var item = listview.GetItemAt(e.X, e.Y); if (item == null && listview.FocusedItem !=null) { listview.FocusedItem.Selected = true; } }; listview.ItemSelectionChanged += (sender, e) => { if (e.IsSelected) { var d = listview.DataItems[e.ItemIndex]; this.EditItem(d.ID, false, false); } }; listview.DoubleClick += (sender, e) => { if (listview.SelectedIndices.Count == 1) { var selindex = listview.SelectedIndices[0]; var id = listview.DataItems[selindex].ID; this.Moves(id); } }; listview.ItemDrag += (s, e) => { if (listview.SelectedIndices.Count > 0) { var index = listview.SelectedIndices[0]; var data = listview.DataItems[index]; listview.DoDragDrop(data, DragDropEffects.Move); } }; listview.Dock = DockStyle.Fill; var t = new TabPage(search.Pattern); t.Controls.Add(listview); return t; }
public CompareListItems(ListViewEx lv) { listView = lv; }
public HeaderHook(ListViewEx lv) { listView = lv; }
//private static IntPtr SmallImageListHandle; //private static IntPtr LargeImageListHandle; //SHFILEINFO shFileInfo = new SHFILEINFO(); public UserControl1() { InitializeComponent(); ChangedItems = new List<string>(); iconcache = new ImageList(); //this.DoubleBuffered = true; this.Margin = new Padding(0); //textBox1.Enter += (s, e) => { // textBox1.SelectAll(); //}; //textBox1.MouseDown += (s, e) => { // if (textBox1.SelectionLength == 0) { // textBox1.SelectAll(); // } //}; listView1 = new ListViewEx(); listView1.Dock = DockStyle.Fill; panel2.Controls.Add(listView1); listView1.View = View.Details; listView1.OwnerDraw = true; listView1.VirtualMode = true; listView1.VirtualListSize = 0; //listView1.FullRowSelect = true; //listView1.View = View.Details; listView1.ShowItemToolTips = true; listView1.SmallImageList = new ImageList(); //listView1.StateImageList = imageList1; //listView1.LargeImageList = new ImageList(); //listView1.SmallImageList.ColorDepth = ColorDepth.Depth32Bit; listView1.SmallImageList.ImageSize = new Size(16, 16); //SHFILEINFO shFileInfo = new SHFILEINFO(); //SmallImageListHandle = NativeMethods.SHGetFileInfo(String.Empty, 0, // out shFileInfo, (uint)Marshal.SizeOf(shFileInfo), // NativeMethods.SHGFI_SMALLICON | NativeMethods.SHGFI_SYSICONINDEX); //LargeImageListHandle = NativeMethods.SHGetFileInfo(String.Empty, 0, // out shFileInfo, (uint)Marshal.SizeOf(shFileInfo), // NativeMethods.SHGFI_LARGEICON | NativeMethods.SHGFI_SYSICONINDEX); //NativeMethods.SendMessage(listView1.Handle, NativeMethods.LVM_SETIMAGELIST, // new IntPtr(NativeMethods.LVSIL_SMALL), SmallImageListHandle); //NativeMethods.SendMessage(listView1.Handle, NativeMethods.LVM_SETIMAGELIST, // new IntPtr(NativeMethods.LVSIL_NORMAL), LargeImageListHandle); this.sortcolum = 0; this.type = SortType.Name; this.sortOrder = 1; //hwnd_ = listView1.Handle; //dc_ = Win32API.GetDC(hwnd_); //hfont_ = listView1.Font.ToHfont(); headerBrush = new SolidBrush(Color.DarkGray); //int styles = (int)MF.Win32API.NativeMethods.SendMessage(listView1.Handle, (int)LVM_GETEXTENDEDLISTVIEWSTYLE, 0, (IntPtr)0); //styles |= LVS_EX_DOUBLEBUFFER; //MF.Win32API.NativeMethods.SendMessage(listView1.Handle, (int)LVM_SETEXTENDEDLISTVIEWSTYLE, 0, (IntPtr)styles); //DateWidth = GetTextExtend(DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss")).width+10; //DateTimeColumWidth = GetTextExtend(DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss")).width + 10; //Win32API.ReleaseDC(hwnd_, dc_); //Win32API.DeleteObject(hfont_); DateTimeColumWidth = Util.GetTextExtend(listView, DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss")).width + 10; ColumnHeader headerName = new ColumnHeader(); headerName.Name = "name"; headerName.Text = "name"; listView1.Columns.Add(headerName); ColumnHeader headerType = new ColumnHeader(); headerType.Name = "type"; headerType.Text = "type"; listView1.Columns.Add(headerType); ColumnHeader headerSize = new ColumnHeader(); headerSize.Name = "size"; headerSize.Text = "size"; listView1.Columns.Add(headerSize); ColumnHeader headerLastWriteTime = new ColumnHeader(); headerLastWriteTime.Name = "lastwritetime"; headerLastWriteTime.Text = "lastwritetime"; headerLastWriteTime.Width = DateTimeColumWidth; //headerLastWriteTime.AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent); listView1.Columns.Add(headerLastWriteTime); listView1.RetrieveVirtualItem += (sender, e) => { if (e.ItemIndex < Items.Count) { var item = Items[e.ItemIndex]; var listviewitem = new ListViewItem(); listviewitem.Text = item.Name; //if (item.IsFile) { //listviewitem.ForeColor = Color.Yellow; listviewitem.SubItems.Add(item.type); //} //else { // listviewitem.SubItems.Add("Dir"); //} // listviewitem.ImageIndex = 0; listviewitem.SubItems.Add(getFileSizeFormat(item.Size)); if (item.LastWriteTime!=null) listviewitem.SubItems.Add(item.LastWriteTime.ToString("yyyy/MM/dd HH:mm:ss")); if (item.type == ".exe") { if (!iconcache.Images.ContainsKey(item.Name)) { Image icon; if (IconMethods.getIcon(Path.Combine(this.Dir, item.Name), out icon)) { iconcache.Images.Add(item.Name, icon); } } } //listviewitem.SubItems.Add(item.LastWriteTime.ToLongDateString()); e.Item = listviewitem; // NativeMethods.SHGetFileInfo(Path.Combine(this.Dir, item.Name), 0, out shFileInfo, //(uint)Marshal.SizeOf(shFileInfo), NativeMethods.SHGFI_ICON | //NativeMethods.SHGFI_SYSICONINDEX | NativeMethods.SHGFI_OVERLAYINDEX); // // 最上位8ビットを除いた値をアイコンインデックス値とする // int iconIndex = (shFileInfo.iIcon & 0xFFFFFF); // listviewitem.ImageIndex = iconIndex; // LVITEM lvitem = new LVITEM(); // lvitem.stateMask = NativeMethods.LVIS_OVERLAYMASK; // // 最上位8ビットの値を、8-11ビット目に格納、それ以外のビットは 0 にする // lvitem.state = ((shFileInfo.iIcon >> 16) & 0x0F00); // NativeMethods.SendMessage(listView1.Handle, // NativeMethods.LVM_SETITEMSTATE, listviewitem.Index, ref lvitem); // if (shFileInfo.hIcon != IntPtr.Zero) // NativeMethods.DestroyIcon(shFileInfo.hIcon); } }; //Brush b = new SolidBrush(Color.Red); listView1.DrawSubItem += (sender, e) => { //// 描画するSubItemが2列目(ColumnIndexが1)の時は、StringAligment.Farに設定して、右寄せにする //// それ以外は、Nearにして、標準の左寄せ //StringFormat drawFormat = new StringFormat(); //if (e.ColumnIndex == 2) { // drawFormat.Alignment = StringAlignment.Far; //} //else { // drawFormat.Alignment = StringAlignment.Near; //} //System.Drawing.Brush brush; //// Forcus = 0x0010,Selected = 0x0001 として ItemStateにForcusとSelectedがセットされていた場合、 //// 2bitで書くと Selected = 0001 0000 ItemState = 0000 0001で //// この二つ論理積を取ると0000 0001(0x0001 = Selected)となる。 ////if ((e.ItemState & ListViewItemStates.Selected) == ListViewItemStates.Selected) { //if (listView1.SelectedIndices.Contains(e.ItemIndex)) { // // Hightlightで範囲を塗りつぶす // if (e.ColumnIndex == 0) { // e.Graphics.FillRectangle(SystemBrushes.Highlight, e.Bounds); // // 上でセルを塗りつぶしているので、表示する文字を反転する // brush = SystemBrushes.HighlightText; // }else{ // brush = SystemBrushes.WindowText; // } //} //else { // //if (!Items[e.ItemIndex].IsFile) { // // brush = SystemBrushes.HighlightText; // //} else { // // 塗りつぶされていない通常のセルはWindowsTextに設定する // brush = SystemBrushes.WindowText; // //} //} //// 上で設定した,brushとdrawFormatを利用して文字を描画する //e.Graphics.DrawString(e.SubItem.Text, e.Item.Font, brush, e.Bounds, drawFormat); //// drawFormatを開放する //drawFormat.Dispose(); //TextFormatFlags flg; if (e.ColumnIndex == 0) { flg = TextFormatFlags.EndEllipsis | TextFormatFlags.VerticalCenter; //flg = TextFormatFlags.WordBreak; //e.Graphics.DrawImage(imageList1.Images[0], e.Bounds.Location.X, e.Bounds.Location.Y); } else if (e.ColumnIndex == 2) { flg = TextFormatFlags.Right; } else { flg = TextFormatFlags.Left; } Color brush; if (ChangedItems.Contains(e.Item.Text)) { e.Graphics.FillRectangle(SystemBrushes.GrayText, e.Bounds); } if (e.ColumnIndex == 0 && listView1.SelectedIndices.Contains(e.ItemIndex)) { //if (e.ColumnIndex == 0) { Rectangle sr = new Rectangle(e.Bounds.Location.X + 16+4, e.Bounds.Location.Y, listView1.Columns[e.ColumnIndex].Width-(16+4), e.Bounds.Height); e.Graphics.FillRectangle(SystemBrushes.Highlight, sr); //} //Rectangle hr = new Rectangle(e.Bounds.Location, new Size(listView1.Width, e.Bounds.Height)); //e.Graphics.FillRectangle(SystemBrushes.Highlight, hr); brush = SystemColors.HighlightText; } else { if (Items[e.ItemIndex].IsFile) { brush = SystemColors.WindowText; } else { brush = Color.Blue; } } if (e.ColumnIndex == 0) { var item = Items[e.ItemIndex]; var img = item.type==".exe"?iconcache.Images[item.Name]: IconCache.Inst.getImage(Path.Combine(this.Dir, item.Name), item.type, item.IsFile); if (img != null) { e.Graphics.DrawImage(img, e.Bounds.Location.X, e.Bounds.Location.Y, img.Width, img.Height); } } //Rectangle r = new Rectangle(e.Bounds.Location, new Size(listView1.Columns[e.ColumnIndex].Width, e.Bounds.Height)); int x = e.ColumnIndex == 0 ? e.Bounds.Location.X + 16+4 : e.Bounds.Location.X; int w = e.ColumnIndex == 0 ? listView1.Columns[e.ColumnIndex].Width - (16+4 ) : listView1.Columns[e.ColumnIndex].Width; //Rectangle r = new Rectangle(e.Bounds.Location.X+16+2, e.Bounds.Location.Y, listView1.Columns[e.ColumnIndex].Width, e.Bounds.Height); Rectangle r = new Rectangle(x, e.Bounds.Location.Y, w, e.Bounds.Height); TextRenderer.DrawText(e.Graphics, e.SubItem.Text, e.Item.Font, r, brush, flg); //e.DrawFocusRectangle(e.Item.Bounds); //var str = string.Join(" ", Array.ConvertAll(e.SubItem.Text.ToCharArray(), //delegate(Char c) { return c + "\x200c"; })); //TextRenderer.DrawText(e.Graphics, str, e.Item.Font, r, brush, flg); //e.DrawFocusRectangle(e.Item.Bounds); }; //Brush b = new SolidBrush(Color.DarkGray); listView1.DrawColumnHeader += (sender, e) => { if (e.ColumnIndex == sortcolum){ e.DrawBackground(); e.DrawText(TextFormatFlags.VerticalCenter | TextFormatFlags.Left); //e.Graphics.FillRectangle(b, e.Bounds.Left, e.Bounds.Top, 5, 5); if (this.sortOrder == 1) { e.Graphics.FillPolygon(headerBrush, new Point[] { new Point(e.Bounds.Right - 10, e.Bounds.Top+5), new Point(e.Bounds.Right-5, e.Bounds.Bottom-5), new Point(e.Bounds.Right - 15, e.Bounds.Bottom-5 ) }); } else if(this.sortOrder == -1){ e.Graphics.FillPolygon(headerBrush, new Point[] { new Point(e.Bounds.Right - 15, e.Bounds.Top+5), new Point(e.Bounds.Right-5, e.Bounds.Top+5), new Point(e.Bounds.Right - 10, e.Bounds.Bottom-5 ) }); } }else{ e.DrawDefault = true; } }; listView1.ColumnClick += (s, e) => { if (this.sortcolum == e.Column) { this.sortOrder = -1 * this.sortOrder; } else { this.sortOrder = 1; } this.sortcolum = e.Column; //listView.Invalidate(new Rectangle(0, 0, listView.Width, listView.Height-listView.ClientSize.Height), true); switch (e.Column) { case 0: this.sort(SortType.Name, this.sortOrder); break; case 1: this.sort(SortType.Type, this.sortOrder); break; case 2: this.sort(SortType.Size, this.sortOrder); break; case 3: this.sort(SortType.WriteTime, this.sortOrder); break; default: break; } }; //bool res = false; listView1.MouseDown += (s, e) => { var lv = s as ListView; if (e.Button == MouseButtons.Middle || e.Button == MouseButtons.Right) { var item = lv.GetItemAt(e.Location.X, e.Location.Y); if (item != null) { if ((e.Button == MouseButtons.Right && !lv.SelectedIndices.Contains(item.Index)) || e.Button == MouseButtons.Middle) { var indexs = new int[lv.SelectedIndices.Count]; lv.SelectedIndices.CopyTo(indexs, 0); for (int i = 0; i < indexs.Length; i++) { listView1.Items[indexs[i]].Selected = false; } item.Selected = true; } } } }; textBox1.KeyDown +=(sender, e)=>{ if (e.KeyCode == Keys.Return) { Dir = textBox1.Text; } }; CloseLabel.Click += (s, e) => { Close(); }; fileSystemWatcher1.IncludeSubdirectories = false; //fileSystemWatcher1.NotifyFilter = (NotifyFilters.DirectoryName | NotifyFilters.FileName | NotifyFilters.Size); fileSystemWatcher1.SynchronizingObject = this; fileSystemWatcher1.Created += new FileSystemEventHandler(fileSystemWatcher1_Changed); fileSystemWatcher1.Deleted += new FileSystemEventHandler(fileSystemWatcher1_Changed); fileSystemWatcher1.Changed += new FileSystemEventHandler(fileSystemWatcher1_Changed); fileSystemWatcher1.Renamed += (s, e) => { //var index = e.OldFullPath.LastIndexOf("\\"); //var oldname = e.OldFullPath.Substring(index + 1, e.OldFullPath.Length - (index + 1)); var old = Items.First(x => { return x.Name.Equals(e.OldName); }); if (old != null) { old.Name = e.Name; var index = Items.IndexOf(old); listView1.RedrawItems(index, index, false); } }; }
public HeaderNativeWindow(ListViewEx owner) : base() { _owner = owner; base.AssignHandle(owner.HeaderWnd); }
private void InitializeComponent() { this.components = (IContainer) new Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SearchForm)); this.panMain = new Panel(); this.pbBassLoading = new PictureBox(); this.lPreviewHeader = new Label(); this.gbResults = new System.Windows.Forms.GroupBox(); this.pbLoading = new PictureBox(); this.lResult = new Label(); this.btnCopyUrl = new System.Windows.Forms.Button(); this.cmsSearchResults = new ContextMenuStrip(this.components); this.tsmiSaveSelected = new ToolStripMenuItem(); this.tsmiSaveChecked = new ToolStripMenuItem(); this.tsmiShowLyrics = new ToolStripMenuItem(); this.tsmiPreview = new ToolStripMenuItem(); this.toolStripSeparator1 = new ToolStripSeparator(); this.tsmiCheckAll = new ToolStripMenuItem(); this.tsmiUncheckAll = new ToolStripMenuItem(); this.tsmiInvertCheck = new ToolStripMenuItem(); this.gbSearch = new System.Windows.Forms.GroupBox(); this.cbPerformer = new System.Windows.Forms.CheckBox(); this.rbMyAudio = new System.Windows.Forms.RadioButton(); this.rbGroupPerson = new System.Windows.Forms.RadioButton(); this.rbSearch = new System.Windows.Forms.RadioButton(); this.lSearchMode = new Label(); this.btnSearch = new System.Windows.Forms.Button(); this.tbSearch = new System.Windows.Forms.TextBox(); this.lNameCaption = new Label(); this.gbPreview = new System.Windows.Forms.GroupBox(); this.lPreviewTime = new Label(); this.btnStop = new System.Windows.Forms.Button(); this.btnPlayPause = new System.Windows.Forms.Button(); this.panBottom = new Panel(); this.cbDownloadImmediate = new System.Windows.Forms.CheckBox(); this.btnCancel = new System.Windows.Forms.Button(); this.btnOk = new System.Windows.Forms.Button(); this.tsmiCheckSelected = new ToolStripMenuItem(); this.lvResults = new ListViewEx(); this.chSong = new ColumnHeader(); this.chDuration = new ColumnHeader(); this.tbPreviewProgress = new TrackBarEx(); this.panMain.SuspendLayout(); this.gbResults.SuspendLayout(); this.cmsSearchResults.SuspendLayout(); this.gbSearch.SuspendLayout(); this.gbPreview.SuspendLayout(); this.panBottom.SuspendLayout(); this.tbPreviewProgress.BeginInit(); this.SuspendLayout(); this.panMain.Controls.Add((Control) this.pbBassLoading); this.panMain.Controls.Add((Control) this.lPreviewHeader); this.panMain.Controls.Add((Control) this.gbResults); this.panMain.Controls.Add((Control) this.gbSearch); this.panMain.Controls.Add((Control) this.gbPreview); this.panMain.Dock = DockStyle.Fill; this.panMain.Location = new Point(0, 0); this.panMain.Name = "panMain"; this.panMain.Padding = new Padding(3, 3, 3, 0); this.panMain.Size = new Size(417, 471); this.panMain.TabIndex = 1; this.pbBassLoading.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; this.pbBassLoading.Image = (Image) Resources.ajax_loader; this.pbBassLoading.InitialImage = (Image) Resources.ajax_loader; this.pbBassLoading.Location = new Point(397, 423); this.pbBassLoading.Name = "pbBassLoading"; this.pbBassLoading.Size = new Size(12, 12); this.pbBassLoading.SizeMode = PictureBoxSizeMode.StretchImage; this.pbBassLoading.TabIndex = 15; this.pbBassLoading.TabStop = false; this.pbBassLoading.Visible = false; this.lPreviewHeader.AutoSize = true; this.lPreviewHeader.Enabled = false; this.lPreviewHeader.Location = new Point(10, 420); this.lPreviewHeader.Name = "lPreviewHeader"; this.lPreviewHeader.Size = new Size(47, 13); this.lPreviewHeader.TabIndex = 14; this.lPreviewHeader.Text = "Превью"; this.gbResults.Controls.Add((Control) this.pbLoading); this.gbResults.Controls.Add((Control) this.lResult); this.gbResults.Controls.Add((Control) this.btnCopyUrl); this.gbResults.Controls.Add((Control) this.lvResults); this.gbResults.Dock = DockStyle.Fill; this.gbResults.Location = new Point(3, 91); this.gbResults.Name = "gbResults"; this.gbResults.Size = new Size(411, 331); this.gbResults.TabIndex = 3; this.gbResults.TabStop = false; this.gbResults.Text = "Результаты"; this.pbLoading.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; this.pbLoading.Image = (Image) Resources.ajax_loader; this.pbLoading.InitialImage = (Image) Resources.ajax_loader; this.pbLoading.Location = new Point(388, 308); this.pbLoading.Name = "pbLoading"; this.pbLoading.Size = new Size(18, 18); this.pbLoading.TabIndex = 11; this.pbLoading.TabStop = false; this.pbLoading.Visible = false; this.lResult.AutoSize = true; this.lResult.Location = new Point(9, 18); this.lResult.Name = "lResult"; this.lResult.Size = new Size(68, 13); this.lResult.TabIndex = 9; this.lResult.Text = "Ожидание..."; this.btnCopyUrl.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; this.btnCopyUrl.FlatStyle = FlatStyle.Flat; this.btnCopyUrl.Location = new Point(3, 304); this.btnCopyUrl.Name = "btnCopyUrl"; this.btnCopyUrl.Size = new Size(164, 23); this.btnCopyUrl.TabIndex = 8; this.btnCopyUrl.Text = "Скопировать URL в буфер"; this.btnCopyUrl.UseVisualStyleBackColor = true; this.btnCopyUrl.Click += new EventHandler(this.btnCopyUrl_Click); this.cmsSearchResults.Items.AddRange(new ToolStripItem[9] { (ToolStripItem) this.tsmiSaveSelected, (ToolStripItem) this.tsmiSaveChecked, (ToolStripItem) this.tsmiShowLyrics, (ToolStripItem) this.tsmiPreview, (ToolStripItem) this.toolStripSeparator1, (ToolStripItem) this.tsmiCheckAll, (ToolStripItem) this.tsmiCheckSelected, (ToolStripItem) this.tsmiUncheckAll, (ToolStripItem) this.tsmiInvertCheck }); this.cmsSearchResults.Name = "cmsSearchResults"; this.cmsSearchResults.Size = new Size(205, 186); this.tsmiSaveSelected.Name = "tsmiSaveSelected"; this.tsmiSaveSelected.Size = new Size(204, 22); this.tsmiSaveSelected.Text = "Скачать выделенные"; this.tsmiSaveSelected.Click += new EventHandler(this.tsmiSaveSelected_Click); this.tsmiSaveChecked.Name = "tsmiSaveChecked"; this.tsmiSaveChecked.Size = new Size(204, 22); this.tsmiSaveChecked.Text = "Скачать выбранные"; this.tsmiSaveChecked.Click += new EventHandler(this.tsmiSaveChecked_Click); this.tsmiShowLyrics.Name = "tsmiShowLyrics"; this.tsmiShowLyrics.Size = new Size(204, 22); this.tsmiShowLyrics.Text = "Просмотреть текст песни"; this.tsmiShowLyrics.Click += new EventHandler(this.tsmiShowLyrics_Click); this.tsmiPreview.Name = "tsmiPreview"; this.tsmiPreview.Size = new Size(204, 22); this.tsmiPreview.Text = "Превью аудиозаписи"; this.tsmiPreview.Click += new EventHandler(this.tsmiPreview_Click); this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new Size(201, 6); this.tsmiCheckAll.Name = "tsmiCheckAll"; this.tsmiCheckAll.Size = new Size(204, 22); this.tsmiCheckAll.Text = "Выбрать всё"; this.tsmiCheckAll.Click += new EventHandler(this.tsmiCheckAll_Click); this.tsmiUncheckAll.Name = "tsmiUncheckAll"; this.tsmiUncheckAll.Size = new Size(204, 22); this.tsmiUncheckAll.Text = "Отменить выбор"; this.tsmiUncheckAll.Click += new EventHandler(this.tsmiUncheckAll_Click); this.tsmiInvertCheck.Name = "tsmiInvertCheck"; this.tsmiInvertCheck.Size = new Size(204, 22); this.tsmiInvertCheck.Text = "Инвертировать выбор"; this.tsmiInvertCheck.Click += new EventHandler(this.tsmiInvertCheck_Click); this.gbSearch.Controls.Add((Control) this.cbPerformer); this.gbSearch.Controls.Add((Control) this.rbMyAudio); this.gbSearch.Controls.Add((Control) this.rbGroupPerson); this.gbSearch.Controls.Add((Control) this.rbSearch); this.gbSearch.Controls.Add((Control) this.lSearchMode); this.gbSearch.Controls.Add((Control) this.btnSearch); this.gbSearch.Controls.Add((Control) this.tbSearch); this.gbSearch.Controls.Add((Control) this.lNameCaption); this.gbSearch.Dock = DockStyle.Top; this.gbSearch.Location = new Point(3, 3); this.gbSearch.Name = "gbSearch"; this.gbSearch.Size = new Size(411, 88); this.gbSearch.TabIndex = 2; this.gbSearch.TabStop = false; this.gbSearch.Text = "Поиск"; this.cbPerformer.AutoSize = true; this.cbPerformer.Location = new Point(76, 38); this.cbPerformer.Name = "cbPerformer"; this.cbPerformer.Size = new Size(154, 17); this.cbPerformer.TabIndex = 4; this.cbPerformer.Text = "Только по исполнителям"; this.cbPerformer.UseVisualStyleBackColor = true; this.cbPerformer.CheckedChanged += new EventHandler(this.cbPerformer_CheckedChanged); this.rbMyAudio.AutoSize = true; this.rbMyAudio.Location = new Point(293, 18); this.rbMyAudio.Name = "rbMyAudio"; this.rbMyAudio.Size = new Size(114, 17); this.rbMyAudio.TabIndex = 3; this.rbMyAudio.Text = "Мои аудиозаписи"; this.rbMyAudio.UseVisualStyleBackColor = true; this.rbGroupPerson.AutoSize = true; this.rbGroupPerson.Location = new Point(140, 18); this.rbGroupPerson.Name = "rbGroupPerson"; this.rbGroupPerson.Size = new Size(146, 17); this.rbGroupPerson.TabIndex = 2; this.rbGroupPerson.Text = "Аудио группы/человека"; this.rbGroupPerson.UseVisualStyleBackColor = true; this.rbSearch.AutoSize = true; this.rbSearch.Checked = true; this.rbSearch.Location = new Point(76, 18); this.rbSearch.Name = "rbSearch"; this.rbSearch.Size = new Size(57, 17); this.rbSearch.TabIndex = 1; this.rbSearch.TabStop = true; this.rbSearch.Text = "Поиск"; this.rbSearch.UseVisualStyleBackColor = true; this.lSearchMode.AutoSize = true; this.lSearchMode.Location = new Point(9, 20); this.lSearchMode.Name = "lSearchMode"; this.lSearchMode.Size = new Size(45, 13); this.lSearchMode.TabIndex = 2; this.lSearchMode.Text = "Режим:"; this.btnSearch.Anchor = AnchorStyles.Top | AnchorStyles.Right; this.btnSearch.BackgroundImage = (Image) Resources.arrow_right; this.btnSearch.BackgroundImageLayout = ImageLayout.Center; this.btnSearch.FlatStyle = FlatStyle.Popup; this.btnSearch.Location = new Point(383, 59); this.btnSearch.Name = "btnSearch"; this.btnSearch.Size = new Size(20, 20); this.btnSearch.TabIndex = 6; this.btnSearch.UseVisualStyleBackColor = true; this.btnSearch.Click += new EventHandler(this.btnSearch_Click); this.tbSearch.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; this.tbSearch.BorderStyle = BorderStyle.FixedSingle; this.tbSearch.Location = new Point(75, 59); this.tbSearch.Name = "tbSearch"; this.tbSearch.Size = new Size(302, 20); this.tbSearch.TabIndex = 5; this.tbSearch.KeyPress += new KeyPressEventHandler(this.tbSearch_KeyPress); this.lNameCaption.AutoSize = true; this.lNameCaption.Location = new Point(9, 62); this.lNameCaption.Name = "lNameCaption"; this.lNameCaption.Size = new Size(60, 13); this.lNameCaption.TabIndex = 0; this.lNameCaption.Text = "Название:"; this.gbPreview.Controls.Add((Control) this.lPreviewTime); this.gbPreview.Controls.Add((Control) this.btnStop); this.gbPreview.Controls.Add((Control) this.btnPlayPause); this.gbPreview.Controls.Add((Control) this.tbPreviewProgress); this.gbPreview.Dock = DockStyle.Bottom; this.gbPreview.Enabled = false; this.gbPreview.Location = new Point(3, 422); this.gbPreview.Name = "gbPreview"; this.gbPreview.Size = new Size(411, 49); this.gbPreview.TabIndex = 13; this.gbPreview.TabStop = false; this.lPreviewTime.Anchor = AnchorStyles.Top | AnchorStyles.Right; this.lPreviewTime.AutoSize = true; this.lPreviewTime.Enabled = false; this.lPreviewTime.Location = new Point(335, 0); this.lPreviewTime.Name = "lPreviewTime"; this.lPreviewTime.Size = new Size(60, 13); this.lPreviewTime.TabIndex = 16; this.lPreviewTime.Text = "0:00 / 0:00"; this.lPreviewTime.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.btnStop.BackgroundImage = (Image) Resources.stop; this.btnStop.BackgroundImageLayout = ImageLayout.Center; this.btnStop.FlatStyle = FlatStyle.Popup; this.btnStop.Location = new Point(34, 19); this.btnStop.Name = "btnStop"; this.btnStop.Size = new Size(20, 20); this.btnStop.TabIndex = 10; this.btnStop.UseVisualStyleBackColor = true; this.btnStop.Click += new EventHandler(this.btnStop_Click); this.btnPlayPause.BackgroundImage = (Image) Resources.play; this.btnPlayPause.BackgroundImageLayout = ImageLayout.Center; this.btnPlayPause.FlatStyle = FlatStyle.Popup; this.btnPlayPause.Location = new Point(8, 19); this.btnPlayPause.Name = "btnPlayPause"; this.btnPlayPause.Size = new Size(20, 20); this.btnPlayPause.TabIndex = 9; this.btnPlayPause.UseVisualStyleBackColor = true; this.btnPlayPause.Click += new EventHandler(this.btnPlayPause_Click); this.panBottom.Controls.Add((Control) this.cbDownloadImmediate); this.panBottom.Controls.Add((Control) this.btnCancel); this.panBottom.Controls.Add((Control) this.btnOk); this.panBottom.Dock = DockStyle.Bottom; this.panBottom.Location = new Point(0, 471); this.panBottom.Name = "panBottom"; this.panBottom.Size = new Size(417, 42); this.panBottom.TabIndex = 8; this.cbDownloadImmediate.AutoSize = true; this.cbDownloadImmediate.FlatStyle = FlatStyle.Flat; this.cbDownloadImmediate.Location = new Point(11, 12); this.cbDownloadImmediate.Name = "cbDownloadImmediate"; this.cbDownloadImmediate.Size = new Size(154, 17); this.cbDownloadImmediate.TabIndex = 12; this.cbDownloadImmediate.Text = "Скачать сразу полностью"; this.cbDownloadImmediate.UseVisualStyleBackColor = true; this.btnCancel.Anchor = AnchorStyles.Top | AnchorStyles.Right; this.btnCancel.FlatStyle = FlatStyle.Flat; this.btnCancel.Location = new Point(317, 9); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new Size(92, 23); this.btnCancel.TabIndex = 14; this.btnCancel.Text = "Отмена"; this.btnCancel.UseVisualStyleBackColor = true; this.btnCancel.Click += new EventHandler(this.btnCancel_Click); this.btnOk.Anchor = AnchorStyles.Top | AnchorStyles.Right; this.btnOk.FlatStyle = FlatStyle.Flat; this.btnOk.Location = new Point(219, 9); this.btnOk.Name = "btnOk"; this.btnOk.Size = new Size(92, 23); this.btnOk.TabIndex = 13; this.btnOk.Text = "OK"; this.btnOk.UseVisualStyleBackColor = true; this.btnOk.Click += new EventHandler(this.btnOk_Click); this.tsmiCheckSelected.Name = "tsmiCheckSelected"; this.tsmiCheckSelected.Size = new Size(204, 22); this.tsmiCheckSelected.Text = "Выбрать выделенные"; this.tsmiCheckSelected.Click += new EventHandler(this.tsmiCheckSelected_Click); this.lvResults.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right; this.lvResults.BorderStyle = BorderStyle.FixedSingle; this.lvResults.CheckBoxes = true; this.lvResults.Columns.AddRange(new ColumnHeader[2] { this.chSong, this.chDuration }); this.lvResults.ContextMenuStrip = this.cmsSearchResults; this.lvResults.FullRowSelect = true; this.lvResults.GridLines = true; this.lvResults.HideSelection = false; this.lvResults.Location = new Point(3, 40); this.lvResults.Name = "lvResults"; this.lvResults.Size = new Size(405, 261); this.lvResults.TabIndex = 7; this.lvResults.UseCompatibleStateImageBehavior = false; this.lvResults.View = View.Details; this.lvResults.Scroll += new EventHandler(this.lvResults_Scroll); this.lvResults.MouseDoubleClick += new MouseEventHandler(this.lvResults_MouseDoubleClick); this.chSong.Text = "Аудиозапись"; this.chSong.Width = 293; this.chDuration.Text = "Длительность"; this.chDuration.Width = 89; this.tbPreviewProgress.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; this.tbPreviewProgress.AutoSize = false; this.tbPreviewProgress.LargeChange = 0; this.tbPreviewProgress.Location = new Point(58, 15); this.tbPreviewProgress.Maximum = 100; this.tbPreviewProgress.Name = "tbPreviewProgress"; this.tbPreviewProgress.Size = new Size(350, 31); this.tbPreviewProgress.SmallChange = 0; this.tbPreviewProgress.TabIndex = 11; this.tbPreviewProgress.TickFrequency = 10; this.tbPreviewProgress.ValueChanged += new EventHandler(this.tbPreviewProgress_ValueChanged); this.AutoScaleDimensions = new SizeF(6f, 13f); this.BackColor = Color.White; this.ClientSize = new Size(417, 513); this.Controls.Add((Control) this.panMain); this.Controls.Add((Control) this.panBottom); this.DoubleBuffered = true; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MinimizeBox = false; this.MinimumSize = new Size(425, 540); this.Name = "SearchForm"; this.StartPosition = FormStartPosition.CenterParent; this.Text = "Поиск песен"; this.FormClosed += new FormClosedEventHandler(this.SearchForm_FormClosed); this.Load += new EventHandler(this.SearchForm_Load); this.Shown += new EventHandler(this.SearchForm_Shown); this.Resize += new EventHandler(this.SearchForm_Resize); this.panMain.ResumeLayout(false); this.panMain.PerformLayout(); this.gbResults.ResumeLayout(false); this.gbResults.PerformLayout(); this.cmsSearchResults.ResumeLayout(false); this.gbSearch.ResumeLayout(false); this.gbSearch.PerformLayout(); this.gbPreview.ResumeLayout(false); this.gbPreview.PerformLayout(); this.panBottom.ResumeLayout(false); this.panBottom.PerformLayout(); this.tbPreviewProgress.EndInit(); this.ResumeLayout(false); }
public void LoadKhuVuc() { //saveCurrent(); stcKhuVuc.Tabs.Clear(); List<AreaData> _list = areaAndTableBll.ListArea; foreach (AreaData area in _list) { SuperTabItem areaTabItem = new SuperTabItem(); areaTabItem.Text = area.AreaName; SuperTabControlPanel panel = new SuperTabControlPanel(); // list view init ListViewEx listview = new ListViewEx(); listview.Name = "listview"; listview.BackColor = Color.White; listview.Dock = DockStyle.Fill; listview.LargeImageList = tableImage; listview.SelectedIndexChanged += listview_SelectedIndexChanged; LocatorBll.AreaAndTableBll.SelectAreaCommand.Execute(area); List<TableData> listtable = LocatorBll.AreaAndTableBll.ListTable; List<TableData> alltable = new List<TableData>(); foreach (TableData tableData in listtable) { ListViewItem item = new ListViewItem(); item.Text = tableData.TableName; item.ImageKey = tableData.TableState; item.Tag = tableData; listview.Items.Add(item); alltable.Add(tableData); } homePageBll.ListTable = alltable; // tab panel config panel.Controls.Add(listview); //panel.Dock = DockStyle.Fill; // panel.Location = new System.Drawing.Point(0, 33); panel.Name = area.AreaId; panel.Size = new System.Drawing.Size(600, 800); // panel.TabIndex = 0; stcKhuVuc.Controls.Add(panel); areaTabItem.AttachedControl = panel; stcKhuVuc.Tabs.Add(areaTabItem); //loadCurrent(); } }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Results)); this.lvDestination = new XmlParsersAndUi.Classes.ListViewEx(); this.columnHeader3 = new System.Windows.Forms.ColumnHeader(); this.columnHeader4 = new System.Windows.Forms.ColumnHeader(); this.lvSource = new XmlParsersAndUi.Classes.ListViewEx(); this.columnHeader1 = new System.Windows.Forms.ColumnHeader(); this.columnHeader2 = new System.Windows.Forms.ColumnHeader(); this.SuspendLayout(); // // lvDestination // this.lvDestination.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader3, this.columnHeader4}); this.lvDestination.FullRowSelect = true; this.lvDestination.HideSelection = false; this.lvDestination.Location = new System.Drawing.Point(176, 15); this.lvDestination.MultiSelect = false; this.lvDestination.Name = "lvDestination"; this.lvDestination.ScrollPosition = 0; this.lvDestination.Size = new System.Drawing.Size(123, 110); this.lvDestination.TabIndex = 2; this.lvDestination.UseCompatibleStateImageBehavior = false; this.lvDestination.View = System.Windows.Forms.View.Details; this.lvDestination.Resize += new System.EventHandler(this.lvDestination_Resize); this.lvDestination.SelectedIndexChanged += new System.EventHandler(this.lvDestination_SelectedIndexChanged); // // columnHeader3 // this.columnHeader3.Text = "Line"; this.columnHeader3.Width = 50; // // columnHeader4 // this.columnHeader4.Text = "Text (Cleaned)"; this.columnHeader4.Width = 198; // // lvSource // this.lvSource.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader1, this.columnHeader2}); this.lvSource.FullRowSelect = true; this.lvSource.HideSelection = false; this.lvSource.Location = new System.Drawing.Point(28, 17); this.lvSource.MultiSelect = false; this.lvSource.Name = "lvSource"; this.lvSource.ScrollPosition = 0; this.lvSource.Size = new System.Drawing.Size(114, 102); this.lvSource.TabIndex = 0; this.lvSource.UseCompatibleStateImageBehavior = false; this.lvSource.View = System.Windows.Forms.View.Details; this.lvSource.Resize += new System.EventHandler(this.lvSource_Resize); this.lvSource.SelectedIndexChanged += new System.EventHandler(this.lvSource_SelectedIndexChanged); this.lvSource.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lvSource_MouseDown); // // columnHeader1 // this.columnHeader1.Text = "Line"; this.columnHeader1.Width = 50; // // columnHeader2 // this.columnHeader2.Text = "Text (Original)"; this.columnHeader2.Width = 147; // // Results // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(431, 290); this.Controls.Add(this.lvDestination); this.Controls.Add(this.lvSource); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "Results"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Results"; this.Load += new System.EventHandler(this.Results_Load); this.Resize += new System.EventHandler(this.Results_Resize); this.ResumeLayout(false); }
public void InitListView() { this.listView1 = new ListViewEx(); this.columnHeader1 = new System.Windows.Forms.ColumnHeader(); this.columnHeader2 = new System.Windows.Forms.ColumnHeader(); this.columnHeader3 = new System.Windows.Forms.ColumnHeader(); this.columnHeader4 = new System.Windows.Forms.ColumnHeader(); this.SuspendLayout(); // // listViewMain // this.listView1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader1, this.columnHeader2, this.columnHeader3, this.columnHeader4}); this.listView1.Dock = System.Windows.Forms.DockStyle.Fill; this.listView1.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listView1.FullRowSelect = true; this.listView1.GridLines = true; // If subitem is not added, add it automatically on clicking an item. this.listView1.AddSubItem = true; this.listView1.Parent = keywordPanel; this.listView1.Dock = DockStyle.Fill; // Make the Name and adress columns editable this.listView1.AddEditableCell(-1, 0); this.listView1.AddEditableCell(-1, 2); this.listView1.AddEditableCell(-1, 3); // Create data for combobox //StringCollection grades = new StringCollection(); sortTypeCollect.AddRange(new string[] { "综合", "销量", "人气", "直通车"}); // Set the combobox this.listView1.AddComboBoxCell(-1, 1, sortTypeCollect); //this.listView1.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listView1_ColumnClick); // // columnHeader1 // this.columnHeader1.Text = "关键词"; this.columnHeader1.Width = keywordPanel.Width * 6/10; // // columnHeader2 // this.columnHeader2.Text = "排列"; this.columnHeader2.Width = keywordPanel.Width * 1 / 10; // // columnHeader3 // this.columnHeader3.Text = "页码范围"; this.columnHeader3.Width = keywordPanel.Width * 1/10; this.columnHeader4.Text = "价格范围"; this.columnHeader4.Width = keywordPanel.Width * 2 / 10; this.listView1.View = System.Windows.Forms.View.Details; }
/// <summary> /// Updates the list by thread. /// </summary> /// <param name="ViewEx">The view ex.</param> /// <param name="Item">The item.</param> /// <param name="Id">The id.</param> private void UpdateListByThread(ListViewEx ViewEx, string ImageKey, string Id, float TotalBytes, string Reconnect) { if (this.InvokeRequired) { this.BeginInvoke(new UpdateListViewItem(UpdateListByThread), ViewEx, ImageKey, Id, TotalBytes, Reconnect); return; } try { if (TotalBytes <= 0) { //if (!ViewEx.Items.Contains(new ListViewItem() {Name=Id })) return; eTerm443Async Async = ViewEx.Items[Id].Tag as eTerm443Async; ViewEx.Items[Id].Remove(); //Thread.Sleep(5000); //AsyncStackNet.Instance.ReconnectAsync(Async); return; } ViewEx.Items[Id].SubItems[2].Text = TotalBytes.ToString("f2"); ViewEx.Items[Id].SubItems[3].Text = Reconnect; ViewEx.Items[Id].ImageKey = ImageKey; } catch { } }
/// <summary> /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas /// le contenu de cette méthode avec l'éditeur de code. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ClientForm)); this.splitContainer10 = new System.Windows.Forms.SplitContainer(); this.numericUpDownProjectJobs = new System.Windows.Forms.NumericUpDown(); this.gBProjectFinancialPlan = new System.Windows.Forms.GroupBox(); this.lProjectFinancialPlanType = new System.Windows.Forms.Label(); this.lProjectFinancialPlanAmount = new System.Windows.Forms.Label(); this.tBProjectFinancialPlanTotal = new System.Windows.Forms.TextBox(); this.tBProjectFinancialPlanAmount = new System.Windows.Forms.TextBox(); this.cBProjectFinancialPlanType = new System.Windows.Forms.ComboBox(); this.lProjectFinancialPlanTotalAmount = new System.Windows.Forms.Label(); this.lProjectNbOfNewJobs = new System.Windows.Forms.Label(); this.tBProjectCA = new System.Windows.Forms.TextBox(); this.lProjectCA = new System.Windows.Forms.Label(); this.lProjectCorporateName = new System.Windows.Forms.Label(); this.cBProjectAffiliation = new System.Windows.Forms.ComboBox(); this.cBProjectFiscalStatus = new System.Windows.Forms.ComboBox(); this.tBProjectCorporateName = new System.Windows.Forms.TextBox(); this.cBProjectJuridicStatus = new System.Windows.Forms.ComboBox(); this.lProjectCorporateSIRET = new System.Windows.Forms.Label(); this.lProjectJuridicStatus = new System.Windows.Forms.Label(); this.tBProjectCorporateSIRET = new System.Windows.Forms.TextBox(); this.lProjectAffiliation = new System.Windows.Forms.Label(); this.lProjectFiscalStatus = new System.Windows.Forms.Label(); this.gBProjectAddress = new System.Windows.Forms.GroupBox(); this.splitContainer11 = new System.Windows.Forms.SplitContainer(); this.listViewProjectFollowUp = new System.Windows.Forms.ListView(); this.columnHeaderProjectYear = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderProjectJobs1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderProjectJobs2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderProjectCA = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderprojectPersonalSituation = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderProjectActivity = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderProjectComment = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.gBProjectFollowUp = new System.Windows.Forms.GroupBox(); this.buttonProjectAddFollowUp = new System.Windows.Forms.Button(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.listViewGuarantors = new System.Windows.Forms.ListView(); this.columnHeaderName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader17 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderPercentage = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderDesc = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.panel3 = new System.Windows.Forms.Panel(); this.btnPrintGuarantors = new OpenCBS.GUI.UserControl.PrintButton(); this.pnlGuarantorButtons = new System.Windows.Forms.FlowLayoutPanel(); this.buttonSelectAGarantors = new System.Windows.Forms.Button(); this.buttonModifyAGarantors = new System.Windows.Forms.Button(); this.buttonViewAGarantors = new System.Windows.Forms.Button(); this.buttonDelete = new System.Windows.Forms.Button(); this.lblCreditCurrency = new System.Windows.Forms.Label(); this.lblGuarantorsList = new System.Windows.Forms.Label(); this.listViewCollaterals = new System.Windows.Forms.ListView(); this.columnHeader19 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader20 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader25 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderColDesc = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.pnlCollateralButtons = new System.Windows.Forms.FlowLayoutPanel(); this.buttonAddCollateral = new System.Windows.Forms.Button(); this.buttonModifyCollateral = new System.Windows.Forms.Button(); this.buttonViewCollateral = new System.Windows.Forms.Button(); this.buttonDelCollateral = new System.Windows.Forms.Button(); this.lblCollaterals = new System.Windows.Forms.Label(); this.splitContainerContracts = new System.Windows.Forms.SplitContainer(); this.panelLoansContracts = new System.Windows.Forms.Panel(); this.labelLoansContracts = new System.Windows.Forms.Label(); this.panelSavingsContracts = new System.Windows.Forms.Panel(); this.labelSavingsContracts = new System.Windows.Forms.Label(); this.splitContainer3 = new System.Windows.Forms.SplitContainer(); this.panelUserControl = new System.Windows.Forms.Panel(); this.splitContainer4 = new System.Windows.Forms.SplitContainer(); this.splitContainer6 = new System.Windows.Forms.SplitContainer(); this.tabControlPerson = new System.Windows.Forms.TabControl(); this.tabPageDetails = new System.Windows.Forms.TabPage(); this.tabPageProject = new System.Windows.Forms.TabPage(); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.groupBoxProjectDetails = new System.Windows.Forms.GroupBox(); this.dateTimePickerProjectBeginDate = new System.Windows.Forms.DateTimePicker(); this.labelProjectDate = new System.Windows.Forms.Label(); this.buttonProjectSelectPurpose = new System.Windows.Forms.Button(); this.textBoxProjectPurpose = new System.Windows.Forms.TextBox(); this.labelProjectPurpose = new System.Windows.Forms.Label(); this.labelProjectName = new System.Windows.Forms.Label(); this.textBoxProjectName = new System.Windows.Forms.TextBox(); this.labelProjectCode = new System.Windows.Forms.Label(); this.textBoxProjectCode = new System.Windows.Forms.TextBox(); this.labelFirstProjectName = new System.Windows.Forms.Label(); this.textBoxProjectAim = new System.Windows.Forms.TextBox(); this.panel1 = new System.Windows.Forms.Panel(); this.buttonProjectSave = new System.Windows.Forms.Button(); this.tabControlProject = new System.Windows.Forms.TabControl(); this.tabPageProjectLoans = new System.Windows.Forms.TabPage(); this.pnlLoans = new System.Windows.Forms.Panel(); this.lvContracts = new System.Windows.Forms.ListView(); this.columnProductType = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderId = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderStatus = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderAmount = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderOLB = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderCurrency = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderInterestRate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderInstallmentType = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderNbOfInstallments = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderCreationDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderStartDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderCloseDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel(); this.buttonProjectAddContract = new System.Windows.Forms.Button(); this.buttonProjectViewContract = new System.Windows.Forms.Button(); this.tabPageProjectAnalyses = new System.Windows.Forms.TabPage(); this.textBoxProjectConcurrence = new System.Windows.Forms.TextBox(); this.textBoxProjectMarket = new System.Windows.Forms.TextBox(); this.labelProjectConcurrence = new System.Windows.Forms.Label(); this.labelProjectMarket = new System.Windows.Forms.Label(); this.textBoxProjectAbilities = new System.Windows.Forms.TextBox(); this.textBoxProjectExperience = new System.Windows.Forms.TextBox(); this.labelProjectExperience = new System.Windows.Forms.Label(); this.labelProjectAbilities = new System.Windows.Forms.Label(); this.tabPageCorporate = new System.Windows.Forms.TabPage(); this.tabPageFollowUp = new System.Windows.Forms.TabPage(); this.tabPageLoansDetails = new System.Windows.Forms.TabPage(); this.tclLoanDetails = new System.Windows.Forms.TabControl(); this.tabPageInstallments = new System.Windows.Forms.TabPage(); this.listViewLoanInstallments = new OpenCBS.GUI.UserControl.ListViewEx(); this.columnHeaderLoanN = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderLoanDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderLoanIP = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderLoanPR = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderLoanInstallmentTotal = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderLoanOLB = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.tabPageLoanCustomizableFields = new System.Windows.Forms.TabPage(); this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel(); this.btnSaveLoan = new System.Windows.Forms.Button(); this.buttonLoanPreview = new System.Windows.Forms.Button(); this.buttonLoanDisbursment = new System.Windows.Forms.Button(); this.btnPrintLoanDetails = new OpenCBS.GUI.UserControl.PrintButton(); this.btnLoanShares = new System.Windows.Forms.Button(); this.btnEditSchedule = new System.Windows.Forms.Button(); this.gbxLoanDetails = new System.Windows.Forms.GroupBox(); this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel(); this.lblEconomicActivity = new System.Windows.Forms.Label(); this.labelDateOffirstInstallment = new System.Windows.Forms.Label(); this.labelLoanAmountMinMax = new System.Windows.Forms.Label(); this.labelLoanNbOfInstallmentsMinMax = new System.Windows.Forms.Label(); this.dtpDateOfFirstInstallment = new System.Windows.Forms.DateTimePicker(); this.labelLoanGracePeriodMinMax = new System.Windows.Forms.Label(); this.labelLoanContractCode = new System.Windows.Forms.Label(); this.textBoxLoanContractCode = new System.Windows.Forms.TextBox(); this.labelLoanAmount = new System.Windows.Forms.Label(); this.labelLoanInterestRate = new System.Windows.Forms.Label(); this.dateLoanStart = new System.Windows.Forms.DateTimePicker(); this.labelLoanNbOfInstallments = new System.Windows.Forms.Label(); this.labelLoanStartDate = new System.Windows.Forms.Label(); this.lbLoanInterestRateMinMax = new System.Windows.Forms.Label(); this.labelLoanGracePeriod = new System.Windows.Forms.Label(); this.numericUpDownLoanGracePeriod = new System.Windows.Forms.NumericUpDown(); this.nudLoanNbOfInstallments = new System.Windows.Forms.NumericUpDown(); this.lblDay = new System.Windows.Forms.Label(); this.cmbLoanOfficer = new System.Windows.Forms.ComboBox(); this.labelLoanLoanOfficer = new System.Windows.Forms.Label(); this.labelLoanInstallmentType = new System.Windows.Forms.Label(); this.comboBoxLoanInstallmentType = new System.Windows.Forms.ComboBox(); this.labelLoanFundingLine = new System.Windows.Forms.Label(); this.comboBoxLoanFundingLine = new System.Windows.Forms.ComboBox(); this.labelLoanPurpose = new System.Windows.Forms.Label(); this.textBoxLoanPurpose = new System.Windows.Forms.TextBox(); this.nudLoanAmount = new System.Windows.Forms.NumericUpDown(); this.nudInterestRate = new System.Windows.Forms.NumericUpDown(); this.eacLoan = new OpenCBS.GUI.UserControl.EconomicActivityControl(); this.tabPageAdvancedSettings = new System.Windows.Forms.TabPage(); this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel(); this.flowLayoutPanel5 = new System.Windows.Forms.FlowLayoutPanel(); this.groupBoxAnticipatedRepaymentPenalties = new System.Windows.Forms.GroupBox(); this.tableLayoutPanel7 = new System.Windows.Forms.TableLayoutPanel(); this.lblEarlyPartialRepaimentBase = new System.Windows.Forms.Label(); this.lblEarlyTotalRepaimentBase = new System.Windows.Forms.Label(); this.lblLoanAnticipatedPartialFeesMinMax = new System.Windows.Forms.Label(); this.lbATR = new System.Windows.Forms.Label(); this.tbLoanAnticipatedPartialFees = new System.Windows.Forms.TextBox(); this.textBoxLoanAnticipatedTotalFees = new System.Windows.Forms.TextBox(); this.lbAPR = new System.Windows.Forms.Label(); this.labelLoanAnticipatedTotalFeesMinMax = new System.Windows.Forms.Label(); this.groupBoxLoanLateFees = new System.Windows.Forms.GroupBox(); this.tableLayoutPanel8 = new System.Windows.Forms.TableLayoutPanel(); this.labelLoanLateFeesOnOverduePrincipalMinMax = new System.Windows.Forms.Label(); this.labelLoanLateFeesOnAmountMinMax = new System.Windows.Forms.Label(); this.labelLoanLateFeesOnAmount = new System.Windows.Forms.Label(); this.textBoxLoanLateFeesOnAmount = new System.Windows.Forms.TextBox(); this.textBoxLoanLateFeesOnOverduePrincipal = new System.Windows.Forms.TextBox(); this.labelLoanLateFeesOnOverduePrincipal = new System.Windows.Forms.Label(); this.labelLoanLateFeesOnOLB = new System.Windows.Forms.Label(); this.textBoxLoanLateFeesOnOLB = new System.Windows.Forms.TextBox(); this.labelLoanLateFeesOnOLBMinMax = new System.Windows.Forms.Label(); this.labelLoanLateFeesOnOverdueInterest = new System.Windows.Forms.Label(); this.textBoxLoanLateFeesOnOverdueInterest = new System.Windows.Forms.TextBox(); this.labelLoanLateFeesOnOverdueInterestMinMax = new System.Windows.Forms.Label(); this.groupBoxEntryFees = new System.Windows.Forms.GroupBox(); this.lvEntryFees = new OpenCBS.GUI.UserControl.ListViewEx(); this.colName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colValue = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colType = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colAmount = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.lblMinMaxEntryFees = new System.Windows.Forms.Label(); this.numEntryFees = new System.Windows.Forms.NumericUpDown(); this.btnUpdateSettings = new System.Windows.Forms.Button(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.tableLayoutPanel10 = new System.Windows.Forms.TableLayoutPanel(); this.lbCompulsorySavingsAmount = new System.Windows.Forms.Label(); this.lbCompulsorySavings = new System.Windows.Forms.Label(); this.numCompulsoryAmountPercent = new System.Windows.Forms.NumericUpDown(); this.cmbCompulsorySaving = new System.Windows.Forms.ComboBox(); this.linkCompulsorySavings = new System.Windows.Forms.LinkLabel(); this.lbCompAmountPercentMinMax = new System.Windows.Forms.Label(); this.labelComments = new System.Windows.Forms.Label(); this.textBoxComments = new System.Windows.Forms.TextBox(); this.tableLayoutPanel9 = new System.Windows.Forms.TableLayoutPanel(); this.labelLocAmount = new System.Windows.Forms.Label(); this.tbLocAmount = new System.Windows.Forms.TextBox(); this.labelLocMin = new System.Windows.Forms.Label(); this.labelLocMax = new System.Windows.Forms.Label(); this.labelLocMinAmount = new System.Windows.Forms.Label(); this.labelLocMaxAmount = new System.Windows.Forms.Label(); this.lblInsuranceMin = new System.Windows.Forms.Label(); this.lblInsuranceMax = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.tbInsurance = new System.Windows.Forms.TextBox(); this.lblCreditInsurance = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label7 = new System.Windows.Forms.Label(); this.lblLocCurrencyMin = new System.Windows.Forms.Label(); this.lblLocCurrencyMax = new System.Windows.Forms.Label(); this.tabPageCreditCommitee = new System.Windows.Forms.TabPage(); this.flowLayoutPanel7 = new System.Windows.Forms.FlowLayoutPanel(); this.btnPrintCreditCommittee = new OpenCBS.GUI.UserControl.PrintButton(); this.buttonCreditCommiteeSaveDecision = new System.Windows.Forms.Button(); this.tableLayoutPanel11 = new System.Windows.Forms.TableLayoutPanel(); this.lblCCStatus = new System.Windows.Forms.Label(); this.pnlCCStatus = new System.Windows.Forms.Panel(); this.flowLayoutPanel6 = new System.Windows.Forms.FlowLayoutPanel(); this.cmbContractStatus = new System.Windows.Forms.ComboBox(); this.labelCreditCommiteeDate = new System.Windows.Forms.Label(); this.dateTimePickerCreditCommitee = new System.Windows.Forms.DateTimePicker(); this.labelCreditCommiteeComment = new System.Windows.Forms.Label(); this.labelCreditCommiteeCode = new System.Windows.Forms.Label(); this.textBoxCreditCommiteeComment = new System.Windows.Forms.TextBox(); this.tBCreditCommitteeCode = new System.Windows.Forms.TextBox(); this.tabPageLoanRepayment = new System.Windows.Forms.TabPage(); this.tabControlRepayments = new System.Windows.Forms.TabControl(); this.tabPageRepayments = new System.Windows.Forms.TabPage(); this.lvLoansRepayments = new OpenCBS.GUI.UserControl.ListViewEx(); this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader8 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader9 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderLateDays = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderComment = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.flowLayoutPanel8 = new System.Windows.Forms.FlowLayoutPanel(); this.buttonLoanRepaymentRepay = new System.Windows.Forms.Button(); this.buttonLoanReschedule = new System.Windows.Forms.Button(); this.buttonAddTranche = new System.Windows.Forms.Button(); this.btnWriteOff = new System.Windows.Forms.Button(); this.btnPrintLoanRepayment = new OpenCBS.GUI.UserControl.PrintButton(); this.tabPageEvents = new System.Windows.Forms.TabPage(); this.lvEvents = new OpenCBS.GUI.UserControl.ListViewEx(); this.columnHeader11 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.EntryDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader12 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader13 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader14 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colCommissions = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colPenalties = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colOverduePrincipal = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colOverdueDays = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader16 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader18 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.ExportedDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colId = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colNumber = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader30 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colPaymentMethod = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colCancelDate1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colIsDeleted = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.btnPrintLoanEvents = new OpenCBS.GUI.UserControl.PrintButton(); this.btnWaiveFee = new System.Windows.Forms.Button(); this.btnDeleteEvent = new System.Windows.Forms.Button(); this.imageListTab = new System.Windows.Forms.ImageList(this.components); this.richTextBoxStatus = new System.Windows.Forms.RichTextBox(); this.lblLoanStatus = new System.Windows.Forms.Label(); this.tabPageLoanGuarantees = new System.Windows.Forms.TabPage(); this.tabPageSavingDetails = new System.Windows.Forms.TabPage(); this.tabControlSavingsDetails = new System.Windows.Forms.TabControl(); this.tabPageSavingsAmountsAndFees = new System.Windows.Forms.TabPage(); this.flowLayoutPanel10 = new System.Windows.Forms.FlowLayoutPanel(); this.groupBoxSavingBalance = new System.Windows.Forms.GroupBox(); this.tableLayoutPanel12 = new System.Windows.Forms.TableLayoutPanel(); this.lbBalanceMaxValue = new System.Windows.Forms.Label(); this.lbBalanceMin = new System.Windows.Forms.Label(); this.lbBalanceMinValue = new System.Windows.Forms.Label(); this.lbBalanceMax = new System.Windows.Forms.Label(); this.groupBoxSavingDeposit = new System.Windows.Forms.GroupBox(); this.tableLayoutPanel13 = new System.Windows.Forms.TableLayoutPanel(); this.lbDepositMaxValue = new System.Windows.Forms.Label(); this.lbDepositMin = new System.Windows.Forms.Label(); this.lbDepositMinValue = new System.Windows.Forms.Label(); this.lbDepositmax = new System.Windows.Forms.Label(); this.groupBoxSavingWithdraw = new System.Windows.Forms.GroupBox(); this.tableLayoutPanel14 = new System.Windows.Forms.TableLayoutPanel(); this.lbWithdrawMaxValue = new System.Windows.Forms.Label(); this.lbWithdrawMin = new System.Windows.Forms.Label(); this.lbWithdrawMinValue = new System.Windows.Forms.Label(); this.lbWithdrawMax = new System.Windows.Forms.Label(); this.groupBoxSavingTransfer = new System.Windows.Forms.GroupBox(); this.tableLayoutPanel15 = new System.Windows.Forms.TableLayoutPanel(); this.labelSavingTransferMaxValue = new System.Windows.Forms.Label(); this.labelSavingTransferMin = new System.Windows.Forms.Label(); this.labelSavingTransferMinValue = new System.Windows.Forms.Label(); this.labelSavingTransferMax = new System.Windows.Forms.Label(); this.gbInterest = new System.Windows.Forms.GroupBox(); this.tableLayoutPanel16 = new System.Windows.Forms.TableLayoutPanel(); this.lbInterestBasedOnValue = new System.Windows.Forms.Label(); this.lbInterestAccrual = new System.Windows.Forms.Label(); this.lbInterestPostingValue = new System.Windows.Forms.Label(); this.lbInterestBasedOn = new System.Windows.Forms.Label(); this.lbInterestAccrualValue = new System.Windows.Forms.Label(); this.lbInterestPosting = new System.Windows.Forms.Label(); this.gbDepositInterest = new System.Windows.Forms.GroupBox(); this.tableLayoutPanel17 = new System.Windows.Forms.TableLayoutPanel(); this.lbPeriodicityValue = new System.Windows.Forms.Label(); this.lbAccrualDeposit = new System.Windows.Forms.Label(); this.lbAccrualDepositValue = new System.Windows.Forms.Label(); this.lbPeriodicity = new System.Windows.Forms.Label(); this.tlpSBDetails = new System.Windows.Forms.TableLayoutPanel(); this.lblIbtFeeMinMax = new System.Windows.Forms.Label(); this.lbTransferFees = new System.Windows.Forms.Label(); this.nudIbtFee = new System.Windows.Forms.NumericUpDown(); this.lbDepositFees = new System.Windows.Forms.Label(); this.nudTransferFees = new System.Windows.Forms.NumericUpDown(); this.lbReopenFeesMinMax = new System.Windows.Forms.Label(); this.lbTransferFeesMinMax = new System.Windows.Forms.Label(); this.nudReopenFees = new System.Windows.Forms.NumericUpDown(); this.lbReopenFees = new System.Windows.Forms.Label(); this.lbDepositFeesMinMax = new System.Windows.Forms.Label(); this.lbAgioFeesMinMax = new System.Windows.Forms.Label(); this.lbChequeDepositFees = new System.Windows.Forms.Label(); this.nudAgioFees = new System.Windows.Forms.NumericUpDown(); this.nudChequeDepositFees = new System.Windows.Forms.NumericUpDown(); this.lbAgioFees = new System.Windows.Forms.Label(); this.lbOverdraftFeesMinMax = new System.Windows.Forms.Label(); this.lblChequeDepositFeesMinMax = new System.Windows.Forms.Label(); this.lbCloseFees = new System.Windows.Forms.Label(); this.nudOverdraftFees = new System.Windows.Forms.NumericUpDown(); this.nudCloseFees = new System.Windows.Forms.NumericUpDown(); this.lbOverdraftFees = new System.Windows.Forms.Label(); this.lbCloseFeesMinMax = new System.Windows.Forms.Label(); this.lbManagementFeesMinMax = new System.Windows.Forms.Label(); this.lbManagementFees = new System.Windows.Forms.Label(); this.nudManagementFees = new System.Windows.Forms.NumericUpDown(); this.nudDepositFees = new System.Windows.Forms.NumericUpDown(); this.lblInterBranchTransfer = new System.Windows.Forms.Label(); this.tabPageSavingsEvents = new System.Windows.Forms.TabPage(); this.lvSavingEvent = new System.Windows.Forms.ListView(); this.columnHeader21 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader26 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader22 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader23 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader27 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader15 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader28 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader29 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader24 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colCancelDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.tabPageLoans = new System.Windows.Forms.TabPage(); this.olvLoans = new BrightIdeasSoftware.ObjectListView(); this.olvColumnContractCode = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn())); this.olvColumnStatus = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn())); this.olvColumnAmount = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn())); this.olvColumnOLB = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn())); this.olvColumnCreationDate = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn())); this.olvColumnStratDate = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn())); this.olvColumnCloseDate = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn())); this.tabPageSavingsCustomizableFields = new System.Windows.Forms.TabPage(); this.tpTermDeposit = new System.Windows.Forms.TabPage(); this.tlpTermDeposit = new System.Windows.Forms.TableLayoutPanel(); this.lblNumberOfPeriods = new System.Windows.Forms.Label(); this.nudNumberOfPeriods = new System.Windows.Forms.NumericUpDown(); this.lblLimitOfTermDepositPeriod = new System.Windows.Forms.Label(); this.tbTargetAccount2 = new System.Windows.Forms.TextBox(); this.cmbRollover2 = new System.Windows.Forms.ComboBox(); this.lbRollover2 = new System.Windows.Forms.Label(); this.btSearchContract2 = new System.Windows.Forms.Button(); this.lblTermTransferToAccount = new System.Windows.Forms.Label(); this.flowLayoutPanel9 = new System.Windows.Forms.FlowLayoutPanel(); this.btSavingsUpdate = new System.Windows.Forms.Button(); this.buttonSaveSaving = new System.Windows.Forms.Button(); this.buttonFirstDeposit = new System.Windows.Forms.Button(); this.buttonCloseSaving = new System.Windows.Forms.Button(); this.buttonReopenSaving = new System.Windows.Forms.Button(); this.pnlSavingsButtons = new System.Windows.Forms.FlowLayoutPanel(); this.buttonSavingsOperations = new System.Windows.Forms.Button(); this.btCancelLastSavingEvent = new System.Windows.Forms.Button(); this.btnPrintSavings = new OpenCBS.GUI.UserControl.PrintButton(); this.groupBoxSaving = new System.Windows.Forms.GroupBox(); this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel(); this.lbSavingAvBalanceValue = new System.Windows.Forms.Label(); this.lBSavingAvBalance = new System.Windows.Forms.Label(); this.lbEntryFeesMinMax = new System.Windows.Forms.Label(); this.lbInitialAmountMinMax = new System.Windows.Forms.Label(); this.lbEntryFees = new System.Windows.Forms.Label(); this.labelInitialAmount = new System.Windows.Forms.Label(); this.nudEntryFees = new System.Windows.Forms.NumericUpDown(); this.nudDownInitialAmount = new System.Windows.Forms.NumericUpDown(); this.label1 = new System.Windows.Forms.Label(); this.label9 = new System.Windows.Forms.Label(); this.lbSavingBalanceValue = new System.Windows.Forms.Label(); this.lBSavingBalance = new System.Windows.Forms.Label(); this.tBSavingCode = new System.Windows.Forms.TextBox(); this.cmbSavingsOfficer = new System.Windows.Forms.ComboBox(); this.labelInterestRate = new System.Windows.Forms.Label(); this.nudDownInterestRate = new System.Windows.Forms.NumericUpDown(); this.lbWithdrawFees = new System.Windows.Forms.Label(); this.nudWithdrawFees = new System.Windows.Forms.NumericUpDown(); this.lbInterestRateMinMax = new System.Windows.Forms.Label(); this.lbWithdrawFeesMinMax = new System.Windows.Forms.Label(); this.tabPageContracts = new System.Windows.Forms.TabPage(); this.menuBtnAddSavingOperation = new System.Windows.Forms.ContextMenuStrip(this.components); this.savingDepositToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.savingWithdrawToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.savingTransferToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.specialOperationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.olvColumnSACExportedBalance = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn())); this.olvColumnLACExportedBalance = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn())); this.panel2 = new System.Windows.Forms.Panel(); this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel(); this.labelTitleRepayment = new System.Windows.Forms.Label(); this.buttonPrintSchedule = new System.Windows.Forms.Button(); this.buttonReschedule = new System.Windows.Forms.Button(); this.buttonRepay = new System.Windows.Forms.Button(); this.columnHeaderDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderType = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderPrincipal = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderInterest = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeaderFees = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader10 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel(); this.buttonLoanDisbursement = new System.Windows.Forms.Button(); this.labelExchangeRate = new System.Windows.Forms.Label(); this.contextMenuStripPackage = new System.Windows.Forms.ContextMenuStrip(this.components); this.toolStripSeparatorCopy = new System.Windows.Forms.ToolStripSeparator(); this.toolStripMenuItemEditComment = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItemCancelPending = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItemConfirmPending = new System.Windows.Forms.ToolStripMenuItem(); this.menuCollateralProducts = new System.Windows.Forms.ContextMenuStrip(this.components); this.menuPendingSavingEvents = new System.Windows.Forms.ContextMenuStrip(this.components); this.menuItemConfirmPendingSavingEvent = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemCancelPendingSavingEvent = new System.Windows.Forms.ToolStripMenuItem(); this.splitContainer10.Panel1.SuspendLayout(); this.splitContainer10.Panel2.SuspendLayout(); this.splitContainer10.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownProjectJobs)).BeginInit(); this.gBProjectFinancialPlan.SuspendLayout(); this.splitContainer11.Panel1.SuspendLayout(); this.splitContainer11.Panel2.SuspendLayout(); this.splitContainer11.SuspendLayout(); this.gBProjectFollowUp.SuspendLayout(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.panel3.SuspendLayout(); this.pnlGuarantorButtons.SuspendLayout(); this.pnlCollateralButtons.SuspendLayout(); this.splitContainerContracts.Panel1.SuspendLayout(); this.splitContainerContracts.Panel2.SuspendLayout(); this.splitContainerContracts.SuspendLayout(); this.splitContainer3.Panel2.SuspendLayout(); this.splitContainer3.SuspendLayout(); this.splitContainer4.SuspendLayout(); this.splitContainer6.SuspendLayout(); this.tabControlPerson.SuspendLayout(); this.tabPageProject.SuspendLayout(); this.tableLayoutPanel1.SuspendLayout(); this.groupBoxProjectDetails.SuspendLayout(); this.panel1.SuspendLayout(); this.tabControlProject.SuspendLayout(); this.tabPageProjectLoans.SuspendLayout(); this.pnlLoans.SuspendLayout(); this.flowLayoutPanel1.SuspendLayout(); this.tabPageProjectAnalyses.SuspendLayout(); this.tabPageCorporate.SuspendLayout(); this.tabPageFollowUp.SuspendLayout(); this.tabPageLoansDetails.SuspendLayout(); this.tclLoanDetails.SuspendLayout(); this.tabPageInstallments.SuspendLayout(); this.flowLayoutPanel2.SuspendLayout(); this.gbxLoanDetails.SuspendLayout(); this.tableLayoutPanel4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownLoanGracePeriod)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudLoanNbOfInstallments)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudLoanAmount)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudInterestRate)).BeginInit(); this.tabPageAdvancedSettings.SuspendLayout(); this.tableLayoutPanel6.SuspendLayout(); this.flowLayoutPanel5.SuspendLayout(); this.groupBoxAnticipatedRepaymentPenalties.SuspendLayout(); this.tableLayoutPanel7.SuspendLayout(); this.groupBoxLoanLateFees.SuspendLayout(); this.tableLayoutPanel8.SuspendLayout(); this.groupBoxEntryFees.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.numEntryFees)).BeginInit(); this.groupBox2.SuspendLayout(); this.tableLayoutPanel10.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.numCompulsoryAmountPercent)).BeginInit(); this.tableLayoutPanel9.SuspendLayout(); this.tabPageCreditCommitee.SuspendLayout(); this.flowLayoutPanel7.SuspendLayout(); this.tableLayoutPanel11.SuspendLayout(); this.pnlCCStatus.SuspendLayout(); this.flowLayoutPanel6.SuspendLayout(); this.tabPageLoanRepayment.SuspendLayout(); this.tabControlRepayments.SuspendLayout(); this.tabPageRepayments.SuspendLayout(); this.flowLayoutPanel8.SuspendLayout(); this.tabPageEvents.SuspendLayout(); this.groupBox1.SuspendLayout(); this.tabPageLoanGuarantees.SuspendLayout(); this.tabPageSavingDetails.SuspendLayout(); this.tabControlSavingsDetails.SuspendLayout(); this.tabPageSavingsAmountsAndFees.SuspendLayout(); this.flowLayoutPanel10.SuspendLayout(); this.groupBoxSavingBalance.SuspendLayout(); this.tableLayoutPanel12.SuspendLayout(); this.groupBoxSavingDeposit.SuspendLayout(); this.tableLayoutPanel13.SuspendLayout(); this.groupBoxSavingWithdraw.SuspendLayout(); this.tableLayoutPanel14.SuspendLayout(); this.groupBoxSavingTransfer.SuspendLayout(); this.tableLayoutPanel15.SuspendLayout(); this.gbInterest.SuspendLayout(); this.tableLayoutPanel16.SuspendLayout(); this.gbDepositInterest.SuspendLayout(); this.tableLayoutPanel17.SuspendLayout(); this.tlpSBDetails.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudIbtFee)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudTransferFees)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudReopenFees)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudAgioFees)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudChequeDepositFees)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudOverdraftFees)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudCloseFees)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudManagementFees)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudDepositFees)).BeginInit(); this.tabPageSavingsEvents.SuspendLayout(); this.tabPageLoans.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.olvLoans)).BeginInit(); this.tpTermDeposit.SuspendLayout(); this.tlpTermDeposit.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudNumberOfPeriods)).BeginInit(); this.flowLayoutPanel9.SuspendLayout(); this.pnlSavingsButtons.SuspendLayout(); this.groupBoxSaving.SuspendLayout(); this.tableLayoutPanel5.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudEntryFees)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudDownInitialAmount)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudDownInterestRate)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudWithdrawFees)).BeginInit(); this.tabPageContracts.SuspendLayout(); this.menuBtnAddSavingOperation.SuspendLayout(); this.panel2.SuspendLayout(); this.menuPendingSavingEvents.SuspendLayout(); this.SuspendLayout(); // // splitContainer10 // resources.ApplyResources(this.splitContainer10, "splitContainer10"); this.splitContainer10.FixedPanel = System.Windows.Forms.FixedPanel.Panel1; this.splitContainer10.Name = "splitContainer10"; // // splitContainer10.Panel1 // this.splitContainer10.Panel1.Controls.Add(this.numericUpDownProjectJobs); this.splitContainer10.Panel1.Controls.Add(this.gBProjectFinancialPlan); this.splitContainer10.Panel1.Controls.Add(this.lProjectNbOfNewJobs); this.splitContainer10.Panel1.Controls.Add(this.tBProjectCA); this.splitContainer10.Panel1.Controls.Add(this.lProjectCA); this.splitContainer10.Panel1.Controls.Add(this.lProjectCorporateName); this.splitContainer10.Panel1.Controls.Add(this.cBProjectAffiliation); this.splitContainer10.Panel1.Controls.Add(this.cBProjectFiscalStatus); this.splitContainer10.Panel1.Controls.Add(this.tBProjectCorporateName); this.splitContainer10.Panel1.Controls.Add(this.cBProjectJuridicStatus); this.splitContainer10.Panel1.Controls.Add(this.lProjectCorporateSIRET); this.splitContainer10.Panel1.Controls.Add(this.lProjectJuridicStatus); this.splitContainer10.Panel1.Controls.Add(this.tBProjectCorporateSIRET); this.splitContainer10.Panel1.Controls.Add(this.lProjectAffiliation); this.splitContainer10.Panel1.Controls.Add(this.lProjectFiscalStatus); // // splitContainer10.Panel2 // this.splitContainer10.Panel2.Controls.Add(this.gBProjectAddress); // // numericUpDownProjectJobs // resources.ApplyResources(this.numericUpDownProjectJobs, "numericUpDownProjectJobs"); this.numericUpDownProjectJobs.Name = "numericUpDownProjectJobs"; // // gBProjectFinancialPlan // this.gBProjectFinancialPlan.Controls.Add(this.lProjectFinancialPlanType); this.gBProjectFinancialPlan.Controls.Add(this.lProjectFinancialPlanAmount); this.gBProjectFinancialPlan.Controls.Add(this.tBProjectFinancialPlanTotal); this.gBProjectFinancialPlan.Controls.Add(this.tBProjectFinancialPlanAmount); this.gBProjectFinancialPlan.Controls.Add(this.cBProjectFinancialPlanType); this.gBProjectFinancialPlan.Controls.Add(this.lProjectFinancialPlanTotalAmount); resources.ApplyResources(this.gBProjectFinancialPlan, "gBProjectFinancialPlan"); this.gBProjectFinancialPlan.Name = "gBProjectFinancialPlan"; this.gBProjectFinancialPlan.TabStop = false; // // lProjectFinancialPlanType // resources.ApplyResources(this.lProjectFinancialPlanType, "lProjectFinancialPlanType"); this.lProjectFinancialPlanType.Name = "lProjectFinancialPlanType"; // // lProjectFinancialPlanAmount // resources.ApplyResources(this.lProjectFinancialPlanAmount, "lProjectFinancialPlanAmount"); this.lProjectFinancialPlanAmount.Name = "lProjectFinancialPlanAmount"; // // tBProjectFinancialPlanTotal // this.tBProjectFinancialPlanTotal.BackColor = System.Drawing.SystemColors.Window; resources.ApplyResources(this.tBProjectFinancialPlanTotal, "tBProjectFinancialPlanTotal"); this.tBProjectFinancialPlanTotal.Name = "tBProjectFinancialPlanTotal"; // // tBProjectFinancialPlanAmount // this.tBProjectFinancialPlanAmount.BackColor = System.Drawing.SystemColors.Window; resources.ApplyResources(this.tBProjectFinancialPlanAmount, "tBProjectFinancialPlanAmount"); this.tBProjectFinancialPlanAmount.Name = "tBProjectFinancialPlanAmount"; // // cBProjectFinancialPlanType // this.cBProjectFinancialPlanType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cBProjectFinancialPlanType.FormattingEnabled = true; resources.ApplyResources(this.cBProjectFinancialPlanType, "cBProjectFinancialPlanType"); this.cBProjectFinancialPlanType.Name = "cBProjectFinancialPlanType"; // // lProjectFinancialPlanTotalAmount // resources.ApplyResources(this.lProjectFinancialPlanTotalAmount, "lProjectFinancialPlanTotalAmount"); this.lProjectFinancialPlanTotalAmount.Name = "lProjectFinancialPlanTotalAmount"; // // lProjectNbOfNewJobs // resources.ApplyResources(this.lProjectNbOfNewJobs, "lProjectNbOfNewJobs"); this.lProjectNbOfNewJobs.Name = "lProjectNbOfNewJobs"; // // tBProjectCA // this.tBProjectCA.BackColor = System.Drawing.SystemColors.Window; resources.ApplyResources(this.tBProjectCA, "tBProjectCA"); this.tBProjectCA.Name = "tBProjectCA"; // // lProjectCA // resources.ApplyResources(this.lProjectCA, "lProjectCA"); this.lProjectCA.Name = "lProjectCA"; // // lProjectCorporateName // resources.ApplyResources(this.lProjectCorporateName, "lProjectCorporateName"); this.lProjectCorporateName.Name = "lProjectCorporateName"; // // cBProjectAffiliation // this.cBProjectAffiliation.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cBProjectAffiliation.FormattingEnabled = true; resources.ApplyResources(this.cBProjectAffiliation, "cBProjectAffiliation"); this.cBProjectAffiliation.Name = "cBProjectAffiliation"; // // cBProjectFiscalStatus // this.cBProjectFiscalStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cBProjectFiscalStatus.FormattingEnabled = true; resources.ApplyResources(this.cBProjectFiscalStatus, "cBProjectFiscalStatus"); this.cBProjectFiscalStatus.Name = "cBProjectFiscalStatus"; // // tBProjectCorporateName // this.tBProjectCorporateName.BackColor = System.Drawing.SystemColors.Window; resources.ApplyResources(this.tBProjectCorporateName, "tBProjectCorporateName"); this.tBProjectCorporateName.Name = "tBProjectCorporateName"; // // cBProjectJuridicStatus // this.cBProjectJuridicStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cBProjectJuridicStatus.FormattingEnabled = true; resources.ApplyResources(this.cBProjectJuridicStatus, "cBProjectJuridicStatus"); this.cBProjectJuridicStatus.Name = "cBProjectJuridicStatus"; // // lProjectCorporateSIRET // resources.ApplyResources(this.lProjectCorporateSIRET, "lProjectCorporateSIRET"); this.lProjectCorporateSIRET.Name = "lProjectCorporateSIRET"; // // lProjectJuridicStatus // resources.ApplyResources(this.lProjectJuridicStatus, "lProjectJuridicStatus"); this.lProjectJuridicStatus.Name = "lProjectJuridicStatus"; // // tBProjectCorporateSIRET // this.tBProjectCorporateSIRET.BackColor = System.Drawing.SystemColors.Window; resources.ApplyResources(this.tBProjectCorporateSIRET, "tBProjectCorporateSIRET"); this.tBProjectCorporateSIRET.Name = "tBProjectCorporateSIRET"; // // lProjectAffiliation // resources.ApplyResources(this.lProjectAffiliation, "lProjectAffiliation"); this.lProjectAffiliation.Name = "lProjectAffiliation"; // // lProjectFiscalStatus // resources.ApplyResources(this.lProjectFiscalStatus, "lProjectFiscalStatus"); this.lProjectFiscalStatus.Name = "lProjectFiscalStatus"; // // gBProjectAddress // resources.ApplyResources(this.gBProjectAddress, "gBProjectAddress"); this.gBProjectAddress.Name = "gBProjectAddress"; this.gBProjectAddress.TabStop = false; // // splitContainer11 // resources.ApplyResources(this.splitContainer11, "splitContainer11"); this.splitContainer11.FixedPanel = System.Windows.Forms.FixedPanel.Panel2; this.splitContainer11.Name = "splitContainer11"; // // splitContainer11.Panel1 // this.splitContainer11.Panel1.Controls.Add(this.listViewProjectFollowUp); // // splitContainer11.Panel2 // this.splitContainer11.Panel2.Controls.Add(this.gBProjectFollowUp); // // listViewProjectFollowUp // this.listViewProjectFollowUp.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeaderProjectYear, this.columnHeaderProjectJobs1, this.columnHeaderProjectJobs2, this.columnHeaderProjectCA, this.columnHeaderprojectPersonalSituation, this.columnHeaderProjectActivity, this.columnHeaderProjectComment}); resources.ApplyResources(this.listViewProjectFollowUp, "listViewProjectFollowUp"); this.listViewProjectFollowUp.FullRowSelect = true; this.listViewProjectFollowUp.GridLines = true; this.listViewProjectFollowUp.Name = "listViewProjectFollowUp"; this.listViewProjectFollowUp.UseCompatibleStateImageBehavior = false; this.listViewProjectFollowUp.View = System.Windows.Forms.View.Details; this.listViewProjectFollowUp.DoubleClick += new System.EventHandler(this.listViewProjectFollowUp_DoubleClick); // // columnHeaderProjectYear // resources.ApplyResources(this.columnHeaderProjectYear, "columnHeaderProjectYear"); // // columnHeaderProjectJobs1 // resources.ApplyResources(this.columnHeaderProjectJobs1, "columnHeaderProjectJobs1"); // // columnHeaderProjectJobs2 // resources.ApplyResources(this.columnHeaderProjectJobs2, "columnHeaderProjectJobs2"); // // columnHeaderProjectCA // resources.ApplyResources(this.columnHeaderProjectCA, "columnHeaderProjectCA"); // // columnHeaderprojectPersonalSituation // resources.ApplyResources(this.columnHeaderprojectPersonalSituation, "columnHeaderprojectPersonalSituation"); // // columnHeaderProjectActivity // resources.ApplyResources(this.columnHeaderProjectActivity, "columnHeaderProjectActivity"); // // columnHeaderProjectComment // resources.ApplyResources(this.columnHeaderProjectComment, "columnHeaderProjectComment"); // // gBProjectFollowUp // this.gBProjectFollowUp.Controls.Add(this.buttonProjectAddFollowUp); resources.ApplyResources(this.gBProjectFollowUp, "gBProjectFollowUp"); this.gBProjectFollowUp.Name = "gBProjectFollowUp"; this.gBProjectFollowUp.TabStop = false; // // buttonProjectAddFollowUp // resources.ApplyResources(this.buttonProjectAddFollowUp, "buttonProjectAddFollowUp"); this.buttonProjectAddFollowUp.Name = "buttonProjectAddFollowUp"; this.buttonProjectAddFollowUp.Click += new System.EventHandler(this.buttonProjectAddFollowUp_Click); // // splitContainer1 // resources.ApplyResources(this.splitContainer1, "splitContainer1"); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.listViewGuarantors); this.splitContainer1.Panel1.Controls.Add(this.panel3); this.splitContainer1.Panel1.Controls.Add(this.lblGuarantorsList); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.listViewCollaterals); this.splitContainer1.Panel2.Controls.Add(this.pnlCollateralButtons); this.splitContainer1.Panel2.Controls.Add(this.lblCollaterals); // // listViewGuarantors // this.listViewGuarantors.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeaderName, this.columnHeader17, this.columnHeaderPercentage, this.columnHeaderDesc}); resources.ApplyResources(this.listViewGuarantors, "listViewGuarantors"); this.listViewGuarantors.FullRowSelect = true; this.listViewGuarantors.GridLines = true; this.listViewGuarantors.MultiSelect = false; this.listViewGuarantors.Name = "listViewGuarantors"; this.listViewGuarantors.UseCompatibleStateImageBehavior = false; this.listViewGuarantors.View = System.Windows.Forms.View.Details; this.listViewGuarantors.DrawColumnHeader += new System.Windows.Forms.DrawListViewColumnHeaderEventHandler(this.listViewGuarantors_DrawColumnHeader); this.listViewGuarantors.DrawSubItem += new System.Windows.Forms.DrawListViewSubItemEventHandler(this.listViewGuarantors_DrawSubItem); // // columnHeaderName // resources.ApplyResources(this.columnHeaderName, "columnHeaderName"); // // columnHeader17 // resources.ApplyResources(this.columnHeader17, "columnHeader17"); // // columnHeaderPercentage // resources.ApplyResources(this.columnHeaderPercentage, "columnHeaderPercentage"); // // columnHeaderDesc // resources.ApplyResources(this.columnHeaderDesc, "columnHeaderDesc"); // // panel3 // resources.ApplyResources(this.panel3, "panel3"); this.panel3.Controls.Add(this.btnPrintGuarantors); this.panel3.Controls.Add(this.pnlGuarantorButtons); this.panel3.Name = "panel3"; // // btnPrintGuarantors // resources.ApplyResources(this.btnPrintGuarantors, "btnPrintGuarantors"); this.btnPrintGuarantors.Name = "btnPrintGuarantors"; this.btnPrintGuarantors.ReportInitializer = null; this.btnPrintGuarantors.UseVisualStyleBackColor = true; // // pnlGuarantorButtons // resources.ApplyResources(this.pnlGuarantorButtons, "pnlGuarantorButtons"); this.pnlGuarantorButtons.Controls.Add(this.buttonSelectAGarantors); this.pnlGuarantorButtons.Controls.Add(this.buttonModifyAGarantors); this.pnlGuarantorButtons.Controls.Add(this.buttonViewAGarantors); this.pnlGuarantorButtons.Controls.Add(this.buttonDelete); this.pnlGuarantorButtons.Controls.Add(this.lblCreditCurrency); this.pnlGuarantorButtons.Name = "pnlGuarantorButtons"; // // buttonSelectAGarantors // resources.ApplyResources(this.buttonSelectAGarantors, "buttonSelectAGarantors"); this.buttonSelectAGarantors.Name = "buttonSelectAGarantors"; this.buttonSelectAGarantors.Click += new System.EventHandler(this.buttonSelectAGarantors_Click); // // buttonModifyAGarantors // resources.ApplyResources(this.buttonModifyAGarantors, "buttonModifyAGarantors"); this.buttonModifyAGarantors.Name = "buttonModifyAGarantors"; this.buttonModifyAGarantors.Click += new System.EventHandler(this.buttonModifyAGarantors_Click); // // buttonViewAGarantors // resources.ApplyResources(this.buttonViewAGarantors, "buttonViewAGarantors"); this.buttonViewAGarantors.Name = "buttonViewAGarantors"; this.buttonViewAGarantors.Click += new System.EventHandler(this.buttonViewAGarantors_Click); // // buttonDelete // resources.ApplyResources(this.buttonDelete, "buttonDelete"); this.buttonDelete.Name = "buttonDelete"; this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click); // // lblCreditCurrency // resources.ApplyResources(this.lblCreditCurrency, "lblCreditCurrency"); this.lblCreditCurrency.Name = "lblCreditCurrency"; // // lblGuarantorsList // this.lblGuarantorsList.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(81)))), ((int)(((byte)(152))))); resources.ApplyResources(this.lblGuarantorsList, "lblGuarantorsList"); this.lblGuarantorsList.ForeColor = System.Drawing.Color.White; this.lblGuarantorsList.Name = "lblGuarantorsList"; // // listViewCollaterals // this.listViewCollaterals.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader19, this.columnHeader20, this.columnHeader25, this.columnHeaderColDesc}); resources.ApplyResources(this.listViewCollaterals, "listViewCollaterals"); this.listViewCollaterals.FullRowSelect = true; this.listViewCollaterals.GridLines = true; this.listViewCollaterals.MultiSelect = false; this.listViewCollaterals.Name = "listViewCollaterals"; this.listViewCollaterals.UseCompatibleStateImageBehavior = false; this.listViewCollaterals.View = System.Windows.Forms.View.Details; // // columnHeader19 // resources.ApplyResources(this.columnHeader19, "columnHeader19"); // // columnHeader20 // resources.ApplyResources(this.columnHeader20, "columnHeader20"); // // columnHeader25 // resources.ApplyResources(this.columnHeader25, "columnHeader25"); // // columnHeaderColDesc // resources.ApplyResources(this.columnHeaderColDesc, "columnHeaderColDesc"); // // pnlCollateralButtons // resources.ApplyResources(this.pnlCollateralButtons, "pnlCollateralButtons"); this.pnlCollateralButtons.Controls.Add(this.buttonAddCollateral); this.pnlCollateralButtons.Controls.Add(this.buttonModifyCollateral); this.pnlCollateralButtons.Controls.Add(this.buttonViewCollateral); this.pnlCollateralButtons.Controls.Add(this.buttonDelCollateral); this.pnlCollateralButtons.Name = "pnlCollateralButtons"; // // buttonAddCollateral // resources.ApplyResources(this.buttonAddCollateral, "buttonAddCollateral"); this.buttonAddCollateral.Name = "buttonAddCollateral"; this.buttonAddCollateral.Click += new System.EventHandler(this.buttonAddCollateral_Click); // // buttonModifyCollateral // resources.ApplyResources(this.buttonModifyCollateral, "buttonModifyCollateral"); this.buttonModifyCollateral.Name = "buttonModifyCollateral"; this.buttonModifyCollateral.Click += new System.EventHandler(this.buttonModifyCollateral_Click); // // buttonViewCollateral // resources.ApplyResources(this.buttonViewCollateral, "buttonViewCollateral"); this.buttonViewCollateral.Name = "buttonViewCollateral"; this.buttonViewCollateral.Click += new System.EventHandler(this.buttonViewCollateral_Click); // // buttonDelCollateral // resources.ApplyResources(this.buttonDelCollateral, "buttonDelCollateral"); this.buttonDelCollateral.Name = "buttonDelCollateral"; this.buttonDelCollateral.Click += new System.EventHandler(this.buttonDelCollateral_Click); // // lblCollaterals // this.lblCollaterals.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(81)))), ((int)(((byte)(152))))); resources.ApplyResources(this.lblCollaterals, "lblCollaterals"); this.lblCollaterals.ForeColor = System.Drawing.Color.White; this.lblCollaterals.Name = "lblCollaterals"; // // splitContainerContracts // resources.ApplyResources(this.splitContainerContracts, "splitContainerContracts"); this.splitContainerContracts.Name = "splitContainerContracts"; // // splitContainerContracts.Panel1 // this.splitContainerContracts.Panel1.Controls.Add(this.panelLoansContracts); this.splitContainerContracts.Panel1.Controls.Add(this.labelLoansContracts); // // splitContainerContracts.Panel2 // this.splitContainerContracts.Panel2.Controls.Add(this.panelSavingsContracts); this.splitContainerContracts.Panel2.Controls.Add(this.labelSavingsContracts); // // panelLoansContracts // resources.ApplyResources(this.panelLoansContracts, "panelLoansContracts"); this.panelLoansContracts.Name = "panelLoansContracts"; // // labelLoansContracts // this.labelLoansContracts.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(81)))), ((int)(((byte)(152))))); resources.ApplyResources(this.labelLoansContracts, "labelLoansContracts"); this.labelLoansContracts.ForeColor = System.Drawing.Color.White; this.labelLoansContracts.Name = "labelLoansContracts"; // // panelSavingsContracts // resources.ApplyResources(this.panelSavingsContracts, "panelSavingsContracts"); this.panelSavingsContracts.Name = "panelSavingsContracts"; // // labelSavingsContracts // this.labelSavingsContracts.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(81)))), ((int)(((byte)(152))))); resources.ApplyResources(this.labelSavingsContracts, "labelSavingsContracts"); this.labelSavingsContracts.ForeColor = System.Drawing.Color.White; this.labelSavingsContracts.Name = "labelSavingsContracts"; // // splitContainer3 // resources.ApplyResources(this.splitContainer3, "splitContainer3"); this.splitContainer3.Name = "splitContainer3"; // // splitContainer3.Panel2 // this.splitContainer3.Panel2.Controls.Add(this.panelUserControl); // // panelUserControl // resources.ApplyResources(this.panelUserControl, "panelUserControl"); this.panelUserControl.Name = "panelUserControl"; // // splitContainer4 // resources.ApplyResources(this.splitContainer4, "splitContainer4"); this.splitContainer4.Name = "splitContainer4"; // // splitContainer6 // resources.ApplyResources(this.splitContainer6, "splitContainer6"); this.splitContainer6.Name = "splitContainer6"; // // tabControlPerson // this.tabControlPerson.Controls.Add(this.tabPageDetails); this.tabControlPerson.Controls.Add(this.tabPageProject); this.tabControlPerson.Controls.Add(this.tabPageLoansDetails); this.tabControlPerson.Controls.Add(this.tabPageAdvancedSettings); this.tabControlPerson.Controls.Add(this.tabPageCreditCommitee); this.tabControlPerson.Controls.Add(this.tabPageLoanRepayment); this.tabControlPerson.Controls.Add(this.tabPageLoanGuarantees); this.tabControlPerson.Controls.Add(this.tabPageSavingDetails); this.tabControlPerson.Controls.Add(this.tabPageContracts); resources.ApplyResources(this.tabControlPerson, "tabControlPerson"); this.tabControlPerson.ImageList = this.imageListTab; this.tabControlPerson.Name = "tabControlPerson"; this.tabControlPerson.SelectedIndex = 0; this.tabControlPerson.SelectedIndexChanged += new System.EventHandler(this.tabControlPerson_SelectedIndexChanged); // // tabPageDetails // resources.ApplyResources(this.tabPageDetails, "tabPageDetails"); this.tabPageDetails.Name = "tabPageDetails"; // // tabPageProject // this.tabPageProject.Controls.Add(this.tableLayoutPanel1); resources.ApplyResources(this.tabPageProject, "tabPageProject"); this.tabPageProject.Name = "tabPageProject"; // // tableLayoutPanel1 // resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1"); this.tableLayoutPanel1.Controls.Add(this.groupBoxProjectDetails, 0, 0); this.tableLayoutPanel1.Controls.Add(this.panel1, 0, 1); this.tableLayoutPanel1.Controls.Add(this.tabControlProject, 0, 2); this.tableLayoutPanel1.Name = "tableLayoutPanel1"; // // groupBoxProjectDetails // this.groupBoxProjectDetails.Controls.Add(this.dateTimePickerProjectBeginDate); this.groupBoxProjectDetails.Controls.Add(this.labelProjectDate); this.groupBoxProjectDetails.Controls.Add(this.buttonProjectSelectPurpose); this.groupBoxProjectDetails.Controls.Add(this.textBoxProjectPurpose); this.groupBoxProjectDetails.Controls.Add(this.labelProjectPurpose); this.groupBoxProjectDetails.Controls.Add(this.labelProjectName); this.groupBoxProjectDetails.Controls.Add(this.textBoxProjectName); this.groupBoxProjectDetails.Controls.Add(this.labelProjectCode); this.groupBoxProjectDetails.Controls.Add(this.textBoxProjectCode); this.groupBoxProjectDetails.Controls.Add(this.labelFirstProjectName); this.groupBoxProjectDetails.Controls.Add(this.textBoxProjectAim); resources.ApplyResources(this.groupBoxProjectDetails, "groupBoxProjectDetails"); this.groupBoxProjectDetails.Name = "groupBoxProjectDetails"; this.groupBoxProjectDetails.TabStop = false; // // dateTimePickerProjectBeginDate // this.dateTimePickerProjectBeginDate.Format = System.Windows.Forms.DateTimePickerFormat.Short; resources.ApplyResources(this.dateTimePickerProjectBeginDate, "dateTimePickerProjectBeginDate"); this.dateTimePickerProjectBeginDate.Name = "dateTimePickerProjectBeginDate"; // // labelProjectDate // resources.ApplyResources(this.labelProjectDate, "labelProjectDate"); this.labelProjectDate.BackColor = System.Drawing.Color.Transparent; this.labelProjectDate.Name = "labelProjectDate"; // // buttonProjectSelectPurpose // resources.ApplyResources(this.buttonProjectSelectPurpose, "buttonProjectSelectPurpose"); this.buttonProjectSelectPurpose.Name = "buttonProjectSelectPurpose"; this.buttonProjectSelectPurpose.Click += new System.EventHandler(this.buttonProjectSelectPurpose_Click); // // textBoxProjectPurpose // this.textBoxProjectPurpose.BackColor = System.Drawing.SystemColors.Control; resources.ApplyResources(this.textBoxProjectPurpose, "textBoxProjectPurpose"); this.textBoxProjectPurpose.Name = "textBoxProjectPurpose"; this.textBoxProjectPurpose.ReadOnly = true; // // labelProjectPurpose // resources.ApplyResources(this.labelProjectPurpose, "labelProjectPurpose"); this.labelProjectPurpose.BackColor = System.Drawing.Color.Transparent; this.labelProjectPurpose.Name = "labelProjectPurpose"; // // labelProjectName // resources.ApplyResources(this.labelProjectName, "labelProjectName"); this.labelProjectName.BackColor = System.Drawing.Color.Transparent; this.labelProjectName.Name = "labelProjectName"; // // textBoxProjectName // this.textBoxProjectName.BackColor = System.Drawing.SystemColors.Window; resources.ApplyResources(this.textBoxProjectName, "textBoxProjectName"); this.textBoxProjectName.Name = "textBoxProjectName"; // // labelProjectCode // resources.ApplyResources(this.labelProjectCode, "labelProjectCode"); this.labelProjectCode.BackColor = System.Drawing.Color.Transparent; this.labelProjectCode.Name = "labelProjectCode"; // // textBoxProjectCode // this.textBoxProjectCode.BackColor = System.Drawing.SystemColors.ControlLight; resources.ApplyResources(this.textBoxProjectCode, "textBoxProjectCode"); this.textBoxProjectCode.Name = "textBoxProjectCode"; this.textBoxProjectCode.ReadOnly = true; // // labelFirstProjectName // resources.ApplyResources(this.labelFirstProjectName, "labelFirstProjectName"); this.labelFirstProjectName.BackColor = System.Drawing.Color.Transparent; this.labelFirstProjectName.Name = "labelFirstProjectName"; // // textBoxProjectAim // this.textBoxProjectAim.BackColor = System.Drawing.SystemColors.Window; resources.ApplyResources(this.textBoxProjectAim, "textBoxProjectAim"); this.textBoxProjectAim.Name = "textBoxProjectAim"; // // panel1 // this.panel1.Controls.Add(this.buttonProjectSave); resources.ApplyResources(this.panel1, "panel1"); this.panel1.Name = "panel1"; // // buttonProjectSave // resources.ApplyResources(this.buttonProjectSave, "buttonProjectSave"); this.buttonProjectSave.Name = "buttonProjectSave"; this.buttonProjectSave.Click += new System.EventHandler(this.buttonSaveProject_Click); // // tabControlProject // this.tabControlProject.Controls.Add(this.tabPageProjectLoans); this.tabControlProject.Controls.Add(this.tabPageProjectAnalyses); this.tabControlProject.Controls.Add(this.tabPageCorporate); this.tabControlProject.Controls.Add(this.tabPageFollowUp); resources.ApplyResources(this.tabControlProject, "tabControlProject"); this.tabControlProject.Name = "tabControlProject"; this.tabControlProject.SelectedIndex = 0; // // tabPageProjectLoans // this.tabPageProjectLoans.Controls.Add(this.pnlLoans); resources.ApplyResources(this.tabPageProjectLoans, "tabPageProjectLoans"); this.tabPageProjectLoans.Name = "tabPageProjectLoans"; // // pnlLoans // this.pnlLoans.Controls.Add(this.lvContracts); this.pnlLoans.Controls.Add(this.flowLayoutPanel1); resources.ApplyResources(this.pnlLoans, "pnlLoans"); this.pnlLoans.Name = "pnlLoans"; // // lvContracts // this.lvContracts.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnProductType, this.columnHeaderId, this.columnHeaderStatus, this.columnHeaderAmount, this.columnHeaderOLB, this.columnHeaderCurrency, this.columnHeaderInterestRate, this.columnHeaderInstallmentType, this.columnHeaderNbOfInstallments, this.columnHeaderCreationDate, this.columnHeaderStartDate, this.columnHeaderCloseDate}); resources.ApplyResources(this.lvContracts, "lvContracts"); this.lvContracts.FullRowSelect = true; this.lvContracts.GridLines = true; this.lvContracts.MultiSelect = false; this.lvContracts.Name = "lvContracts"; this.lvContracts.UseCompatibleStateImageBehavior = false; this.lvContracts.View = System.Windows.Forms.View.Details; this.lvContracts.SelectedIndexChanged += new System.EventHandler(this.lvContracts_SelectedIndexChanged); this.lvContracts.DoubleClick += new System.EventHandler(this.listViewContracts_DoubleClick); // // columnProductType // resources.ApplyResources(this.columnProductType, "columnProductType"); // // columnHeaderId // resources.ApplyResources(this.columnHeaderId, "columnHeaderId"); // // columnHeaderStatus // resources.ApplyResources(this.columnHeaderStatus, "columnHeaderStatus"); // // columnHeaderAmount // resources.ApplyResources(this.columnHeaderAmount, "columnHeaderAmount"); // // columnHeaderOLB // resources.ApplyResources(this.columnHeaderOLB, "columnHeaderOLB"); // // columnHeaderCurrency // resources.ApplyResources(this.columnHeaderCurrency, "columnHeaderCurrency"); // // columnHeaderInterestRate // resources.ApplyResources(this.columnHeaderInterestRate, "columnHeaderInterestRate"); // // columnHeaderInstallmentType // resources.ApplyResources(this.columnHeaderInstallmentType, "columnHeaderInstallmentType"); // // columnHeaderNbOfInstallments // resources.ApplyResources(this.columnHeaderNbOfInstallments, "columnHeaderNbOfInstallments"); // // columnHeaderCreationDate // resources.ApplyResources(this.columnHeaderCreationDate, "columnHeaderCreationDate"); // // columnHeaderStartDate // resources.ApplyResources(this.columnHeaderStartDate, "columnHeaderStartDate"); // // columnHeaderCloseDate // resources.ApplyResources(this.columnHeaderCloseDate, "columnHeaderCloseDate"); // // flowLayoutPanel1 // resources.ApplyResources(this.flowLayoutPanel1, "flowLayoutPanel1"); this.flowLayoutPanel1.Controls.Add(this.buttonProjectAddContract); this.flowLayoutPanel1.Controls.Add(this.buttonProjectViewContract); this.flowLayoutPanel1.Name = "flowLayoutPanel1"; // // buttonProjectAddContract // resources.ApplyResources(this.buttonProjectAddContract, "buttonProjectAddContract"); this.buttonProjectAddContract.Name = "buttonProjectAddContract"; this.buttonProjectAddContract.Click += new System.EventHandler(this.buttonAddContract_Click); // // buttonProjectViewContract // resources.ApplyResources(this.buttonProjectViewContract, "buttonProjectViewContract"); this.buttonProjectViewContract.Name = "buttonProjectViewContract"; this.buttonProjectViewContract.Click += new System.EventHandler(this.buttonProjectViewContract_Click); // // tabPageProjectAnalyses // this.tabPageProjectAnalyses.Controls.Add(this.textBoxProjectConcurrence); this.tabPageProjectAnalyses.Controls.Add(this.textBoxProjectMarket); this.tabPageProjectAnalyses.Controls.Add(this.labelProjectConcurrence); this.tabPageProjectAnalyses.Controls.Add(this.labelProjectMarket); this.tabPageProjectAnalyses.Controls.Add(this.textBoxProjectAbilities); this.tabPageProjectAnalyses.Controls.Add(this.textBoxProjectExperience); this.tabPageProjectAnalyses.Controls.Add(this.labelProjectExperience); this.tabPageProjectAnalyses.Controls.Add(this.labelProjectAbilities); resources.ApplyResources(this.tabPageProjectAnalyses, "tabPageProjectAnalyses"); this.tabPageProjectAnalyses.Name = "tabPageProjectAnalyses"; // // textBoxProjectConcurrence // resources.ApplyResources(this.textBoxProjectConcurrence, "textBoxProjectConcurrence"); this.textBoxProjectConcurrence.Name = "textBoxProjectConcurrence"; // // textBoxProjectMarket // resources.ApplyResources(this.textBoxProjectMarket, "textBoxProjectMarket"); this.textBoxProjectMarket.Name = "textBoxProjectMarket"; // // labelProjectConcurrence // resources.ApplyResources(this.labelProjectConcurrence, "labelProjectConcurrence"); this.labelProjectConcurrence.BackColor = System.Drawing.Color.Transparent; this.labelProjectConcurrence.Name = "labelProjectConcurrence"; // // labelProjectMarket // resources.ApplyResources(this.labelProjectMarket, "labelProjectMarket"); this.labelProjectMarket.BackColor = System.Drawing.Color.Transparent; this.labelProjectMarket.Name = "labelProjectMarket"; // // textBoxProjectAbilities // resources.ApplyResources(this.textBoxProjectAbilities, "textBoxProjectAbilities"); this.textBoxProjectAbilities.Name = "textBoxProjectAbilities"; // // textBoxProjectExperience // resources.ApplyResources(this.textBoxProjectExperience, "textBoxProjectExperience"); this.textBoxProjectExperience.Name = "textBoxProjectExperience"; // // labelProjectExperience // resources.ApplyResources(this.labelProjectExperience, "labelProjectExperience"); this.labelProjectExperience.BackColor = System.Drawing.Color.Transparent; this.labelProjectExperience.Name = "labelProjectExperience"; // // labelProjectAbilities // resources.ApplyResources(this.labelProjectAbilities, "labelProjectAbilities"); this.labelProjectAbilities.BackColor = System.Drawing.Color.Transparent; this.labelProjectAbilities.Name = "labelProjectAbilities"; // // tabPageCorporate // this.tabPageCorporate.Controls.Add(this.splitContainer10); resources.ApplyResources(this.tabPageCorporate, "tabPageCorporate"); this.tabPageCorporate.Name = "tabPageCorporate"; // // tabPageFollowUp // this.tabPageFollowUp.Controls.Add(this.splitContainer11); resources.ApplyResources(this.tabPageFollowUp, "tabPageFollowUp"); this.tabPageFollowUp.Name = "tabPageFollowUp"; // // tabPageLoansDetails // this.tabPageLoansDetails.Controls.Add(this.tclLoanDetails); this.tabPageLoansDetails.Controls.Add(this.flowLayoutPanel2); this.tabPageLoansDetails.Controls.Add(this.gbxLoanDetails); resources.ApplyResources(this.tabPageLoansDetails, "tabPageLoansDetails"); this.tabPageLoansDetails.Name = "tabPageLoansDetails"; // // tclLoanDetails // this.tclLoanDetails.Controls.Add(this.tabPageInstallments); this.tclLoanDetails.Controls.Add(this.tabPageLoanCustomizableFields); resources.ApplyResources(this.tclLoanDetails, "tclLoanDetails"); this.tclLoanDetails.Name = "tclLoanDetails"; this.tclLoanDetails.SelectedIndex = 0; // // tabPageInstallments // this.tabPageInstallments.Controls.Add(this.listViewLoanInstallments); resources.ApplyResources(this.tabPageInstallments, "tabPageInstallments"); this.tabPageInstallments.Name = "tabPageInstallments"; // // listViewLoanInstallments // this.listViewLoanInstallments.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeaderLoanN, this.columnHeaderLoanDate, this.columnHeaderLoanIP, this.columnHeaderLoanPR, this.columnHeaderLoanInstallmentTotal, this.columnHeaderLoanOLB}); resources.ApplyResources(this.listViewLoanInstallments, "listViewLoanInstallments"); this.listViewLoanInstallments.DoubleClickActivation = false; this.listViewLoanInstallments.GridLines = true; this.listViewLoanInstallments.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; this.listViewLoanInstallments.Name = "listViewLoanInstallments"; this.listViewLoanInstallments.UseCompatibleStateImageBehavior = false; this.listViewLoanInstallments.View = System.Windows.Forms.View.Details; // // columnHeaderLoanN // resources.ApplyResources(this.columnHeaderLoanN, "columnHeaderLoanN"); // // columnHeaderLoanDate // resources.ApplyResources(this.columnHeaderLoanDate, "columnHeaderLoanDate"); // // columnHeaderLoanIP // resources.ApplyResources(this.columnHeaderLoanIP, "columnHeaderLoanIP"); // // columnHeaderLoanPR // resources.ApplyResources(this.columnHeaderLoanPR, "columnHeaderLoanPR"); // // columnHeaderLoanInstallmentTotal // resources.ApplyResources(this.columnHeaderLoanInstallmentTotal, "columnHeaderLoanInstallmentTotal"); // // columnHeaderLoanOLB // resources.ApplyResources(this.columnHeaderLoanOLB, "columnHeaderLoanOLB"); // // tabPageLoanCustomizableFields // resources.ApplyResources(this.tabPageLoanCustomizableFields, "tabPageLoanCustomizableFields"); this.tabPageLoanCustomizableFields.Name = "tabPageLoanCustomizableFields"; // // flowLayoutPanel2 // resources.ApplyResources(this.flowLayoutPanel2, "flowLayoutPanel2"); this.flowLayoutPanel2.Controls.Add(this.btnSaveLoan); this.flowLayoutPanel2.Controls.Add(this.buttonLoanPreview); this.flowLayoutPanel2.Controls.Add(this.buttonLoanDisbursment); this.flowLayoutPanel2.Controls.Add(this.btnPrintLoanDetails); this.flowLayoutPanel2.Controls.Add(this.btnLoanShares); this.flowLayoutPanel2.Controls.Add(this.btnEditSchedule); this.flowLayoutPanel2.Name = "flowLayoutPanel2"; // // btnSaveLoan // resources.ApplyResources(this.btnSaveLoan, "btnSaveLoan"); this.btnSaveLoan.Name = "btnSaveLoan"; this.btnSaveLoan.Click += new System.EventHandler(this.buttonLoanSave_Click); // // buttonLoanPreview // resources.ApplyResources(this.buttonLoanPreview, "buttonLoanPreview"); this.buttonLoanPreview.Name = "buttonLoanPreview"; this.buttonLoanPreview.Click += new System.EventHandler(this.buttonLoanPreview_Click); // // buttonLoanDisbursment // resources.ApplyResources(this.buttonLoanDisbursment, "buttonLoanDisbursment"); this.buttonLoanDisbursment.Name = "buttonLoanDisbursment"; this.buttonLoanDisbursment.Tag = true; this.buttonLoanDisbursment.Click += new System.EventHandler(this.buttonLoanDisbursment_Click); // // btnPrintLoanDetails // this.btnPrintLoanDetails.AttachmentPoint = OpenCBS.Reports.AttachmentPoint.LoanDetails; resources.ApplyResources(this.btnPrintLoanDetails, "btnPrintLoanDetails"); this.btnPrintLoanDetails.Image = global::OpenCBS.GUI.Properties.Resources.bullet_arrow_down; this.btnPrintLoanDetails.Name = "btnPrintLoanDetails"; this.btnPrintLoanDetails.ReportInitializer = null; this.btnPrintLoanDetails.UseVisualStyleBackColor = true; // // btnLoanShares // resources.ApplyResources(this.btnLoanShares, "btnLoanShares"); this.btnLoanShares.Name = "btnLoanShares"; this.btnLoanShares.Click += new System.EventHandler(this.btnLoanShares_Click); // // btnEditSchedule // resources.ApplyResources(this.btnEditSchedule, "btnEditSchedule"); this.btnEditSchedule.Name = "btnEditSchedule"; this.btnEditSchedule.Click += new System.EventHandler(this.btnEditSchedule_Click); // // gbxLoanDetails // resources.ApplyResources(this.gbxLoanDetails, "gbxLoanDetails"); this.gbxLoanDetails.Controls.Add(this.tableLayoutPanel4); this.gbxLoanDetails.Name = "gbxLoanDetails"; this.gbxLoanDetails.TabStop = false; // // tableLayoutPanel4 // resources.ApplyResources(this.tableLayoutPanel4, "tableLayoutPanel4"); this.tableLayoutPanel4.Controls.Add(this.lblEconomicActivity, 3, 3); this.tableLayoutPanel4.Controls.Add(this.labelDateOffirstInstallment, 3, 1); this.tableLayoutPanel4.Controls.Add(this.labelLoanAmountMinMax, 2, 1); this.tableLayoutPanel4.Controls.Add(this.labelLoanNbOfInstallmentsMinMax, 2, 4); this.tableLayoutPanel4.Controls.Add(this.dtpDateOfFirstInstallment, 4, 1); this.tableLayoutPanel4.Controls.Add(this.labelLoanGracePeriodMinMax, 2, 3); this.tableLayoutPanel4.Controls.Add(this.labelLoanContractCode, 0, 0); this.tableLayoutPanel4.Controls.Add(this.textBoxLoanContractCode, 1, 0); this.tableLayoutPanel4.Controls.Add(this.labelLoanAmount, 0, 1); this.tableLayoutPanel4.Controls.Add(this.labelLoanInterestRate, 0, 2); this.tableLayoutPanel4.Controls.Add(this.dateLoanStart, 4, 0); this.tableLayoutPanel4.Controls.Add(this.labelLoanNbOfInstallments, 0, 4); this.tableLayoutPanel4.Controls.Add(this.labelLoanStartDate, 3, 0); this.tableLayoutPanel4.Controls.Add(this.lbLoanInterestRateMinMax, 2, 2); this.tableLayoutPanel4.Controls.Add(this.labelLoanGracePeriod, 0, 3); this.tableLayoutPanel4.Controls.Add(this.numericUpDownLoanGracePeriod, 1, 3); this.tableLayoutPanel4.Controls.Add(this.nudLoanNbOfInstallments, 1, 4); this.tableLayoutPanel4.Controls.Add(this.lblDay, 5, 1); this.tableLayoutPanel4.Controls.Add(this.cmbLoanOfficer, 1, 6); this.tableLayoutPanel4.Controls.Add(this.labelLoanLoanOfficer, 0, 6); this.tableLayoutPanel4.Controls.Add(this.labelLoanInstallmentType, 0, 5); this.tableLayoutPanel4.Controls.Add(this.comboBoxLoanInstallmentType, 1, 5); this.tableLayoutPanel4.Controls.Add(this.labelLoanFundingLine, 3, 2); this.tableLayoutPanel4.Controls.Add(this.comboBoxLoanFundingLine, 4, 2); this.tableLayoutPanel4.Controls.Add(this.labelLoanPurpose, 3, 4); this.tableLayoutPanel4.Controls.Add(this.textBoxLoanPurpose, 4, 4); this.tableLayoutPanel4.Controls.Add(this.nudLoanAmount, 1, 1); this.tableLayoutPanel4.Controls.Add(this.nudInterestRate, 1, 2); this.tableLayoutPanel4.Controls.Add(this.eacLoan, 4, 3); this.tableLayoutPanel4.Name = "tableLayoutPanel4"; // // lblEconomicActivity // resources.ApplyResources(this.lblEconomicActivity, "lblEconomicActivity"); this.lblEconomicActivity.BackColor = System.Drawing.Color.Transparent; this.lblEconomicActivity.Name = "lblEconomicActivity"; // // labelDateOffirstInstallment // resources.ApplyResources(this.labelDateOffirstInstallment, "labelDateOffirstInstallment"); this.labelDateOffirstInstallment.BackColor = System.Drawing.Color.Transparent; this.labelDateOffirstInstallment.Name = "labelDateOffirstInstallment"; // // labelLoanAmountMinMax // resources.ApplyResources(this.labelLoanAmountMinMax, "labelLoanAmountMinMax"); this.labelLoanAmountMinMax.BackColor = System.Drawing.Color.Transparent; this.labelLoanAmountMinMax.Name = "labelLoanAmountMinMax"; // // labelLoanNbOfInstallmentsMinMax // resources.ApplyResources(this.labelLoanNbOfInstallmentsMinMax, "labelLoanNbOfInstallmentsMinMax"); this.labelLoanNbOfInstallmentsMinMax.BackColor = System.Drawing.Color.Transparent; this.labelLoanNbOfInstallmentsMinMax.Name = "labelLoanNbOfInstallmentsMinMax"; // // dtpDateOfFirstInstallment // resources.ApplyResources(this.dtpDateOfFirstInstallment, "dtpDateOfFirstInstallment"); this.dtpDateOfFirstInstallment.Format = System.Windows.Forms.DateTimePickerFormat.Short; this.dtpDateOfFirstInstallment.Name = "dtpDateOfFirstInstallment"; // // labelLoanGracePeriodMinMax // resources.ApplyResources(this.labelLoanGracePeriodMinMax, "labelLoanGracePeriodMinMax"); this.labelLoanGracePeriodMinMax.BackColor = System.Drawing.Color.Transparent; this.labelLoanGracePeriodMinMax.Name = "labelLoanGracePeriodMinMax"; // // labelLoanContractCode // resources.ApplyResources(this.labelLoanContractCode, "labelLoanContractCode"); this.labelLoanContractCode.BackColor = System.Drawing.Color.Transparent; this.labelLoanContractCode.Name = "labelLoanContractCode"; // // textBoxLoanContractCode // this.tableLayoutPanel4.SetColumnSpan(this.textBoxLoanContractCode, 2); resources.ApplyResources(this.textBoxLoanContractCode, "textBoxLoanContractCode"); this.textBoxLoanContractCode.Name = "textBoxLoanContractCode"; this.textBoxLoanContractCode.ReadOnly = true; // // labelLoanAmount // resources.ApplyResources(this.labelLoanAmount, "labelLoanAmount"); this.labelLoanAmount.BackColor = System.Drawing.Color.Transparent; this.labelLoanAmount.Name = "labelLoanAmount"; // // labelLoanInterestRate // resources.ApplyResources(this.labelLoanInterestRate, "labelLoanInterestRate"); this.labelLoanInterestRate.BackColor = System.Drawing.Color.Transparent; this.labelLoanInterestRate.Name = "labelLoanInterestRate"; // // dateLoanStart // resources.ApplyResources(this.dateLoanStart, "dateLoanStart"); this.dateLoanStart.Format = System.Windows.Forms.DateTimePickerFormat.Short; this.dateLoanStart.Name = "dateLoanStart"; this.dateLoanStart.ValueChanged += new System.EventHandler(this.dateLoanStart_ValueChanged); // // labelLoanNbOfInstallments // resources.ApplyResources(this.labelLoanNbOfInstallments, "labelLoanNbOfInstallments"); this.labelLoanNbOfInstallments.BackColor = System.Drawing.Color.Transparent; this.labelLoanNbOfInstallments.Name = "labelLoanNbOfInstallments"; // // labelLoanStartDate // resources.ApplyResources(this.labelLoanStartDate, "labelLoanStartDate"); this.labelLoanStartDate.BackColor = System.Drawing.Color.Transparent; this.labelLoanStartDate.Name = "labelLoanStartDate"; // // lbLoanInterestRateMinMax // resources.ApplyResources(this.lbLoanInterestRateMinMax, "lbLoanInterestRateMinMax"); this.lbLoanInterestRateMinMax.Name = "lbLoanInterestRateMinMax"; // // labelLoanGracePeriod // resources.ApplyResources(this.labelLoanGracePeriod, "labelLoanGracePeriod"); this.labelLoanGracePeriod.BackColor = System.Drawing.Color.Transparent; this.labelLoanGracePeriod.Name = "labelLoanGracePeriod"; // // numericUpDownLoanGracePeriod // resources.ApplyResources(this.numericUpDownLoanGracePeriod, "numericUpDownLoanGracePeriod"); this.numericUpDownLoanGracePeriod.ForeColor = System.Drawing.SystemColors.WindowText; this.numericUpDownLoanGracePeriod.Name = "numericUpDownLoanGracePeriod"; // // nudLoanNbOfInstallments // resources.ApplyResources(this.nudLoanNbOfInstallments, "nudLoanNbOfInstallments"); this.nudLoanNbOfInstallments.Name = "nudLoanNbOfInstallments"; // // lblDay // resources.ApplyResources(this.lblDay, "lblDay"); this.lblDay.Name = "lblDay"; // // cmbLoanOfficer // this.tableLayoutPanel4.SetColumnSpan(this.cmbLoanOfficer, 2); this.cmbLoanOfficer.DisplayMember = "Name"; this.cmbLoanOfficer.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbLoanOfficer.ForeColor = System.Drawing.SystemColors.WindowText; resources.ApplyResources(this.cmbLoanOfficer, "cmbLoanOfficer"); this.cmbLoanOfficer.Name = "cmbLoanOfficer"; this.cmbLoanOfficer.ValueMember = "Id"; this.cmbLoanOfficer.SelectedIndexChanged += new System.EventHandler(this.comboBoxLoanOfficer_SelectedIndexChanged); // // labelLoanLoanOfficer // resources.ApplyResources(this.labelLoanLoanOfficer, "labelLoanLoanOfficer"); this.labelLoanLoanOfficer.BackColor = System.Drawing.Color.Transparent; this.labelLoanLoanOfficer.Name = "labelLoanLoanOfficer"; // // labelLoanInstallmentType // resources.ApplyResources(this.labelLoanInstallmentType, "labelLoanInstallmentType"); this.labelLoanInstallmentType.BackColor = System.Drawing.Color.Transparent; this.labelLoanInstallmentType.Name = "labelLoanInstallmentType"; // // comboBoxLoanInstallmentType // this.tableLayoutPanel4.SetColumnSpan(this.comboBoxLoanInstallmentType, 2); this.comboBoxLoanInstallmentType.DisplayMember = "installmentType.Name"; this.comboBoxLoanInstallmentType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; resources.ApplyResources(this.comboBoxLoanInstallmentType, "comboBoxLoanInstallmentType"); this.comboBoxLoanInstallmentType.ForeColor = System.Drawing.SystemColors.WindowText; this.comboBoxLoanInstallmentType.Name = "comboBoxLoanInstallmentType"; // // labelLoanFundingLine // resources.ApplyResources(this.labelLoanFundingLine, "labelLoanFundingLine"); this.labelLoanFundingLine.BackColor = System.Drawing.Color.Transparent; this.labelLoanFundingLine.Name = "labelLoanFundingLine"; // // comboBoxLoanFundingLine // this.tableLayoutPanel4.SetColumnSpan(this.comboBoxLoanFundingLine, 2); this.comboBoxLoanFundingLine.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboBoxLoanFundingLine.ForeColor = System.Drawing.SystemColors.WindowText; resources.ApplyResources(this.comboBoxLoanFundingLine, "comboBoxLoanFundingLine"); this.comboBoxLoanFundingLine.Name = "comboBoxLoanFundingLine"; this.comboBoxLoanFundingLine.SelectedIndexChanged += new System.EventHandler(this.comboBoxLoanFundingLine_SelectedIndexChanged); // // labelLoanPurpose // resources.ApplyResources(this.labelLoanPurpose, "labelLoanPurpose"); this.labelLoanPurpose.BackColor = System.Drawing.Color.Transparent; this.labelLoanPurpose.Name = "labelLoanPurpose"; // // textBoxLoanPurpose // this.tableLayoutPanel4.SetColumnSpan(this.textBoxLoanPurpose, 3); resources.ApplyResources(this.textBoxLoanPurpose, "textBoxLoanPurpose"); this.textBoxLoanPurpose.Name = "textBoxLoanPurpose"; this.tableLayoutPanel4.SetRowSpan(this.textBoxLoanPurpose, 3); // // nudLoanAmount // resources.ApplyResources(this.nudLoanAmount, "nudLoanAmount"); this.nudLoanAmount.Name = "nudLoanAmount"; this.nudLoanAmount.ValueChanged += new System.EventHandler(this.nudLoanAmount_ValueChanged); this.nudLoanAmount.EnabledChanged += new System.EventHandler(this.nudLoanAmount_EnabledChanged); this.nudLoanAmount.Leave += new System.EventHandler(this.nudLoanAmount_Leave); // // nudInterestRate // this.nudInterestRate.DecimalPlaces = 10; this.nudInterestRate.Increment = new decimal(new int[] { 1, 0, 0, 131072}); resources.ApplyResources(this.nudInterestRate, "nudInterestRate"); this.nudInterestRate.Name = "nudInterestRate"; this.nudInterestRate.EnabledChanged += new System.EventHandler(this.nudLoanAmount_EnabledChanged); // // eacLoan // this.eacLoan.Activity = null; this.tableLayoutPanel4.SetColumnSpan(this.eacLoan, 3); resources.ApplyResources(this.eacLoan, "eacLoan"); this.eacLoan.Name = "eacLoan"; // // tabPageAdvancedSettings // this.tabPageAdvancedSettings.Controls.Add(this.tableLayoutPanel6); this.tabPageAdvancedSettings.Controls.Add(this.tableLayoutPanel9); resources.ApplyResources(this.tabPageAdvancedSettings, "tabPageAdvancedSettings"); this.tabPageAdvancedSettings.Name = "tabPageAdvancedSettings"; // // tableLayoutPanel6 // resources.ApplyResources(this.tableLayoutPanel6, "tableLayoutPanel6"); this.tableLayoutPanel6.Controls.Add(this.flowLayoutPanel5, 0, 0); this.tableLayoutPanel6.Controls.Add(this.groupBoxEntryFees, 0, 1); this.tableLayoutPanel6.Controls.Add(this.btnUpdateSettings, 0, 7); this.tableLayoutPanel6.Controls.Add(this.groupBox2, 0, 5); this.tableLayoutPanel6.Controls.Add(this.labelComments, 0, 6); this.tableLayoutPanel6.Controls.Add(this.textBoxComments, 1, 6); this.tableLayoutPanel6.Name = "tableLayoutPanel6"; // // flowLayoutPanel5 // resources.ApplyResources(this.flowLayoutPanel5, "flowLayoutPanel5"); this.tableLayoutPanel6.SetColumnSpan(this.flowLayoutPanel5, 5); this.flowLayoutPanel5.Controls.Add(this.groupBoxAnticipatedRepaymentPenalties); this.flowLayoutPanel5.Controls.Add(this.groupBoxLoanLateFees); this.flowLayoutPanel5.Name = "flowLayoutPanel5"; // // groupBoxAnticipatedRepaymentPenalties // resources.ApplyResources(this.groupBoxAnticipatedRepaymentPenalties, "groupBoxAnticipatedRepaymentPenalties"); this.groupBoxAnticipatedRepaymentPenalties.Controls.Add(this.tableLayoutPanel7); this.groupBoxAnticipatedRepaymentPenalties.Name = "groupBoxAnticipatedRepaymentPenalties"; this.groupBoxAnticipatedRepaymentPenalties.TabStop = false; // // tableLayoutPanel7 // resources.ApplyResources(this.tableLayoutPanel7, "tableLayoutPanel7"); this.tableLayoutPanel7.Controls.Add(this.lblEarlyPartialRepaimentBase, 3, 1); this.tableLayoutPanel7.Controls.Add(this.lblEarlyTotalRepaimentBase, 3, 0); this.tableLayoutPanel7.Controls.Add(this.lblLoanAnticipatedPartialFeesMinMax, 2, 1); this.tableLayoutPanel7.Controls.Add(this.lbATR, 0, 0); this.tableLayoutPanel7.Controls.Add(this.tbLoanAnticipatedPartialFees, 1, 1); this.tableLayoutPanel7.Controls.Add(this.textBoxLoanAnticipatedTotalFees, 1, 0); this.tableLayoutPanel7.Controls.Add(this.lbAPR, 0, 1); this.tableLayoutPanel7.Controls.Add(this.labelLoanAnticipatedTotalFeesMinMax, 2, 0); this.tableLayoutPanel7.Name = "tableLayoutPanel7"; // // lblEarlyPartialRepaimentBase // resources.ApplyResources(this.lblEarlyPartialRepaimentBase, "lblEarlyPartialRepaimentBase"); this.lblEarlyPartialRepaimentBase.BackColor = System.Drawing.Color.Transparent; this.lblEarlyPartialRepaimentBase.Name = "lblEarlyPartialRepaimentBase"; // // lblEarlyTotalRepaimentBase // resources.ApplyResources(this.lblEarlyTotalRepaimentBase, "lblEarlyTotalRepaimentBase"); this.lblEarlyTotalRepaimentBase.BackColor = System.Drawing.Color.Transparent; this.lblEarlyTotalRepaimentBase.Name = "lblEarlyTotalRepaimentBase"; // // lblLoanAnticipatedPartialFeesMinMax // resources.ApplyResources(this.lblLoanAnticipatedPartialFeesMinMax, "lblLoanAnticipatedPartialFeesMinMax"); this.lblLoanAnticipatedPartialFeesMinMax.BackColor = System.Drawing.Color.Transparent; this.lblLoanAnticipatedPartialFeesMinMax.Name = "lblLoanAnticipatedPartialFeesMinMax"; // // lbATR // resources.ApplyResources(this.lbATR, "lbATR"); this.lbATR.Name = "lbATR"; // // tbLoanAnticipatedPartialFees // resources.ApplyResources(this.tbLoanAnticipatedPartialFees, "tbLoanAnticipatedPartialFees"); this.tbLoanAnticipatedPartialFees.Name = "tbLoanAnticipatedPartialFees"; this.tbLoanAnticipatedPartialFees.EnabledChanged += new System.EventHandler(this.nudLoanAmount_EnabledChanged); this.tbLoanAnticipatedPartialFees.TextChanged += new System.EventHandler(this.textBoxLoanAnticipatedPartialFees_TextChanged); this.tbLoanAnticipatedPartialFees.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxLocAmount_KeyPress); this.tbLoanAnticipatedPartialFees.Leave += new System.EventHandler(this.textBoxLoanAnticipatedPartialFees_Leave); // // textBoxLoanAnticipatedTotalFees // resources.ApplyResources(this.textBoxLoanAnticipatedTotalFees, "textBoxLoanAnticipatedTotalFees"); this.textBoxLoanAnticipatedTotalFees.Name = "textBoxLoanAnticipatedTotalFees"; this.textBoxLoanAnticipatedTotalFees.EnabledChanged += new System.EventHandler(this.nudLoanAmount_EnabledChanged); this.textBoxLoanAnticipatedTotalFees.TextChanged += new System.EventHandler(this.textBoxLoanAnticipatedTotalFees_TextChanged); this.textBoxLoanAnticipatedTotalFees.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxLocAmount_KeyPress); this.textBoxLoanAnticipatedTotalFees.Leave += new System.EventHandler(this.textBoxLoanAnticipatedFees_Leave); // // lbAPR // resources.ApplyResources(this.lbAPR, "lbAPR"); this.lbAPR.Name = "lbAPR"; // // labelLoanAnticipatedTotalFeesMinMax // resources.ApplyResources(this.labelLoanAnticipatedTotalFeesMinMax, "labelLoanAnticipatedTotalFeesMinMax"); this.labelLoanAnticipatedTotalFeesMinMax.BackColor = System.Drawing.Color.Transparent; this.labelLoanAnticipatedTotalFeesMinMax.Name = "labelLoanAnticipatedTotalFeesMinMax"; // // groupBoxLoanLateFees // resources.ApplyResources(this.groupBoxLoanLateFees, "groupBoxLoanLateFees"); this.groupBoxLoanLateFees.Controls.Add(this.tableLayoutPanel8); this.groupBoxLoanLateFees.Name = "groupBoxLoanLateFees"; this.groupBoxLoanLateFees.TabStop = false; // // tableLayoutPanel8 // resources.ApplyResources(this.tableLayoutPanel8, "tableLayoutPanel8"); this.tableLayoutPanel8.Controls.Add(this.labelLoanLateFeesOnOverduePrincipalMinMax, 2, 1); this.tableLayoutPanel8.Controls.Add(this.labelLoanLateFeesOnAmountMinMax, 2, 0); this.tableLayoutPanel8.Controls.Add(this.labelLoanLateFeesOnAmount, 0, 0); this.tableLayoutPanel8.Controls.Add(this.textBoxLoanLateFeesOnAmount, 1, 0); this.tableLayoutPanel8.Controls.Add(this.textBoxLoanLateFeesOnOverduePrincipal, 1, 1); this.tableLayoutPanel8.Controls.Add(this.labelLoanLateFeesOnOverduePrincipal, 0, 1); this.tableLayoutPanel8.Controls.Add(this.labelLoanLateFeesOnOLB, 3, 0); this.tableLayoutPanel8.Controls.Add(this.textBoxLoanLateFeesOnOLB, 4, 0); this.tableLayoutPanel8.Controls.Add(this.labelLoanLateFeesOnOLBMinMax, 5, 0); this.tableLayoutPanel8.Controls.Add(this.labelLoanLateFeesOnOverdueInterest, 3, 1); this.tableLayoutPanel8.Controls.Add(this.textBoxLoanLateFeesOnOverdueInterest, 4, 1); this.tableLayoutPanel8.Controls.Add(this.labelLoanLateFeesOnOverdueInterestMinMax, 5, 1); this.tableLayoutPanel8.Name = "tableLayoutPanel8"; // // labelLoanLateFeesOnOverduePrincipalMinMax // resources.ApplyResources(this.labelLoanLateFeesOnOverduePrincipalMinMax, "labelLoanLateFeesOnOverduePrincipalMinMax"); this.labelLoanLateFeesOnOverduePrincipalMinMax.BackColor = System.Drawing.Color.Transparent; this.labelLoanLateFeesOnOverduePrincipalMinMax.Name = "labelLoanLateFeesOnOverduePrincipalMinMax"; // // labelLoanLateFeesOnAmountMinMax // resources.ApplyResources(this.labelLoanLateFeesOnAmountMinMax, "labelLoanLateFeesOnAmountMinMax"); this.labelLoanLateFeesOnAmountMinMax.BackColor = System.Drawing.Color.Transparent; this.labelLoanLateFeesOnAmountMinMax.Name = "labelLoanLateFeesOnAmountMinMax"; // // labelLoanLateFeesOnAmount // resources.ApplyResources(this.labelLoanLateFeesOnAmount, "labelLoanLateFeesOnAmount"); this.labelLoanLateFeesOnAmount.BackColor = System.Drawing.Color.Transparent; this.labelLoanLateFeesOnAmount.Name = "labelLoanLateFeesOnAmount"; // // textBoxLoanLateFeesOnAmount // resources.ApplyResources(this.textBoxLoanLateFeesOnAmount, "textBoxLoanLateFeesOnAmount"); this.textBoxLoanLateFeesOnAmount.Name = "textBoxLoanLateFeesOnAmount"; this.textBoxLoanLateFeesOnAmount.EnabledChanged += new System.EventHandler(this.nudLoanAmount_EnabledChanged); this.textBoxLoanLateFeesOnAmount.TextChanged += new System.EventHandler(this.textBoxLoanLateFeesOnAmount_TextChanged); this.textBoxLoanLateFeesOnAmount.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxLocAmount_KeyPress); this.textBoxLoanLateFeesOnAmount.Leave += new System.EventHandler(this.textBoxLoanLateFeesOnAmount_Leave); // // textBoxLoanLateFeesOnOverduePrincipal // resources.ApplyResources(this.textBoxLoanLateFeesOnOverduePrincipal, "textBoxLoanLateFeesOnOverduePrincipal"); this.textBoxLoanLateFeesOnOverduePrincipal.Name = "textBoxLoanLateFeesOnOverduePrincipal"; this.textBoxLoanLateFeesOnOverduePrincipal.EnabledChanged += new System.EventHandler(this.nudLoanAmount_EnabledChanged); this.textBoxLoanLateFeesOnOverduePrincipal.TextChanged += new System.EventHandler(this.textBoxLoanLateFeesOnOverduePrincipal_TextChanged); this.textBoxLoanLateFeesOnOverduePrincipal.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxLocAmount_KeyPress); this.textBoxLoanLateFeesOnOverduePrincipal.Leave += new System.EventHandler(this.textBoxLoanLateFeesOnOverduePrincipal_Leave); // // labelLoanLateFeesOnOverduePrincipal // resources.ApplyResources(this.labelLoanLateFeesOnOverduePrincipal, "labelLoanLateFeesOnOverduePrincipal"); this.labelLoanLateFeesOnOverduePrincipal.BackColor = System.Drawing.Color.Transparent; this.labelLoanLateFeesOnOverduePrincipal.Name = "labelLoanLateFeesOnOverduePrincipal"; // // labelLoanLateFeesOnOLB // resources.ApplyResources(this.labelLoanLateFeesOnOLB, "labelLoanLateFeesOnOLB"); this.labelLoanLateFeesOnOLB.BackColor = System.Drawing.Color.Transparent; this.labelLoanLateFeesOnOLB.Name = "labelLoanLateFeesOnOLB"; this.labelLoanLateFeesOnOLB.Tag = ""; // // textBoxLoanLateFeesOnOLB // resources.ApplyResources(this.textBoxLoanLateFeesOnOLB, "textBoxLoanLateFeesOnOLB"); this.textBoxLoanLateFeesOnOLB.Name = "textBoxLoanLateFeesOnOLB"; this.textBoxLoanLateFeesOnOLB.EnabledChanged += new System.EventHandler(this.nudLoanAmount_EnabledChanged); this.textBoxLoanLateFeesOnOLB.TextChanged += new System.EventHandler(this.textBoxLoanLateFeesOnOLB_TextChanged); this.textBoxLoanLateFeesOnOLB.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxLocAmount_KeyPress); this.textBoxLoanLateFeesOnOLB.Leave += new System.EventHandler(this.textBoxLoanLateFeesOnOLB_Leave); // // labelLoanLateFeesOnOLBMinMax // resources.ApplyResources(this.labelLoanLateFeesOnOLBMinMax, "labelLoanLateFeesOnOLBMinMax"); this.labelLoanLateFeesOnOLBMinMax.BackColor = System.Drawing.Color.Transparent; this.labelLoanLateFeesOnOLBMinMax.Name = "labelLoanLateFeesOnOLBMinMax"; // // labelLoanLateFeesOnOverdueInterest // resources.ApplyResources(this.labelLoanLateFeesOnOverdueInterest, "labelLoanLateFeesOnOverdueInterest"); this.labelLoanLateFeesOnOverdueInterest.BackColor = System.Drawing.Color.Transparent; this.labelLoanLateFeesOnOverdueInterest.Name = "labelLoanLateFeesOnOverdueInterest"; // // textBoxLoanLateFeesOnOverdueInterest // resources.ApplyResources(this.textBoxLoanLateFeesOnOverdueInterest, "textBoxLoanLateFeesOnOverdueInterest"); this.textBoxLoanLateFeesOnOverdueInterest.Name = "textBoxLoanLateFeesOnOverdueInterest"; this.textBoxLoanLateFeesOnOverdueInterest.EnabledChanged += new System.EventHandler(this.nudLoanAmount_EnabledChanged); this.textBoxLoanLateFeesOnOverdueInterest.TextChanged += new System.EventHandler(this.textBoxLoanLateFeesOnOverdueInterest_TextChanged); this.textBoxLoanLateFeesOnOverdueInterest.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxLocAmount_KeyPress); this.textBoxLoanLateFeesOnOverdueInterest.Leave += new System.EventHandler(this.textBoxLoanLateFeesOnOverdueInterest_Leave); // // labelLoanLateFeesOnOverdueInterestMinMax // resources.ApplyResources(this.labelLoanLateFeesOnOverdueInterestMinMax, "labelLoanLateFeesOnOverdueInterestMinMax"); this.labelLoanLateFeesOnOverdueInterestMinMax.BackColor = System.Drawing.Color.Transparent; this.labelLoanLateFeesOnOverdueInterestMinMax.Name = "labelLoanLateFeesOnOverdueInterestMinMax"; // // groupBoxEntryFees // this.tableLayoutPanel6.SetColumnSpan(this.groupBoxEntryFees, 5); this.groupBoxEntryFees.Controls.Add(this.lvEntryFees); this.groupBoxEntryFees.Controls.Add(this.lblMinMaxEntryFees); this.groupBoxEntryFees.Controls.Add(this.numEntryFees); resources.ApplyResources(this.groupBoxEntryFees, "groupBoxEntryFees"); this.groupBoxEntryFees.Name = "groupBoxEntryFees"; this.groupBoxEntryFees.TabStop = false; // // lvEntryFees // this.lvEntryFees.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.colName, this.colValue, this.colType, this.colAmount}); resources.ApplyResources(this.lvEntryFees, "lvEntryFees"); this.lvEntryFees.DoubleClickActivation = true; this.lvEntryFees.FullRowSelect = true; this.lvEntryFees.GridLines = true; this.lvEntryFees.Name = "lvEntryFees"; this.lvEntryFees.UseCompatibleStateImageBehavior = false; this.lvEntryFees.View = System.Windows.Forms.View.Details; this.lvEntryFees.SubItemClicked += new OpenCBS.GUI.UserControl.SubItemEventHandler(this.lvEntryFees_SubItemClicked); this.lvEntryFees.SubItemEndEditing += new OpenCBS.GUI.UserControl.SubItemEndEditingEventHandler(this.lvEntryFees_SubItemEndEditing); this.lvEntryFees.Click += new System.EventHandler(this.lvEntryFees_Click); // // colName // resources.ApplyResources(this.colName, "colName"); // // colValue // resources.ApplyResources(this.colValue, "colValue"); // // colType // resources.ApplyResources(this.colType, "colType"); // // colAmount // resources.ApplyResources(this.colAmount, "colAmount"); // // lblMinMaxEntryFees // resources.ApplyResources(this.lblMinMaxEntryFees, "lblMinMaxEntryFees"); this.lblMinMaxEntryFees.Name = "lblMinMaxEntryFees"; this.lblMinMaxEntryFees.TextChanged += new System.EventHandler(this.lbCompAmountPercentMinMax_TextChanged); // // numEntryFees // resources.ApplyResources(this.numEntryFees, "numEntryFees"); this.numEntryFees.Name = "numEntryFees"; // // btnUpdateSettings // resources.ApplyResources(this.btnUpdateSettings, "btnUpdateSettings"); this.btnUpdateSettings.Name = "btnUpdateSettings"; this.btnUpdateSettings.Click += new System.EventHandler(this.buttonLoanSave_Click); // // groupBox2 // this.tableLayoutPanel6.SetColumnSpan(this.groupBox2, 5); this.groupBox2.Controls.Add(this.tableLayoutPanel10); resources.ApplyResources(this.groupBox2, "groupBox2"); this.groupBox2.Name = "groupBox2"; this.groupBox2.TabStop = false; // // tableLayoutPanel10 // resources.ApplyResources(this.tableLayoutPanel10, "tableLayoutPanel10"); this.tableLayoutPanel10.Controls.Add(this.lbCompulsorySavingsAmount, 0, 0); this.tableLayoutPanel10.Controls.Add(this.lbCompulsorySavings, 0, 1); this.tableLayoutPanel10.Controls.Add(this.numCompulsoryAmountPercent, 1, 0); this.tableLayoutPanel10.Controls.Add(this.cmbCompulsorySaving, 1, 1); this.tableLayoutPanel10.Controls.Add(this.linkCompulsorySavings, 2, 1); this.tableLayoutPanel10.Controls.Add(this.lbCompAmountPercentMinMax, 2, 0); this.tableLayoutPanel10.Name = "tableLayoutPanel10"; // // lbCompulsorySavingsAmount // resources.ApplyResources(this.lbCompulsorySavingsAmount, "lbCompulsorySavingsAmount"); this.lbCompulsorySavingsAmount.Name = "lbCompulsorySavingsAmount"; // // lbCompulsorySavings // resources.ApplyResources(this.lbCompulsorySavings, "lbCompulsorySavings"); this.lbCompulsorySavings.Name = "lbCompulsorySavings"; // // numCompulsoryAmountPercent // resources.ApplyResources(this.numCompulsoryAmountPercent, "numCompulsoryAmountPercent"); this.numCompulsoryAmountPercent.Maximum = new decimal(new int[] { 3, 0, 0, 0}); this.numCompulsoryAmountPercent.Name = "numCompulsoryAmountPercent"; // // cmbCompulsorySaving // this.cmbCompulsorySaving.DisplayMember = "Value"; this.cmbCompulsorySaving.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbCompulsorySaving.FormattingEnabled = true; resources.ApplyResources(this.cmbCompulsorySaving, "cmbCompulsorySaving"); this.cmbCompulsorySaving.Name = "cmbCompulsorySaving"; this.cmbCompulsorySaving.ValueMember = "Key"; this.cmbCompulsorySaving.SelectedIndexChanged += new System.EventHandler(this.cmbCompulsorySaving_SelectedIndexChanged); // // linkCompulsorySavings // this.linkCompulsorySavings.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.linkCompulsorySavings, "linkCompulsorySavings"); this.linkCompulsorySavings.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(88)))), ((int)(((byte)(56))))); this.linkCompulsorySavings.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(88)))), ((int)(((byte)(56))))); this.linkCompulsorySavings.Name = "linkCompulsorySavings"; this.linkCompulsorySavings.TabStop = true; this.linkCompulsorySavings.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkCompulsorySavings_LinkClicked); // // lbCompAmountPercentMinMax // resources.ApplyResources(this.lbCompAmountPercentMinMax, "lbCompAmountPercentMinMax"); this.lbCompAmountPercentMinMax.Name = "lbCompAmountPercentMinMax"; this.lbCompAmountPercentMinMax.TextChanged += new System.EventHandler(this.lbCompAmountPercentMinMax_TextChanged); // // labelComments // resources.ApplyResources(this.labelComments, "labelComments"); this.labelComments.Name = "labelComments"; // // textBoxComments // this.tableLayoutPanel6.SetColumnSpan(this.textBoxComments, 3); resources.ApplyResources(this.textBoxComments, "textBoxComments"); this.textBoxComments.Name = "textBoxComments"; // // tableLayoutPanel9 // resources.ApplyResources(this.tableLayoutPanel9, "tableLayoutPanel9"); this.tableLayoutPanel9.Controls.Add(this.labelLocAmount, 0, 0); this.tableLayoutPanel9.Controls.Add(this.tbLocAmount, 1, 0); this.tableLayoutPanel9.Controls.Add(this.labelLocMin, 2, 0); this.tableLayoutPanel9.Controls.Add(this.labelLocMax, 2, 1); this.tableLayoutPanel9.Controls.Add(this.labelLocMinAmount, 3, 0); this.tableLayoutPanel9.Controls.Add(this.labelLocMaxAmount, 3, 1); this.tableLayoutPanel9.Controls.Add(this.lblInsuranceMin, 8, 0); this.tableLayoutPanel9.Controls.Add(this.lblInsuranceMax, 8, 1); this.tableLayoutPanel9.Controls.Add(this.label5, 7, 1); this.tableLayoutPanel9.Controls.Add(this.label4, 7, 0); this.tableLayoutPanel9.Controls.Add(this.tbInsurance, 6, 0); this.tableLayoutPanel9.Controls.Add(this.lblCreditInsurance, 5, 0); this.tableLayoutPanel9.Controls.Add(this.label6, 9, 0); this.tableLayoutPanel9.Controls.Add(this.label7, 9, 1); this.tableLayoutPanel9.Controls.Add(this.lblLocCurrencyMin, 4, 0); this.tableLayoutPanel9.Controls.Add(this.lblLocCurrencyMax, 4, 1); this.tableLayoutPanel9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(88)))), ((int)(((byte)(56))))); this.tableLayoutPanel9.Name = "tableLayoutPanel9"; // // labelLocAmount // resources.ApplyResources(this.labelLocAmount, "labelLocAmount"); this.labelLocAmount.BackColor = System.Drawing.Color.Transparent; this.labelLocAmount.Name = "labelLocAmount"; this.tableLayoutPanel9.SetRowSpan(this.labelLocAmount, 2); // // tbLocAmount // resources.ApplyResources(this.tbLocAmount, "tbLocAmount"); this.tbLocAmount.Name = "tbLocAmount"; this.tableLayoutPanel9.SetRowSpan(this.tbLocAmount, 2); this.tbLocAmount.EnabledChanged += new System.EventHandler(this.nudLoanAmount_EnabledChanged); this.tbLocAmount.TextChanged += new System.EventHandler(this.textBoxLocAmount_TextChanged); this.tbLocAmount.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxLocAmount_KeyPress); this.tbLocAmount.Leave += new System.EventHandler(this.textBoxLocAmount_Leave); // // labelLocMin // resources.ApplyResources(this.labelLocMin, "labelLocMin"); this.labelLocMin.BackColor = System.Drawing.Color.Transparent; this.labelLocMin.Name = "labelLocMin"; // // labelLocMax // resources.ApplyResources(this.labelLocMax, "labelLocMax"); this.labelLocMax.BackColor = System.Drawing.Color.Transparent; this.labelLocMax.Name = "labelLocMax"; // // labelLocMinAmount // resources.ApplyResources(this.labelLocMinAmount, "labelLocMinAmount"); this.labelLocMinAmount.BackColor = System.Drawing.Color.Transparent; this.labelLocMinAmount.Name = "labelLocMinAmount"; // // labelLocMaxAmount // resources.ApplyResources(this.labelLocMaxAmount, "labelLocMaxAmount"); this.labelLocMaxAmount.BackColor = System.Drawing.Color.Transparent; this.labelLocMaxAmount.Name = "labelLocMaxAmount"; // // lblInsuranceMin // resources.ApplyResources(this.lblInsuranceMin, "lblInsuranceMin"); this.lblInsuranceMin.Name = "lblInsuranceMin"; // // lblInsuranceMax // resources.ApplyResources(this.lblInsuranceMax, "lblInsuranceMax"); this.lblInsuranceMax.Name = "lblInsuranceMax"; // // label5 // resources.ApplyResources(this.label5, "label5"); this.label5.Name = "label5"; // // label4 // resources.ApplyResources(this.label4, "label4"); this.label4.Name = "label4"; // // tbInsurance // resources.ApplyResources(this.tbInsurance, "tbInsurance"); this.tbInsurance.Name = "tbInsurance"; this.tableLayoutPanel9.SetRowSpan(this.tbInsurance, 2); this.tbInsurance.TextChanged += new System.EventHandler(this.tbInsurance_TextChanged); this.tbInsurance.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxLocAmount_KeyPress); this.tbInsurance.Leave += new System.EventHandler(this.tbInsurance_Leave); // // lblCreditInsurance // resources.ApplyResources(this.lblCreditInsurance, "lblCreditInsurance"); this.lblCreditInsurance.Name = "lblCreditInsurance"; this.tableLayoutPanel9.SetRowSpan(this.lblCreditInsurance, 2); // // label6 // resources.ApplyResources(this.label6, "label6"); this.label6.Name = "label6"; // // label7 // resources.ApplyResources(this.label7, "label7"); this.label7.Name = "label7"; // // lblLocCurrencyMin // resources.ApplyResources(this.lblLocCurrencyMin, "lblLocCurrencyMin"); this.lblLocCurrencyMin.BackColor = System.Drawing.Color.Transparent; this.lblLocCurrencyMin.Name = "lblLocCurrencyMin"; // // lblLocCurrencyMax // resources.ApplyResources(this.lblLocCurrencyMax, "lblLocCurrencyMax"); this.lblLocCurrencyMax.BackColor = System.Drawing.Color.Transparent; this.lblLocCurrencyMax.Name = "lblLocCurrencyMax"; // // tabPageCreditCommitee // this.tabPageCreditCommitee.Controls.Add(this.flowLayoutPanel7); this.tabPageCreditCommitee.Controls.Add(this.tableLayoutPanel11); resources.ApplyResources(this.tabPageCreditCommitee, "tabPageCreditCommitee"); this.tabPageCreditCommitee.Name = "tabPageCreditCommitee"; // // flowLayoutPanel7 // resources.ApplyResources(this.flowLayoutPanel7, "flowLayoutPanel7"); this.flowLayoutPanel7.Controls.Add(this.btnPrintCreditCommittee); this.flowLayoutPanel7.Controls.Add(this.buttonCreditCommiteeSaveDecision); this.flowLayoutPanel7.Name = "flowLayoutPanel7"; // // btnPrintCreditCommittee // this.btnPrintCreditCommittee.AttachmentPoint = OpenCBS.Reports.AttachmentPoint.CreditCommittee; resources.ApplyResources(this.btnPrintCreditCommittee, "btnPrintCreditCommittee"); this.btnPrintCreditCommittee.Image = global::OpenCBS.GUI.Properties.Resources.bullet_arrow_down; this.btnPrintCreditCommittee.Name = "btnPrintCreditCommittee"; this.btnPrintCreditCommittee.ReportInitializer = null; this.btnPrintCreditCommittee.UseVisualStyleBackColor = true; // // buttonCreditCommiteeSaveDecision // resources.ApplyResources(this.buttonCreditCommiteeSaveDecision, "buttonCreditCommiteeSaveDecision"); this.buttonCreditCommiteeSaveDecision.Name = "buttonCreditCommiteeSaveDecision"; this.buttonCreditCommiteeSaveDecision.Click += new System.EventHandler(this.buttonCreditCommiteeSaveDecision_Click); // // tableLayoutPanel11 // resources.ApplyResources(this.tableLayoutPanel11, "tableLayoutPanel11"); this.tableLayoutPanel11.Controls.Add(this.lblCCStatus, 0, 0); this.tableLayoutPanel11.Controls.Add(this.pnlCCStatus, 1, 0); this.tableLayoutPanel11.Controls.Add(this.labelCreditCommiteeDate, 0, 1); this.tableLayoutPanel11.Controls.Add(this.dateTimePickerCreditCommitee, 1, 1); this.tableLayoutPanel11.Controls.Add(this.labelCreditCommiteeComment, 0, 3); this.tableLayoutPanel11.Controls.Add(this.labelCreditCommiteeCode, 0, 2); this.tableLayoutPanel11.Controls.Add(this.textBoxCreditCommiteeComment, 1, 3); this.tableLayoutPanel11.Controls.Add(this.tBCreditCommitteeCode, 1, 2); this.tableLayoutPanel11.Name = "tableLayoutPanel11"; // // lblCCStatus // resources.ApplyResources(this.lblCCStatus, "lblCCStatus"); this.lblCCStatus.BackColor = System.Drawing.Color.Transparent; this.lblCCStatus.Name = "lblCCStatus"; // // pnlCCStatus // resources.ApplyResources(this.pnlCCStatus, "pnlCCStatus"); this.pnlCCStatus.Controls.Add(this.flowLayoutPanel6); this.pnlCCStatus.Name = "pnlCCStatus"; // // flowLayoutPanel6 // resources.ApplyResources(this.flowLayoutPanel6, "flowLayoutPanel6"); this.flowLayoutPanel6.Controls.Add(this.cmbContractStatus); this.flowLayoutPanel6.Name = "flowLayoutPanel6"; // // cmbContractStatus // this.cmbContractStatus.DisplayMember = "Value"; this.cmbContractStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbContractStatus.FormattingEnabled = true; resources.ApplyResources(this.cmbContractStatus, "cmbContractStatus"); this.cmbContractStatus.Name = "cmbContractStatus"; this.cmbContractStatus.ValueMember = "Key"; // // labelCreditCommiteeDate // resources.ApplyResources(this.labelCreditCommiteeDate, "labelCreditCommiteeDate"); this.labelCreditCommiteeDate.BackColor = System.Drawing.Color.Transparent; this.labelCreditCommiteeDate.Name = "labelCreditCommiteeDate"; // // dateTimePickerCreditCommitee // this.dateTimePickerCreditCommitee.Format = System.Windows.Forms.DateTimePickerFormat.Short; resources.ApplyResources(this.dateTimePickerCreditCommitee, "dateTimePickerCreditCommitee"); this.dateTimePickerCreditCommitee.Name = "dateTimePickerCreditCommitee"; // // labelCreditCommiteeComment // resources.ApplyResources(this.labelCreditCommiteeComment, "labelCreditCommiteeComment"); this.labelCreditCommiteeComment.BackColor = System.Drawing.Color.Transparent; this.labelCreditCommiteeComment.Name = "labelCreditCommiteeComment"; // // labelCreditCommiteeCode // resources.ApplyResources(this.labelCreditCommiteeCode, "labelCreditCommiteeCode"); this.labelCreditCommiteeCode.BackColor = System.Drawing.Color.Transparent; this.labelCreditCommiteeCode.Name = "labelCreditCommiteeCode"; // // textBoxCreditCommiteeComment // resources.ApplyResources(this.textBoxCreditCommiteeComment, "textBoxCreditCommiteeComment"); this.textBoxCreditCommiteeComment.Name = "textBoxCreditCommiteeComment"; // // tBCreditCommitteeCode // resources.ApplyResources(this.tBCreditCommitteeCode, "tBCreditCommitteeCode"); this.tBCreditCommitteeCode.Name = "tBCreditCommitteeCode"; // // tabPageLoanRepayment // this.tabPageLoanRepayment.Controls.Add(this.tabControlRepayments); this.tabPageLoanRepayment.Controls.Add(this.richTextBoxStatus); this.tabPageLoanRepayment.Controls.Add(this.lblLoanStatus); resources.ApplyResources(this.tabPageLoanRepayment, "tabPageLoanRepayment"); this.tabPageLoanRepayment.Name = "tabPageLoanRepayment"; // // tabControlRepayments // this.tabControlRepayments.Controls.Add(this.tabPageRepayments); this.tabControlRepayments.Controls.Add(this.tabPageEvents); resources.ApplyResources(this.tabControlRepayments, "tabControlRepayments"); this.tabControlRepayments.ImageList = this.imageListTab; this.tabControlRepayments.Name = "tabControlRepayments"; this.tabControlRepayments.SelectedIndex = 0; // // tabPageRepayments // this.tabPageRepayments.Controls.Add(this.lvLoansRepayments); this.tabPageRepayments.Controls.Add(this.flowLayoutPanel8); resources.ApplyResources(this.tabPageRepayments, "tabPageRepayments"); this.tabPageRepayments.Name = "tabPageRepayments"; // // lvLoansRepayments // this.lvLoansRepayments.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader1, this.columnHeader2, this.columnHeader3, this.columnHeader4, this.columnHeader5, this.columnHeader6, this.columnHeader7, this.columnHeader8, this.columnHeader9, this.columnHeaderLateDays, this.columnHeaderComment}); resources.ApplyResources(this.lvLoansRepayments, "lvLoansRepayments"); this.lvLoansRepayments.DoubleClickActivation = false; this.lvLoansRepayments.FullRowSelect = true; this.lvLoansRepayments.GridLines = true; this.lvLoansRepayments.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; this.lvLoansRepayments.MultiSelect = false; this.lvLoansRepayments.Name = "lvLoansRepayments"; this.lvLoansRepayments.UseCompatibleStateImageBehavior = false; this.lvLoansRepayments.View = System.Windows.Forms.View.Details; this.lvLoansRepayments.SelectedIndexChanged += new System.EventHandler(this.listViewLoansRepayments_SelectedIndexChanged); // // columnHeader1 // resources.ApplyResources(this.columnHeader1, "columnHeader1"); // // columnHeader2 // resources.ApplyResources(this.columnHeader2, "columnHeader2"); // // columnHeader3 // resources.ApplyResources(this.columnHeader3, "columnHeader3"); // // columnHeader4 // resources.ApplyResources(this.columnHeader4, "columnHeader4"); // // columnHeader5 // resources.ApplyResources(this.columnHeader5, "columnHeader5"); // // columnHeader6 // resources.ApplyResources(this.columnHeader6, "columnHeader6"); // // columnHeader7 // resources.ApplyResources(this.columnHeader7, "columnHeader7"); // // columnHeader8 // resources.ApplyResources(this.columnHeader8, "columnHeader8"); // // columnHeader9 // resources.ApplyResources(this.columnHeader9, "columnHeader9"); // // columnHeaderLateDays // resources.ApplyResources(this.columnHeaderLateDays, "columnHeaderLateDays"); // // columnHeaderComment // resources.ApplyResources(this.columnHeaderComment, "columnHeaderComment"); // // flowLayoutPanel8 // resources.ApplyResources(this.flowLayoutPanel8, "flowLayoutPanel8"); this.flowLayoutPanel8.Controls.Add(this.buttonLoanRepaymentRepay); this.flowLayoutPanel8.Controls.Add(this.buttonLoanReschedule); this.flowLayoutPanel8.Controls.Add(this.buttonAddTranche); this.flowLayoutPanel8.Controls.Add(this.btnWriteOff); this.flowLayoutPanel8.Controls.Add(this.btnPrintLoanRepayment); this.flowLayoutPanel8.Name = "flowLayoutPanel8"; // // buttonLoanRepaymentRepay // resources.ApplyResources(this.buttonLoanRepaymentRepay, "buttonLoanRepaymentRepay"); this.buttonLoanRepaymentRepay.Name = "buttonLoanRepaymentRepay"; this.buttonLoanRepaymentRepay.Click += new System.EventHandler(this.buttonLoanRepaymentRepay_Click); // // buttonLoanReschedule // resources.ApplyResources(this.buttonLoanReschedule, "buttonLoanReschedule"); this.buttonLoanReschedule.Name = "buttonLoanReschedule"; this.buttonLoanReschedule.Click += new System.EventHandler(this.buttonLoanReschedule_Click); // // buttonAddTranche // resources.ApplyResources(this.buttonAddTranche, "buttonAddTranche"); this.buttonAddTranche.Name = "buttonAddTranche"; this.buttonAddTranche.Click += new System.EventHandler(this.buttonAddTranche_Click); // // btnWriteOff // resources.ApplyResources(this.btnWriteOff, "btnWriteOff"); this.btnWriteOff.Name = "btnWriteOff"; this.btnWriteOff.Click += new System.EventHandler(this.btnWriteOff_Click); // // btnPrintLoanRepayment // resources.ApplyResources(this.btnPrintLoanRepayment, "btnPrintLoanRepayment"); this.btnPrintLoanRepayment.Image = global::OpenCBS.GUI.Properties.Resources.bullet_arrow_down; this.btnPrintLoanRepayment.Name = "btnPrintLoanRepayment"; this.btnPrintLoanRepayment.ReportInitializer = null; this.btnPrintLoanRepayment.UseVisualStyleBackColor = true; // // tabPageEvents // this.tabPageEvents.Controls.Add(this.lvEvents); this.tabPageEvents.Controls.Add(this.groupBox1); resources.ApplyResources(this.tabPageEvents, "tabPageEvents"); this.tabPageEvents.Name = "tabPageEvents"; // // lvEvents // this.lvEvents.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader11, this.EntryDate, this.columnHeader12, this.columnHeader13, this.columnHeader14, this.colCommissions, this.colPenalties, this.colOverduePrincipal, this.colOverdueDays, this.columnHeader16, this.columnHeader18, this.ExportedDate, this.colId, this.colNumber, this.columnHeader30, this.colPaymentMethod, this.colCancelDate1, this.colIsDeleted}); resources.ApplyResources(this.lvEvents, "lvEvents"); this.lvEvents.DoubleClickActivation = false; this.lvEvents.FullRowSelect = true; this.lvEvents.GridLines = true; this.lvEvents.Name = "lvEvents"; this.lvEvents.UseCompatibleStateImageBehavior = false; this.lvEvents.View = System.Windows.Forms.View.Details; // // columnHeader11 // resources.ApplyResources(this.columnHeader11, "columnHeader11"); // // EntryDate // resources.ApplyResources(this.EntryDate, "EntryDate"); // // columnHeader12 // resources.ApplyResources(this.columnHeader12, "columnHeader12"); // // columnHeader13 // resources.ApplyResources(this.columnHeader13, "columnHeader13"); // // columnHeader14 // resources.ApplyResources(this.columnHeader14, "columnHeader14"); // // colCommissions // resources.ApplyResources(this.colCommissions, "colCommissions"); // // colPenalties // resources.ApplyResources(this.colPenalties, "colPenalties"); // // colOverduePrincipal // resources.ApplyResources(this.colOverduePrincipal, "colOverduePrincipal"); // // colOverdueDays // resources.ApplyResources(this.colOverdueDays, "colOverdueDays"); // // columnHeader16 // resources.ApplyResources(this.columnHeader16, "columnHeader16"); // // columnHeader18 // resources.ApplyResources(this.columnHeader18, "columnHeader18"); // // ExportedDate // resources.ApplyResources(this.ExportedDate, "ExportedDate"); // // colId // resources.ApplyResources(this.colId, "colId"); // // colNumber // resources.ApplyResources(this.colNumber, "colNumber"); // // columnHeader30 // resources.ApplyResources(this.columnHeader30, "columnHeader30"); // // colPaymentMethod // resources.ApplyResources(this.colPaymentMethod, "colPaymentMethod"); // // colCancelDate1 // resources.ApplyResources(this.colCancelDate1, "colCancelDate1"); // // colIsDeleted // resources.ApplyResources(this.colIsDeleted, "colIsDeleted"); // // groupBox1 // this.groupBox1.Controls.Add(this.btnPrintLoanEvents); this.groupBox1.Controls.Add(this.btnWaiveFee); this.groupBox1.Controls.Add(this.btnDeleteEvent); resources.ApplyResources(this.groupBox1, "groupBox1"); this.groupBox1.Name = "groupBox1"; this.groupBox1.TabStop = false; // // btnPrintLoanEvents // this.btnPrintLoanEvents.BackColor = System.Drawing.SystemColors.Control; resources.ApplyResources(this.btnPrintLoanEvents, "btnPrintLoanEvents"); this.btnPrintLoanEvents.Name = "btnPrintLoanEvents"; this.btnPrintLoanEvents.ReportInitializer = null; this.btnPrintLoanEvents.UseVisualStyleBackColor = false; // // btnWaiveFee // resources.ApplyResources(this.btnWaiveFee, "btnWaiveFee"); this.btnWaiveFee.Name = "btnWaiveFee"; this.btnWaiveFee.Click += new System.EventHandler(this.btnWaiveFee_Click); // // btnDeleteEvent // resources.ApplyResources(this.btnDeleteEvent, "btnDeleteEvent"); this.btnDeleteEvent.Name = "btnDeleteEvent"; this.btnDeleteEvent.Click += new System.EventHandler(this.buttonDeleteEvent_Click); // // imageListTab // this.imageListTab.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListTab.ImageStream"))); this.imageListTab.TransparentColor = System.Drawing.Color.Transparent; this.imageListTab.Images.SetKeyName(0, "client_bouton.ico"); this.imageListTab.Images.SetKeyName(1, "credit_contract_bouton.ico"); this.imageListTab.Images.SetKeyName(2, "edit.ico"); this.imageListTab.Images.SetKeyName(3, "monthly_cash_flow.ico"); this.imageListTab.Images.SetKeyName(4, "repayments.ico"); // // richTextBoxStatus // resources.ApplyResources(this.richTextBoxStatus, "richTextBoxStatus"); this.richTextBoxStatus.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(88)))), ((int)(((byte)(56))))); this.richTextBoxStatus.Name = "richTextBoxStatus"; this.richTextBoxStatus.ReadOnly = true; // // lblLoanStatus // resources.ApplyResources(this.lblLoanStatus, "lblLoanStatus"); this.lblLoanStatus.Name = "lblLoanStatus"; this.lblLoanStatus.Click += new System.EventHandler(this.lblLoanStatus_Click); // // tabPageLoanGuarantees // this.tabPageLoanGuarantees.Controls.Add(this.splitContainer1); resources.ApplyResources(this.tabPageLoanGuarantees, "tabPageLoanGuarantees"); this.tabPageLoanGuarantees.Name = "tabPageLoanGuarantees"; // // tabPageSavingDetails // this.tabPageSavingDetails.Controls.Add(this.tabControlSavingsDetails); this.tabPageSavingDetails.Controls.Add(this.flowLayoutPanel9); this.tabPageSavingDetails.Controls.Add(this.groupBoxSaving); resources.ApplyResources(this.tabPageSavingDetails, "tabPageSavingDetails"); this.tabPageSavingDetails.Name = "tabPageSavingDetails"; // // tabControlSavingsDetails // this.tabControlSavingsDetails.Controls.Add(this.tabPageSavingsAmountsAndFees); this.tabControlSavingsDetails.Controls.Add(this.tabPageSavingsEvents); this.tabControlSavingsDetails.Controls.Add(this.tabPageLoans); this.tabControlSavingsDetails.Controls.Add(this.tabPageSavingsCustomizableFields); this.tabControlSavingsDetails.Controls.Add(this.tpTermDeposit); resources.ApplyResources(this.tabControlSavingsDetails, "tabControlSavingsDetails"); this.tabControlSavingsDetails.Name = "tabControlSavingsDetails"; this.tabControlSavingsDetails.SelectedIndex = 0; // // tabPageSavingsAmountsAndFees // this.tabPageSavingsAmountsAndFees.Controls.Add(this.flowLayoutPanel10); this.tabPageSavingsAmountsAndFees.Controls.Add(this.tlpSBDetails); resources.ApplyResources(this.tabPageSavingsAmountsAndFees, "tabPageSavingsAmountsAndFees"); this.tabPageSavingsAmountsAndFees.Name = "tabPageSavingsAmountsAndFees"; // // flowLayoutPanel10 // resources.ApplyResources(this.flowLayoutPanel10, "flowLayoutPanel10"); this.flowLayoutPanel10.Controls.Add(this.groupBoxSavingBalance); this.flowLayoutPanel10.Controls.Add(this.groupBoxSavingDeposit); this.flowLayoutPanel10.Controls.Add(this.groupBoxSavingWithdraw); this.flowLayoutPanel10.Controls.Add(this.groupBoxSavingTransfer); this.flowLayoutPanel10.Controls.Add(this.gbInterest); this.flowLayoutPanel10.Controls.Add(this.gbDepositInterest); this.flowLayoutPanel10.Name = "flowLayoutPanel10"; // // groupBoxSavingBalance // resources.ApplyResources(this.groupBoxSavingBalance, "groupBoxSavingBalance"); this.groupBoxSavingBalance.Controls.Add(this.tableLayoutPanel12); this.groupBoxSavingBalance.Name = "groupBoxSavingBalance"; this.groupBoxSavingBalance.TabStop = false; // // tableLayoutPanel12 // resources.ApplyResources(this.tableLayoutPanel12, "tableLayoutPanel12"); this.tableLayoutPanel12.Controls.Add(this.lbBalanceMaxValue, 1, 1); this.tableLayoutPanel12.Controls.Add(this.lbBalanceMin, 0, 0); this.tableLayoutPanel12.Controls.Add(this.lbBalanceMinValue, 1, 0); this.tableLayoutPanel12.Controls.Add(this.lbBalanceMax, 0, 1); this.tableLayoutPanel12.Name = "tableLayoutPanel12"; // // lbBalanceMaxValue // resources.ApplyResources(this.lbBalanceMaxValue, "lbBalanceMaxValue"); this.lbBalanceMaxValue.Name = "lbBalanceMaxValue"; // // lbBalanceMin // resources.ApplyResources(this.lbBalanceMin, "lbBalanceMin"); this.lbBalanceMin.Name = "lbBalanceMin"; // // lbBalanceMinValue // resources.ApplyResources(this.lbBalanceMinValue, "lbBalanceMinValue"); this.lbBalanceMinValue.Name = "lbBalanceMinValue"; // // lbBalanceMax // resources.ApplyResources(this.lbBalanceMax, "lbBalanceMax"); this.lbBalanceMax.Name = "lbBalanceMax"; // // groupBoxSavingDeposit // resources.ApplyResources(this.groupBoxSavingDeposit, "groupBoxSavingDeposit"); this.groupBoxSavingDeposit.Controls.Add(this.tableLayoutPanel13); this.groupBoxSavingDeposit.Name = "groupBoxSavingDeposit"; this.groupBoxSavingDeposit.TabStop = false; // // tableLayoutPanel13 // resources.ApplyResources(this.tableLayoutPanel13, "tableLayoutPanel13"); this.tableLayoutPanel13.Controls.Add(this.lbDepositMaxValue, 1, 1); this.tableLayoutPanel13.Controls.Add(this.lbDepositMin, 0, 0); this.tableLayoutPanel13.Controls.Add(this.lbDepositMinValue, 1, 0); this.tableLayoutPanel13.Controls.Add(this.lbDepositmax, 0, 1); this.tableLayoutPanel13.Name = "tableLayoutPanel13"; // // lbDepositMaxValue // resources.ApplyResources(this.lbDepositMaxValue, "lbDepositMaxValue"); this.lbDepositMaxValue.Name = "lbDepositMaxValue"; // // lbDepositMin // resources.ApplyResources(this.lbDepositMin, "lbDepositMin"); this.lbDepositMin.Name = "lbDepositMin"; // // lbDepositMinValue // resources.ApplyResources(this.lbDepositMinValue, "lbDepositMinValue"); this.lbDepositMinValue.Name = "lbDepositMinValue"; // // lbDepositmax // resources.ApplyResources(this.lbDepositmax, "lbDepositmax"); this.lbDepositmax.Name = "lbDepositmax"; // // groupBoxSavingWithdraw // resources.ApplyResources(this.groupBoxSavingWithdraw, "groupBoxSavingWithdraw"); this.groupBoxSavingWithdraw.Controls.Add(this.tableLayoutPanel14); this.groupBoxSavingWithdraw.Name = "groupBoxSavingWithdraw"; this.groupBoxSavingWithdraw.TabStop = false; // // tableLayoutPanel14 // resources.ApplyResources(this.tableLayoutPanel14, "tableLayoutPanel14"); this.tableLayoutPanel14.Controls.Add(this.lbWithdrawMaxValue, 1, 1); this.tableLayoutPanel14.Controls.Add(this.lbWithdrawMin, 0, 0); this.tableLayoutPanel14.Controls.Add(this.lbWithdrawMinValue, 1, 0); this.tableLayoutPanel14.Controls.Add(this.lbWithdrawMax, 0, 1); this.tableLayoutPanel14.Name = "tableLayoutPanel14"; // // lbWithdrawMaxValue // resources.ApplyResources(this.lbWithdrawMaxValue, "lbWithdrawMaxValue"); this.lbWithdrawMaxValue.Name = "lbWithdrawMaxValue"; // // lbWithdrawMin // resources.ApplyResources(this.lbWithdrawMin, "lbWithdrawMin"); this.lbWithdrawMin.Name = "lbWithdrawMin"; // // lbWithdrawMinValue // resources.ApplyResources(this.lbWithdrawMinValue, "lbWithdrawMinValue"); this.lbWithdrawMinValue.Name = "lbWithdrawMinValue"; // // lbWithdrawMax // resources.ApplyResources(this.lbWithdrawMax, "lbWithdrawMax"); this.lbWithdrawMax.Name = "lbWithdrawMax"; // // groupBoxSavingTransfer // resources.ApplyResources(this.groupBoxSavingTransfer, "groupBoxSavingTransfer"); this.groupBoxSavingTransfer.Controls.Add(this.tableLayoutPanel15); this.groupBoxSavingTransfer.Name = "groupBoxSavingTransfer"; this.groupBoxSavingTransfer.TabStop = false; // // tableLayoutPanel15 // resources.ApplyResources(this.tableLayoutPanel15, "tableLayoutPanel15"); this.tableLayoutPanel15.Controls.Add(this.labelSavingTransferMaxValue, 1, 1); this.tableLayoutPanel15.Controls.Add(this.labelSavingTransferMin, 0, 0); this.tableLayoutPanel15.Controls.Add(this.labelSavingTransferMinValue, 1, 0); this.tableLayoutPanel15.Controls.Add(this.labelSavingTransferMax, 0, 1); this.tableLayoutPanel15.Name = "tableLayoutPanel15"; // // labelSavingTransferMaxValue // resources.ApplyResources(this.labelSavingTransferMaxValue, "labelSavingTransferMaxValue"); this.labelSavingTransferMaxValue.Name = "labelSavingTransferMaxValue"; // // labelSavingTransferMin // resources.ApplyResources(this.labelSavingTransferMin, "labelSavingTransferMin"); this.labelSavingTransferMin.Name = "labelSavingTransferMin"; // // labelSavingTransferMinValue // resources.ApplyResources(this.labelSavingTransferMinValue, "labelSavingTransferMinValue"); this.labelSavingTransferMinValue.Name = "labelSavingTransferMinValue"; // // labelSavingTransferMax // resources.ApplyResources(this.labelSavingTransferMax, "labelSavingTransferMax"); this.labelSavingTransferMax.Name = "labelSavingTransferMax"; // // gbInterest // resources.ApplyResources(this.gbInterest, "gbInterest"); this.gbInterest.Controls.Add(this.tableLayoutPanel16); this.gbInterest.Name = "gbInterest"; this.gbInterest.TabStop = false; // // tableLayoutPanel16 // resources.ApplyResources(this.tableLayoutPanel16, "tableLayoutPanel16"); this.tableLayoutPanel16.Controls.Add(this.lbInterestBasedOnValue, 1, 2); this.tableLayoutPanel16.Controls.Add(this.lbInterestAccrual, 0, 0); this.tableLayoutPanel16.Controls.Add(this.lbInterestPostingValue, 1, 1); this.tableLayoutPanel16.Controls.Add(this.lbInterestBasedOn, 0, 2); this.tableLayoutPanel16.Controls.Add(this.lbInterestAccrualValue, 1, 0); this.tableLayoutPanel16.Controls.Add(this.lbInterestPosting, 0, 1); this.tableLayoutPanel16.Name = "tableLayoutPanel16"; // // lbInterestBasedOnValue // resources.ApplyResources(this.lbInterestBasedOnValue, "lbInterestBasedOnValue"); this.lbInterestBasedOnValue.Name = "lbInterestBasedOnValue"; // // lbInterestAccrual // resources.ApplyResources(this.lbInterestAccrual, "lbInterestAccrual"); this.lbInterestAccrual.Name = "lbInterestAccrual"; // // lbInterestPostingValue // resources.ApplyResources(this.lbInterestPostingValue, "lbInterestPostingValue"); this.lbInterestPostingValue.Name = "lbInterestPostingValue"; // // lbInterestBasedOn // resources.ApplyResources(this.lbInterestBasedOn, "lbInterestBasedOn"); this.lbInterestBasedOn.Name = "lbInterestBasedOn"; // // lbInterestAccrualValue // resources.ApplyResources(this.lbInterestAccrualValue, "lbInterestAccrualValue"); this.lbInterestAccrualValue.Name = "lbInterestAccrualValue"; // // lbInterestPosting // resources.ApplyResources(this.lbInterestPosting, "lbInterestPosting"); this.lbInterestPosting.Name = "lbInterestPosting"; // // gbDepositInterest // resources.ApplyResources(this.gbDepositInterest, "gbDepositInterest"); this.gbDepositInterest.Controls.Add(this.tableLayoutPanel17); this.gbDepositInterest.Name = "gbDepositInterest"; this.gbDepositInterest.TabStop = false; // // tableLayoutPanel17 // resources.ApplyResources(this.tableLayoutPanel17, "tableLayoutPanel17"); this.tableLayoutPanel17.Controls.Add(this.lbPeriodicityValue, 1, 1); this.tableLayoutPanel17.Controls.Add(this.lbAccrualDeposit, 0, 0); this.tableLayoutPanel17.Controls.Add(this.lbAccrualDepositValue, 1, 0); this.tableLayoutPanel17.Controls.Add(this.lbPeriodicity, 0, 1); this.tableLayoutPanel17.Name = "tableLayoutPanel17"; // // lbPeriodicityValue // resources.ApplyResources(this.lbPeriodicityValue, "lbPeriodicityValue"); this.lbPeriodicityValue.Name = "lbPeriodicityValue"; // // lbAccrualDeposit // resources.ApplyResources(this.lbAccrualDeposit, "lbAccrualDeposit"); this.lbAccrualDeposit.Name = "lbAccrualDeposit"; // // lbAccrualDepositValue // resources.ApplyResources(this.lbAccrualDepositValue, "lbAccrualDepositValue"); this.lbAccrualDepositValue.Name = "lbAccrualDepositValue"; // // lbPeriodicity // resources.ApplyResources(this.lbPeriodicity, "lbPeriodicity"); this.lbPeriodicity.Name = "lbPeriodicity"; // // tlpSBDetails // resources.ApplyResources(this.tlpSBDetails, "tlpSBDetails"); this.tlpSBDetails.Controls.Add(this.lblIbtFeeMinMax, 2, 7); this.tlpSBDetails.Controls.Add(this.lbTransferFees, 0, 0); this.tlpSBDetails.Controls.Add(this.nudIbtFee, 1, 7); this.tlpSBDetails.Controls.Add(this.lbDepositFees, 0, 1); this.tlpSBDetails.Controls.Add(this.nudTransferFees, 1, 0); this.tlpSBDetails.Controls.Add(this.lbReopenFeesMinMax, 2, 6); this.tlpSBDetails.Controls.Add(this.lbTransferFeesMinMax, 2, 0); this.tlpSBDetails.Controls.Add(this.nudReopenFees, 1, 6); this.tlpSBDetails.Controls.Add(this.lbReopenFees, 0, 6); this.tlpSBDetails.Controls.Add(this.lbDepositFeesMinMax, 2, 1); this.tlpSBDetails.Controls.Add(this.lbAgioFeesMinMax, 2, 5); this.tlpSBDetails.Controls.Add(this.lbChequeDepositFees, 0, 8); this.tlpSBDetails.Controls.Add(this.nudAgioFees, 1, 5); this.tlpSBDetails.Controls.Add(this.nudChequeDepositFees, 1, 8); this.tlpSBDetails.Controls.Add(this.lbAgioFees, 0, 5); this.tlpSBDetails.Controls.Add(this.lbOverdraftFeesMinMax, 2, 4); this.tlpSBDetails.Controls.Add(this.lblChequeDepositFeesMinMax, 2, 8); this.tlpSBDetails.Controls.Add(this.lbCloseFees, 0, 2); this.tlpSBDetails.Controls.Add(this.nudOverdraftFees, 1, 4); this.tlpSBDetails.Controls.Add(this.nudCloseFees, 1, 2); this.tlpSBDetails.Controls.Add(this.lbOverdraftFees, 0, 4); this.tlpSBDetails.Controls.Add(this.lbCloseFeesMinMax, 2, 2); this.tlpSBDetails.Controls.Add(this.lbManagementFeesMinMax, 2, 3); this.tlpSBDetails.Controls.Add(this.lbManagementFees, 0, 3); this.tlpSBDetails.Controls.Add(this.nudManagementFees, 1, 3); this.tlpSBDetails.Controls.Add(this.nudDepositFees, 1, 1); this.tlpSBDetails.Controls.Add(this.lblInterBranchTransfer, 0, 7); this.tlpSBDetails.Name = "tlpSBDetails"; // // lblIbtFeeMinMax // this.lblIbtFeeMinMax.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.lblIbtFeeMinMax, "lblIbtFeeMinMax"); this.lblIbtFeeMinMax.Name = "lblIbtFeeMinMax"; // // lbTransferFees // resources.ApplyResources(this.lbTransferFees, "lbTransferFees"); this.lbTransferFees.Name = "lbTransferFees"; // // nudIbtFee // resources.ApplyResources(this.nudIbtFee, "nudIbtFee"); this.nudIbtFee.Maximum = new decimal(new int[] { 3, 0, 0, 0}); this.nudIbtFee.Name = "nudIbtFee"; // // lbDepositFees // resources.ApplyResources(this.lbDepositFees, "lbDepositFees"); this.lbDepositFees.Name = "lbDepositFees"; // // nudTransferFees // resources.ApplyResources(this.nudTransferFees, "nudTransferFees"); this.nudTransferFees.Maximum = new decimal(new int[] { 3, 0, 0, 0}); this.nudTransferFees.Name = "nudTransferFees"; // // lbReopenFeesMinMax // resources.ApplyResources(this.lbReopenFeesMinMax, "lbReopenFeesMinMax"); this.lbReopenFeesMinMax.Name = "lbReopenFeesMinMax"; // // lbTransferFeesMinMax // resources.ApplyResources(this.lbTransferFeesMinMax, "lbTransferFeesMinMax"); this.lbTransferFeesMinMax.Name = "lbTransferFeesMinMax"; // // nudReopenFees // resources.ApplyResources(this.nudReopenFees, "nudReopenFees"); this.nudReopenFees.Maximum = new decimal(new int[] { 3, 0, 0, 0}); this.nudReopenFees.Name = "nudReopenFees"; // // lbReopenFees // resources.ApplyResources(this.lbReopenFees, "lbReopenFees"); this.lbReopenFees.Name = "lbReopenFees"; // // lbDepositFeesMinMax // resources.ApplyResources(this.lbDepositFeesMinMax, "lbDepositFeesMinMax"); this.lbDepositFeesMinMax.Name = "lbDepositFeesMinMax"; // // lbAgioFeesMinMax // resources.ApplyResources(this.lbAgioFeesMinMax, "lbAgioFeesMinMax"); this.lbAgioFeesMinMax.Name = "lbAgioFeesMinMax"; // // lbChequeDepositFees // resources.ApplyResources(this.lbChequeDepositFees, "lbChequeDepositFees"); this.lbChequeDepositFees.Name = "lbChequeDepositFees"; // // nudAgioFees // resources.ApplyResources(this.nudAgioFees, "nudAgioFees"); this.nudAgioFees.Maximum = new decimal(new int[] { 3, 0, 0, 0}); this.nudAgioFees.Name = "nudAgioFees"; // // nudChequeDepositFees // resources.ApplyResources(this.nudChequeDepositFees, "nudChequeDepositFees"); this.nudChequeDepositFees.Maximum = new decimal(new int[] { 3, 0, 0, 0}); this.nudChequeDepositFees.Name = "nudChequeDepositFees"; // // lbAgioFees // resources.ApplyResources(this.lbAgioFees, "lbAgioFees"); this.lbAgioFees.Name = "lbAgioFees"; // // lbOverdraftFeesMinMax // resources.ApplyResources(this.lbOverdraftFeesMinMax, "lbOverdraftFeesMinMax"); this.lbOverdraftFeesMinMax.Name = "lbOverdraftFeesMinMax"; // // lblChequeDepositFeesMinMax // this.lblChequeDepositFeesMinMax.BackColor = System.Drawing.Color.Transparent; resources.ApplyResources(this.lblChequeDepositFeesMinMax, "lblChequeDepositFeesMinMax"); this.lblChequeDepositFeesMinMax.Name = "lblChequeDepositFeesMinMax"; // // lbCloseFees // resources.ApplyResources(this.lbCloseFees, "lbCloseFees"); this.lbCloseFees.Name = "lbCloseFees"; // // nudOverdraftFees // resources.ApplyResources(this.nudOverdraftFees, "nudOverdraftFees"); this.nudOverdraftFees.Maximum = new decimal(new int[] { 3, 0, 0, 0}); this.nudOverdraftFees.Name = "nudOverdraftFees"; // // nudCloseFees // resources.ApplyResources(this.nudCloseFees, "nudCloseFees"); this.nudCloseFees.Maximum = new decimal(new int[] { 3, 0, 0, 0}); this.nudCloseFees.Name = "nudCloseFees"; // // lbOverdraftFees // resources.ApplyResources(this.lbOverdraftFees, "lbOverdraftFees"); this.lbOverdraftFees.Name = "lbOverdraftFees"; // // lbCloseFeesMinMax // resources.ApplyResources(this.lbCloseFeesMinMax, "lbCloseFeesMinMax"); this.lbCloseFeesMinMax.Name = "lbCloseFeesMinMax"; // // lbManagementFeesMinMax // resources.ApplyResources(this.lbManagementFeesMinMax, "lbManagementFeesMinMax"); this.lbManagementFeesMinMax.Name = "lbManagementFeesMinMax"; // // lbManagementFees // resources.ApplyResources(this.lbManagementFees, "lbManagementFees"); this.lbManagementFees.Name = "lbManagementFees"; // // nudManagementFees // resources.ApplyResources(this.nudManagementFees, "nudManagementFees"); this.nudManagementFees.Maximum = new decimal(new int[] { 3, 0, 0, 0}); this.nudManagementFees.Name = "nudManagementFees"; // // nudDepositFees // resources.ApplyResources(this.nudDepositFees, "nudDepositFees"); this.nudDepositFees.Maximum = new decimal(new int[] { 3, 0, 0, 0}); this.nudDepositFees.Name = "nudDepositFees"; // // lblInterBranchTransfer // resources.ApplyResources(this.lblInterBranchTransfer, "lblInterBranchTransfer"); this.lblInterBranchTransfer.BackColor = System.Drawing.Color.Transparent; this.lblInterBranchTransfer.Name = "lblInterBranchTransfer"; // // tabPageSavingsEvents // this.tabPageSavingsEvents.Controls.Add(this.lvSavingEvent); resources.ApplyResources(this.tabPageSavingsEvents, "tabPageSavingsEvents"); this.tabPageSavingsEvents.Name = "tabPageSavingsEvents"; // // lvSavingEvent // this.lvSavingEvent.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader21, this.columnHeader26, this.columnHeader22, this.columnHeader23, this.columnHeader27, this.columnHeader15, this.columnHeader28, this.columnHeader29, this.columnHeader24, this.colCancelDate}); resources.ApplyResources(this.lvSavingEvent, "lvSavingEvent"); this.lvSavingEvent.FullRowSelect = true; this.lvSavingEvent.GridLines = true; this.lvSavingEvent.Name = "lvSavingEvent"; this.lvSavingEvent.UseCompatibleStateImageBehavior = false; this.lvSavingEvent.View = System.Windows.Forms.View.Details; this.lvSavingEvent.MouseClick += new System.Windows.Forms.MouseEventHandler(this.listViewSavingEvent_MouseClick); // // columnHeader21 // resources.ApplyResources(this.columnHeader21, "columnHeader21"); // // columnHeader26 // resources.ApplyResources(this.columnHeader26, "columnHeader26"); // // columnHeader22 // resources.ApplyResources(this.columnHeader22, "columnHeader22"); // // columnHeader23 // resources.ApplyResources(this.columnHeader23, "columnHeader23"); // // columnHeader27 // resources.ApplyResources(this.columnHeader27, "columnHeader27"); // // columnHeader15 // resources.ApplyResources(this.columnHeader15, "columnHeader15"); // // columnHeader28 // resources.ApplyResources(this.columnHeader28, "columnHeader28"); // // columnHeader29 // resources.ApplyResources(this.columnHeader29, "columnHeader29"); // // columnHeader24 // resources.ApplyResources(this.columnHeader24, "columnHeader24"); // // colCancelDate // resources.ApplyResources(this.colCancelDate, "colCancelDate"); // // tabPageLoans // this.tabPageLoans.Controls.Add(this.olvLoans); resources.ApplyResources(this.tabPageLoans, "tabPageLoans"); this.tabPageLoans.Name = "tabPageLoans"; // // olvLoans // this.olvLoans.AllColumns.Add(this.olvColumnContractCode); this.olvLoans.AllColumns.Add(this.olvColumnStatus); this.olvLoans.AllColumns.Add(this.olvColumnAmount); this.olvLoans.AllColumns.Add(this.olvColumnOLB); this.olvLoans.AllColumns.Add(this.olvColumnCreationDate); this.olvLoans.AllColumns.Add(this.olvColumnStratDate); this.olvLoans.AllColumns.Add(this.olvColumnCloseDate); this.olvLoans.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.olvColumnContractCode, this.olvColumnStatus, this.olvColumnAmount, this.olvColumnOLB, this.olvColumnCreationDate, this.olvColumnStratDate, this.olvColumnCloseDate}); resources.ApplyResources(this.olvLoans, "olvLoans"); this.olvLoans.FullRowSelect = true; this.olvLoans.GridLines = true; this.olvLoans.HideSelection = false; this.olvLoans.Name = "olvLoans"; this.olvLoans.SelectedColumnTint = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); this.olvLoans.ShowGroups = false; this.olvLoans.UseCompatibleStateImageBehavior = false; this.olvLoans.View = System.Windows.Forms.View.Details; // // olvColumnContractCode // this.olvColumnContractCode.AspectName = "Code"; resources.ApplyResources(this.olvColumnContractCode, "olvColumnContractCode"); // // olvColumnStatus // this.olvColumnStatus.AspectName = "ContractStatus"; resources.ApplyResources(this.olvColumnStatus, "olvColumnStatus"); // // olvColumnAmount // this.olvColumnAmount.AspectName = "Amount"; this.olvColumnAmount.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right; resources.ApplyResources(this.olvColumnAmount, "olvColumnAmount"); // // olvColumnOLB // this.olvColumnOLB.AspectName = "OLB"; this.olvColumnOLB.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right; resources.ApplyResources(this.olvColumnOLB, "olvColumnOLB"); // // olvColumnCreationDate // this.olvColumnCreationDate.AspectName = "CreationDate"; resources.ApplyResources(this.olvColumnCreationDate, "olvColumnCreationDate"); // // olvColumnStratDate // this.olvColumnStratDate.AspectName = "StartDate"; resources.ApplyResources(this.olvColumnStratDate, "olvColumnStratDate"); // // olvColumnCloseDate // this.olvColumnCloseDate.AspectName = "CloseDate"; resources.ApplyResources(this.olvColumnCloseDate, "olvColumnCloseDate"); // // tabPageSavingsCustomizableFields // resources.ApplyResources(this.tabPageSavingsCustomizableFields, "tabPageSavingsCustomizableFields"); this.tabPageSavingsCustomizableFields.Name = "tabPageSavingsCustomizableFields"; // // tpTermDeposit // this.tpTermDeposit.Controls.Add(this.tlpTermDeposit); resources.ApplyResources(this.tpTermDeposit, "tpTermDeposit"); this.tpTermDeposit.Name = "tpTermDeposit"; // // tlpTermDeposit // resources.ApplyResources(this.tlpTermDeposit, "tlpTermDeposit"); this.tlpTermDeposit.Controls.Add(this.lblNumberOfPeriods, 0, 0); this.tlpTermDeposit.Controls.Add(this.nudNumberOfPeriods, 1, 0); this.tlpTermDeposit.Controls.Add(this.lblLimitOfTermDepositPeriod, 2, 0); this.tlpTermDeposit.Controls.Add(this.tbTargetAccount2, 1, 2); this.tlpTermDeposit.Controls.Add(this.cmbRollover2, 1, 1); this.tlpTermDeposit.Controls.Add(this.lbRollover2, 0, 1); this.tlpTermDeposit.Controls.Add(this.btSearchContract2, 2, 2); this.tlpTermDeposit.Controls.Add(this.lblTermTransferToAccount, 0, 2); this.tlpTermDeposit.Name = "tlpTermDeposit"; // // lblNumberOfPeriods // resources.ApplyResources(this.lblNumberOfPeriods, "lblNumberOfPeriods"); this.lblNumberOfPeriods.Name = "lblNumberOfPeriods"; // // nudNumberOfPeriods // resources.ApplyResources(this.nudNumberOfPeriods, "nudNumberOfPeriods"); this.nudNumberOfPeriods.Name = "nudNumberOfPeriods"; // // lblLimitOfTermDepositPeriod // resources.ApplyResources(this.lblLimitOfTermDepositPeriod, "lblLimitOfTermDepositPeriod"); this.lblLimitOfTermDepositPeriod.Name = "lblLimitOfTermDepositPeriod"; // // tbTargetAccount2 // resources.ApplyResources(this.tbTargetAccount2, "tbTargetAccount2"); this.tbTargetAccount2.Name = "tbTargetAccount2"; // // cmbRollover2 // this.cmbRollover2.DisplayMember = "id"; this.cmbRollover2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbRollover2.FormattingEnabled = true; resources.ApplyResources(this.cmbRollover2, "cmbRollover2"); this.cmbRollover2.Name = "cmbRollover2"; this.cmbRollover2.ValueMember = "rollover"; this.cmbRollover2.SelectedIndexChanged += new System.EventHandler(this.cmbRollover2_SelectedIndexChanged); // // lbRollover2 // resources.ApplyResources(this.lbRollover2, "lbRollover2"); this.lbRollover2.Name = "lbRollover2"; // // btSearchContract2 // resources.ApplyResources(this.btSearchContract2, "btSearchContract2"); this.btSearchContract2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(88)))), ((int)(((byte)(56))))); this.btSearchContract2.Name = "btSearchContract2"; this.btSearchContract2.UseVisualStyleBackColor = true; this.btSearchContract2.Click += new System.EventHandler(this.btSearchContract_Click); // // lblTermTransferToAccount // resources.ApplyResources(this.lblTermTransferToAccount, "lblTermTransferToAccount"); this.lblTermTransferToAccount.Name = "lblTermTransferToAccount"; // // flowLayoutPanel9 // resources.ApplyResources(this.flowLayoutPanel9, "flowLayoutPanel9"); this.flowLayoutPanel9.Controls.Add(this.btSavingsUpdate); this.flowLayoutPanel9.Controls.Add(this.buttonSaveSaving); this.flowLayoutPanel9.Controls.Add(this.buttonFirstDeposit); this.flowLayoutPanel9.Controls.Add(this.buttonCloseSaving); this.flowLayoutPanel9.Controls.Add(this.buttonReopenSaving); this.flowLayoutPanel9.Controls.Add(this.pnlSavingsButtons); this.flowLayoutPanel9.Controls.Add(this.btnPrintSavings); this.flowLayoutPanel9.Name = "flowLayoutPanel9"; // // btSavingsUpdate // resources.ApplyResources(this.btSavingsUpdate, "btSavingsUpdate"); this.btSavingsUpdate.Name = "btSavingsUpdate"; this.btSavingsUpdate.Click += new System.EventHandler(this.btSavingsUpdate_Click); // // buttonSaveSaving // resources.ApplyResources(this.buttonSaveSaving, "buttonSaveSaving"); this.buttonSaveSaving.Name = "buttonSaveSaving"; this.buttonSaveSaving.Click += new System.EventHandler(this.buttonSaveSaving_Click); // // buttonFirstDeposit // resources.ApplyResources(this.buttonFirstDeposit, "buttonFirstDeposit"); this.buttonFirstDeposit.Name = "buttonFirstDeposit"; this.buttonFirstDeposit.Click += new System.EventHandler(this.buttonFirstDeposit_Click); // // buttonCloseSaving // resources.ApplyResources(this.buttonCloseSaving, "buttonCloseSaving"); this.buttonCloseSaving.Name = "buttonCloseSaving"; this.buttonCloseSaving.Click += new System.EventHandler(this.buttonCloseSaving_Click); // // buttonReopenSaving // resources.ApplyResources(this.buttonReopenSaving, "buttonReopenSaving"); this.buttonReopenSaving.Name = "buttonReopenSaving"; this.buttonReopenSaving.Click += new System.EventHandler(this.buttonReopenSaving_Click); // // pnlSavingsButtons // resources.ApplyResources(this.pnlSavingsButtons, "pnlSavingsButtons"); this.pnlSavingsButtons.Controls.Add(this.buttonSavingsOperations); this.pnlSavingsButtons.Controls.Add(this.btCancelLastSavingEvent); this.pnlSavingsButtons.Name = "pnlSavingsButtons"; // // buttonSavingsOperations // this.buttonSavingsOperations.Image = global::OpenCBS.GUI.Properties.Resources.bullet_arrow_down; resources.ApplyResources(this.buttonSavingsOperations, "buttonSavingsOperations"); this.buttonSavingsOperations.Name = "buttonSavingsOperations"; this.buttonSavingsOperations.Click += new System.EventHandler(this.buttonSavingsOperations_Click); // // btCancelLastSavingEvent // resources.ApplyResources(this.btCancelLastSavingEvent, "btCancelLastSavingEvent"); this.btCancelLastSavingEvent.Name = "btCancelLastSavingEvent"; this.btCancelLastSavingEvent.Click += new System.EventHandler(this.btCancelLastSavingEvent_Click); // // btnPrintSavings // resources.ApplyResources(this.btnPrintSavings, "btnPrintSavings"); this.btnPrintSavings.Image = global::OpenCBS.GUI.Properties.Resources.bullet_arrow_down; this.btnPrintSavings.Name = "btnPrintSavings"; this.btnPrintSavings.ReportInitializer = null; this.btnPrintSavings.UseVisualStyleBackColor = true; // // groupBoxSaving // resources.ApplyResources(this.groupBoxSaving, "groupBoxSaving"); this.groupBoxSaving.Controls.Add(this.tableLayoutPanel5); this.groupBoxSaving.Name = "groupBoxSaving"; this.groupBoxSaving.TabStop = false; // // tableLayoutPanel5 // resources.ApplyResources(this.tableLayoutPanel5, "tableLayoutPanel5"); this.tableLayoutPanel5.Controls.Add(this.lbSavingAvBalanceValue, 5, 1); this.tableLayoutPanel5.Controls.Add(this.lBSavingAvBalance, 4, 1); this.tableLayoutPanel5.Controls.Add(this.lbEntryFeesMinMax, 2, 2); this.tableLayoutPanel5.Controls.Add(this.lbInitialAmountMinMax, 2, 1); this.tableLayoutPanel5.Controls.Add(this.lbEntryFees, 0, 2); this.tableLayoutPanel5.Controls.Add(this.labelInitialAmount, 0, 1); this.tableLayoutPanel5.Controls.Add(this.nudEntryFees, 1, 2); this.tableLayoutPanel5.Controls.Add(this.nudDownInitialAmount, 1, 1); this.tableLayoutPanel5.Controls.Add(this.label1, 0, 3); this.tableLayoutPanel5.Controls.Add(this.label9, 0, 0); this.tableLayoutPanel5.Controls.Add(this.lbSavingBalanceValue, 5, 0); this.tableLayoutPanel5.Controls.Add(this.lBSavingBalance, 4, 0); this.tableLayoutPanel5.Controls.Add(this.tBSavingCode, 1, 0); this.tableLayoutPanel5.Controls.Add(this.cmbSavingsOfficer, 1, 3); this.tableLayoutPanel5.Controls.Add(this.labelInterestRate, 3, 2); this.tableLayoutPanel5.Controls.Add(this.nudDownInterestRate, 4, 2); this.tableLayoutPanel5.Controls.Add(this.lbWithdrawFees, 3, 3); this.tableLayoutPanel5.Controls.Add(this.nudWithdrawFees, 4, 3); this.tableLayoutPanel5.Controls.Add(this.lbInterestRateMinMax, 5, 2); this.tableLayoutPanel5.Controls.Add(this.lbWithdrawFeesMinMax, 5, 3); this.tableLayoutPanel5.Name = "tableLayoutPanel5"; // // lbSavingAvBalanceValue // resources.ApplyResources(this.lbSavingAvBalanceValue, "lbSavingAvBalanceValue"); this.lbSavingAvBalanceValue.Name = "lbSavingAvBalanceValue"; // // lBSavingAvBalance // resources.ApplyResources(this.lBSavingAvBalance, "lBSavingAvBalance"); this.lBSavingAvBalance.Name = "lBSavingAvBalance"; // // lbEntryFeesMinMax // resources.ApplyResources(this.lbEntryFeesMinMax, "lbEntryFeesMinMax"); this.lbEntryFeesMinMax.Name = "lbEntryFeesMinMax"; // // lbInitialAmountMinMax // resources.ApplyResources(this.lbInitialAmountMinMax, "lbInitialAmountMinMax"); this.lbInitialAmountMinMax.Name = "lbInitialAmountMinMax"; // // lbEntryFees // resources.ApplyResources(this.lbEntryFees, "lbEntryFees"); this.lbEntryFees.Name = "lbEntryFees"; // // labelInitialAmount // resources.ApplyResources(this.labelInitialAmount, "labelInitialAmount"); this.labelInitialAmount.BackColor = System.Drawing.Color.Transparent; this.labelInitialAmount.Name = "labelInitialAmount"; // // nudEntryFees // resources.ApplyResources(this.nudEntryFees, "nudEntryFees"); this.nudEntryFees.Maximum = new decimal(new int[] { 3, 0, 0, 0}); this.nudEntryFees.Name = "nudEntryFees"; // // nudDownInitialAmount // resources.ApplyResources(this.nudDownInitialAmount, "nudDownInitialAmount"); this.nudDownInitialAmount.Maximum = new decimal(new int[] { 3, 0, 0, 0}); this.nudDownInitialAmount.Name = "nudDownInitialAmount"; // // label1 // resources.ApplyResources(this.label1, "label1"); this.label1.BackColor = System.Drawing.Color.Transparent; this.label1.Name = "label1"; // // label9 // resources.ApplyResources(this.label9, "label9"); this.label9.BackColor = System.Drawing.Color.Transparent; this.label9.Name = "label9"; // // lbSavingBalanceValue // resources.ApplyResources(this.lbSavingBalanceValue, "lbSavingBalanceValue"); this.lbSavingBalanceValue.Name = "lbSavingBalanceValue"; // // lBSavingBalance // resources.ApplyResources(this.lBSavingBalance, "lBSavingBalance"); this.lBSavingBalance.Name = "lBSavingBalance"; // // tBSavingCode // this.tableLayoutPanel5.SetColumnSpan(this.tBSavingCode, 2); resources.ApplyResources(this.tBSavingCode, "tBSavingCode"); this.tBSavingCode.Name = "tBSavingCode"; this.tBSavingCode.ReadOnly = true; // // cmbSavingsOfficer // this.tableLayoutPanel5.SetColumnSpan(this.cmbSavingsOfficer, 2); this.cmbSavingsOfficer.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbSavingsOfficer.FormattingEnabled = true; resources.ApplyResources(this.cmbSavingsOfficer, "cmbSavingsOfficer"); this.cmbSavingsOfficer.Name = "cmbSavingsOfficer"; // // labelInterestRate // resources.ApplyResources(this.labelInterestRate, "labelInterestRate"); this.labelInterestRate.BackColor = System.Drawing.Color.Transparent; this.labelInterestRate.Name = "labelInterestRate"; // // nudDownInterestRate // this.nudDownInterestRate.DecimalPlaces = 4; this.nudDownInterestRate.Increment = new decimal(new int[] { 1, 0, 0, 262144}); resources.ApplyResources(this.nudDownInterestRate, "nudDownInterestRate"); this.nudDownInterestRate.Maximum = new decimal(new int[] { 3, 0, 0, 0}); this.nudDownInterestRate.Name = "nudDownInterestRate"; // // lbWithdrawFees // resources.ApplyResources(this.lbWithdrawFees, "lbWithdrawFees"); this.lbWithdrawFees.Name = "lbWithdrawFees"; // // nudWithdrawFees // resources.ApplyResources(this.nudWithdrawFees, "nudWithdrawFees"); this.nudWithdrawFees.Maximum = new decimal(new int[] { 3, 0, 0, 0}); this.nudWithdrawFees.Name = "nudWithdrawFees"; // // lbInterestRateMinMax // resources.ApplyResources(this.lbInterestRateMinMax, "lbInterestRateMinMax"); this.lbInterestRateMinMax.Name = "lbInterestRateMinMax"; // // lbWithdrawFeesMinMax // resources.ApplyResources(this.lbWithdrawFeesMinMax, "lbWithdrawFeesMinMax"); this.lbWithdrawFeesMinMax.Name = "lbWithdrawFeesMinMax"; // // tabPageContracts // this.tabPageContracts.Controls.Add(this.splitContainerContracts); resources.ApplyResources(this.tabPageContracts, "tabPageContracts"); this.tabPageContracts.Name = "tabPageContracts"; // // menuBtnAddSavingOperation // this.menuBtnAddSavingOperation.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.savingDepositToolStripMenuItem, this.savingWithdrawToolStripMenuItem, this.savingTransferToolStripMenuItem, this.specialOperationToolStripMenuItem}); this.menuBtnAddSavingOperation.Name = "contextMenuStrip1"; resources.ApplyResources(this.menuBtnAddSavingOperation, "menuBtnAddSavingOperation"); // // savingDepositToolStripMenuItem // this.savingDepositToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(88)))), ((int)(((byte)(56))))); this.savingDepositToolStripMenuItem.Name = "savingDepositToolStripMenuItem"; resources.ApplyResources(this.savingDepositToolStripMenuItem, "savingDepositToolStripMenuItem"); this.savingDepositToolStripMenuItem.Click += new System.EventHandler(this.buttonSavingDeposit_Click); // // savingWithdrawToolStripMenuItem // this.savingWithdrawToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(88)))), ((int)(((byte)(56))))); this.savingWithdrawToolStripMenuItem.Name = "savingWithdrawToolStripMenuItem"; resources.ApplyResources(this.savingWithdrawToolStripMenuItem, "savingWithdrawToolStripMenuItem"); this.savingWithdrawToolStripMenuItem.Click += new System.EventHandler(this.buttonSavingWithDraw_Click); // // savingTransferToolStripMenuItem // this.savingTransferToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(88)))), ((int)(((byte)(56))))); this.savingTransferToolStripMenuItem.Name = "savingTransferToolStripMenuItem"; resources.ApplyResources(this.savingTransferToolStripMenuItem, "savingTransferToolStripMenuItem"); this.savingTransferToolStripMenuItem.Click += new System.EventHandler(this.savingTransferToolStripMenuItem_Click); // // specialOperationToolStripMenuItem // this.specialOperationToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(88)))), ((int)(((byte)(56))))); this.specialOperationToolStripMenuItem.Name = "specialOperationToolStripMenuItem"; resources.ApplyResources(this.specialOperationToolStripMenuItem, "specialOperationToolStripMenuItem"); this.specialOperationToolStripMenuItem.Click += new System.EventHandler(this.specialOperationToolStripMenuItem_Click); // // olvColumnSACExportedBalance // this.olvColumnSACExportedBalance.AspectName = "Id"; this.olvColumnSACExportedBalance.IsVisible = false; resources.ApplyResources(this.olvColumnSACExportedBalance, "olvColumnSACExportedBalance"); // // olvColumnLACExportedBalance // this.olvColumnLACExportedBalance.AspectName = "Id"; this.olvColumnLACExportedBalance.IsVisible = false; resources.ApplyResources(this.olvColumnLACExportedBalance, "olvColumnLACExportedBalance"); // // panel2 // this.panel2.Controls.Add(this.tableLayoutPanel2); resources.ApplyResources(this.panel2, "panel2"); this.panel2.Name = "panel2"; // // tableLayoutPanel2 // resources.ApplyResources(this.tableLayoutPanel2, "tableLayoutPanel2"); this.tableLayoutPanel2.Name = "tableLayoutPanel2"; // // labelTitleRepayment // resources.ApplyResources(this.labelTitleRepayment, "labelTitleRepayment"); this.labelTitleRepayment.Name = "labelTitleRepayment"; // // buttonPrintSchedule // this.buttonPrintSchedule.BackColor = System.Drawing.Color.Gainsboro; resources.ApplyResources(this.buttonPrintSchedule, "buttonPrintSchedule"); this.buttonPrintSchedule.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(88)))), ((int)(((byte)(56))))); this.buttonPrintSchedule.Name = "buttonPrintSchedule"; this.buttonPrintSchedule.UseVisualStyleBackColor = false; // // buttonReschedule // this.buttonReschedule.BackColor = System.Drawing.Color.Gainsboro; resources.ApplyResources(this.buttonReschedule, "buttonReschedule"); this.buttonReschedule.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(88)))), ((int)(((byte)(56))))); this.buttonReschedule.Name = "buttonReschedule"; this.buttonReschedule.UseVisualStyleBackColor = false; // // buttonRepay // this.buttonRepay.BackColor = System.Drawing.Color.Gainsboro; resources.ApplyResources(this.buttonRepay, "buttonRepay"); this.buttonRepay.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(88)))), ((int)(((byte)(56))))); this.buttonRepay.Name = "buttonRepay"; this.buttonRepay.UseVisualStyleBackColor = false; // // columnHeaderDate // resources.ApplyResources(this.columnHeaderDate, "columnHeaderDate"); // // columnHeaderType // resources.ApplyResources(this.columnHeaderType, "columnHeaderType"); // // columnHeaderPrincipal // resources.ApplyResources(this.columnHeaderPrincipal, "columnHeaderPrincipal"); // // columnHeaderInterest // resources.ApplyResources(this.columnHeaderInterest, "columnHeaderInterest"); // // columnHeaderFees // resources.ApplyResources(this.columnHeaderFees, "columnHeaderFees"); // // columnHeader10 // resources.ApplyResources(this.columnHeader10, "columnHeader10"); // // tableLayoutPanel3 // resources.ApplyResources(this.tableLayoutPanel3, "tableLayoutPanel3"); this.tableLayoutPanel3.Name = "tableLayoutPanel3"; // // buttonLoanDisbursement // resources.ApplyResources(this.buttonLoanDisbursement, "buttonLoanDisbursement"); this.buttonLoanDisbursement.Name = "buttonLoanDisbursement"; // // labelExchangeRate // resources.ApplyResources(this.labelExchangeRate, "labelExchangeRate"); this.labelExchangeRate.Name = "labelExchangeRate"; // // contextMenuStripPackage // this.contextMenuStripPackage.Name = "contextMenuStrip1"; this.contextMenuStripPackage.ShowImageMargin = false; resources.ApplyResources(this.contextMenuStripPackage, "contextMenuStripPackage"); // // toolStripSeparatorCopy // this.toolStripSeparatorCopy.Name = "toolStripSeparatorCopy"; resources.ApplyResources(this.toolStripSeparatorCopy, "toolStripSeparatorCopy"); // // toolStripMenuItemEditComment // this.toolStripMenuItemEditComment.Name = "toolStripMenuItemEditComment"; resources.ApplyResources(this.toolStripMenuItemEditComment, "toolStripMenuItemEditComment"); this.toolStripMenuItemEditComment.Click += new System.EventHandler(this.toolStripMenuItemEditComment_Click); // // toolStripMenuItemCancelPending // this.toolStripMenuItemCancelPending.Name = "toolStripMenuItemCancelPending"; resources.ApplyResources(this.toolStripMenuItemCancelPending, "toolStripMenuItemCancelPending"); this.toolStripMenuItemCancelPending.Click += new System.EventHandler(this.toolStripMenuItemCancelPending_Click); // // toolStripMenuItemConfirmPending // this.toolStripMenuItemConfirmPending.Name = "toolStripMenuItemConfirmPending"; resources.ApplyResources(this.toolStripMenuItemConfirmPending, "toolStripMenuItemConfirmPending"); this.toolStripMenuItemConfirmPending.Click += new System.EventHandler(this.toolStripMenuItemConfirmPending_Click); // // menuCollateralProducts // this.menuCollateralProducts.Name = "menuCollateralProducts"; resources.ApplyResources(this.menuCollateralProducts, "menuCollateralProducts"); // // menuPendingSavingEvents // this.menuPendingSavingEvents.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuItemConfirmPendingSavingEvent, this.menuItemCancelPendingSavingEvent}); this.menuPendingSavingEvents.Name = "menuPendingSavingEvents"; resources.ApplyResources(this.menuPendingSavingEvents, "menuPendingSavingEvents"); // // menuItemConfirmPendingSavingEvent // this.menuItemConfirmPendingSavingEvent.Name = "menuItemConfirmPendingSavingEvent"; resources.ApplyResources(this.menuItemConfirmPendingSavingEvent, "menuItemConfirmPendingSavingEvent"); this.menuItemConfirmPendingSavingEvent.Click += new System.EventHandler(this.menuItemConfirmPendingSavingEvent_Click); // // menuItemCancelPendingSavingEvent // this.menuItemCancelPendingSavingEvent.Name = "menuItemCancelPendingSavingEvent"; resources.ApplyResources(this.menuItemCancelPendingSavingEvent, "menuItemCancelPendingSavingEvent"); this.menuItemCancelPendingSavingEvent.Click += new System.EventHandler(this.menuItemCancelPendingSavingEvent_Click); // // ClientForm // resources.ApplyResources(this, "$this"); this.Controls.Add(this.tabControlPerson); this.Name = "ClientForm"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnClosing); this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ClientForm_FormClosed); this.Load += new System.EventHandler(this.ClientForm_Load); this.Controls.SetChildIndex(this.tabControlPerson, 0); this.splitContainer10.Panel1.ResumeLayout(false); this.splitContainer10.Panel1.PerformLayout(); this.splitContainer10.Panel2.ResumeLayout(false); this.splitContainer10.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownProjectJobs)).EndInit(); this.gBProjectFinancialPlan.ResumeLayout(false); this.gBProjectFinancialPlan.PerformLayout(); this.splitContainer11.Panel1.ResumeLayout(false); this.splitContainer11.Panel2.ResumeLayout(false); this.splitContainer11.ResumeLayout(false); this.gBProjectFollowUp.ResumeLayout(false); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel1.PerformLayout(); this.splitContainer1.Panel2.ResumeLayout(false); this.splitContainer1.Panel2.PerformLayout(); this.splitContainer1.ResumeLayout(false); this.panel3.ResumeLayout(false); this.panel3.PerformLayout(); this.pnlGuarantorButtons.ResumeLayout(false); this.pnlGuarantorButtons.PerformLayout(); this.pnlCollateralButtons.ResumeLayout(false); this.splitContainerContracts.Panel1.ResumeLayout(false); this.splitContainerContracts.Panel2.ResumeLayout(false); this.splitContainerContracts.ResumeLayout(false); this.splitContainer3.Panel2.ResumeLayout(false); this.splitContainer3.ResumeLayout(false); this.splitContainer4.ResumeLayout(false); this.splitContainer6.ResumeLayout(false); this.tabControlPerson.ResumeLayout(false); this.tabPageProject.ResumeLayout(false); this.tableLayoutPanel1.ResumeLayout(false); this.groupBoxProjectDetails.ResumeLayout(false); this.groupBoxProjectDetails.PerformLayout(); this.panel1.ResumeLayout(false); this.tabControlProject.ResumeLayout(false); this.tabPageProjectLoans.ResumeLayout(false); this.pnlLoans.ResumeLayout(false); this.pnlLoans.PerformLayout(); this.flowLayoutPanel1.ResumeLayout(false); this.tabPageProjectAnalyses.ResumeLayout(false); this.tabPageProjectAnalyses.PerformLayout(); this.tabPageCorporate.ResumeLayout(false); this.tabPageFollowUp.ResumeLayout(false); this.tabPageLoansDetails.ResumeLayout(false); this.tabPageLoansDetails.PerformLayout(); this.tclLoanDetails.ResumeLayout(false); this.tabPageInstallments.ResumeLayout(false); this.flowLayoutPanel2.ResumeLayout(false); this.gbxLoanDetails.ResumeLayout(false); this.gbxLoanDetails.PerformLayout(); this.tableLayoutPanel4.ResumeLayout(false); this.tableLayoutPanel4.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownLoanGracePeriod)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudLoanNbOfInstallments)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudLoanAmount)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudInterestRate)).EndInit(); this.tabPageAdvancedSettings.ResumeLayout(false); this.tabPageAdvancedSettings.PerformLayout(); this.tableLayoutPanel6.ResumeLayout(false); this.tableLayoutPanel6.PerformLayout(); this.flowLayoutPanel5.ResumeLayout(false); this.flowLayoutPanel5.PerformLayout(); this.groupBoxAnticipatedRepaymentPenalties.ResumeLayout(false); this.groupBoxAnticipatedRepaymentPenalties.PerformLayout(); this.tableLayoutPanel7.ResumeLayout(false); this.tableLayoutPanel7.PerformLayout(); this.groupBoxLoanLateFees.ResumeLayout(false); this.groupBoxLoanLateFees.PerformLayout(); this.tableLayoutPanel8.ResumeLayout(false); this.tableLayoutPanel8.PerformLayout(); this.groupBoxEntryFees.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.numEntryFees)).EndInit(); this.groupBox2.ResumeLayout(false); this.tableLayoutPanel10.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.numCompulsoryAmountPercent)).EndInit(); this.tableLayoutPanel9.ResumeLayout(false); this.tableLayoutPanel9.PerformLayout(); this.tabPageCreditCommitee.ResumeLayout(false); this.tabPageCreditCommitee.PerformLayout(); this.flowLayoutPanel7.ResumeLayout(false); this.tableLayoutPanel11.ResumeLayout(false); this.tableLayoutPanel11.PerformLayout(); this.pnlCCStatus.ResumeLayout(false); this.pnlCCStatus.PerformLayout(); this.flowLayoutPanel6.ResumeLayout(false); this.tabPageLoanRepayment.ResumeLayout(false); this.tabControlRepayments.ResumeLayout(false); this.tabPageRepayments.ResumeLayout(false); this.tabPageRepayments.PerformLayout(); this.flowLayoutPanel8.ResumeLayout(false); this.tabPageEvents.ResumeLayout(false); this.groupBox1.ResumeLayout(false); this.tabPageLoanGuarantees.ResumeLayout(false); this.tabPageSavingDetails.ResumeLayout(false); this.tabPageSavingDetails.PerformLayout(); this.tabControlSavingsDetails.ResumeLayout(false); this.tabPageSavingsAmountsAndFees.ResumeLayout(false); this.tabPageSavingsAmountsAndFees.PerformLayout(); this.flowLayoutPanel10.ResumeLayout(false); this.flowLayoutPanel10.PerformLayout(); this.groupBoxSavingBalance.ResumeLayout(false); this.groupBoxSavingBalance.PerformLayout(); this.tableLayoutPanel12.ResumeLayout(false); this.tableLayoutPanel12.PerformLayout(); this.groupBoxSavingDeposit.ResumeLayout(false); this.groupBoxSavingDeposit.PerformLayout(); this.tableLayoutPanel13.ResumeLayout(false); this.tableLayoutPanel13.PerformLayout(); this.groupBoxSavingWithdraw.ResumeLayout(false); this.groupBoxSavingWithdraw.PerformLayout(); this.tableLayoutPanel14.ResumeLayout(false); this.tableLayoutPanel14.PerformLayout(); this.groupBoxSavingTransfer.ResumeLayout(false); this.groupBoxSavingTransfer.PerformLayout(); this.tableLayoutPanel15.ResumeLayout(false); this.tableLayoutPanel15.PerformLayout(); this.gbInterest.ResumeLayout(false); this.gbInterest.PerformLayout(); this.tableLayoutPanel16.ResumeLayout(false); this.tableLayoutPanel16.PerformLayout(); this.gbDepositInterest.ResumeLayout(false); this.gbDepositInterest.PerformLayout(); this.tableLayoutPanel17.ResumeLayout(false); this.tableLayoutPanel17.PerformLayout(); this.tlpSBDetails.ResumeLayout(false); this.tlpSBDetails.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudIbtFee)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudTransferFees)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudReopenFees)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudAgioFees)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudChequeDepositFees)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudOverdraftFees)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudCloseFees)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudManagementFees)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudDepositFees)).EndInit(); this.tabPageSavingsEvents.ResumeLayout(false); this.tabPageLoans.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.olvLoans)).EndInit(); this.tpTermDeposit.ResumeLayout(false); this.tlpTermDeposit.ResumeLayout(false); this.tlpTermDeposit.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudNumberOfPeriods)).EndInit(); this.flowLayoutPanel9.ResumeLayout(false); this.flowLayoutPanel9.PerformLayout(); this.pnlSavingsButtons.ResumeLayout(false); this.groupBoxSaving.ResumeLayout(false); this.groupBoxSaving.PerformLayout(); this.tableLayoutPanel5.ResumeLayout(false); this.tableLayoutPanel5.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudEntryFees)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudDownInitialAmount)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudDownInterestRate)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudWithdrawFees)).EndInit(); this.tabPageContracts.ResumeLayout(false); this.menuBtnAddSavingOperation.ResumeLayout(false); this.panel2.ResumeLayout(false); this.menuPendingSavingEvents.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
public void Dispose() { ReleaseHandle(); _owner = null; }
private void removeItems(ListViewEx list) { ListView.ListViewItemCollection items = list.Items; for (int i = items.Count - 1; i >= 0; i--) if (items[i].Checked) items[i].Checked = false; else items.RemoveAt(i); }
private void UC_ListViewEx_Load(object sender, EventArgs e) { listViewEx.Width = m_ListViewWidth; listViewEx.Height = m_ListViewHeight; //listViewEx.ColumnWidthChanged +=new ColumnWidthChangedEventHandler(listViewEx_ColumnWidthChanged); LoadListControlData(); HideColumn(); iColumnCount = listViewEx.Columns.Count; listViewEx.ColumnWidthChanged += new ColumnWidthChangedEventHandler(listViewEx_ColumnWidthChanged); refreshListView(); m_lvEx = listViewEx; }
private List<Data> getCurrentPageDatas(ListViewEx listview, int max) { var list = new List<Data>(); if (listview.DataItems.Count <= max) { list = listview.DataItems; } else { var p = listview.DataItems.Count / max; p = listview.DataItems.Count % max == 0 ? p : p + 1; var si = (p - listview.Page) * max; var cnt = listview.DataItems.Count; var last = (si + max) > cnt ? cnt : (si + max); for (int i = si; i < last; i++) { list.Add(listview.DataItems[i]); } } return list; }
/// <summary> /// 通过listview 空间显示案件编号信息 /// </summary> /// <param name="regNoList"></param> /// <param name="listView"></param> private void ShowListView(IList<EY_RegNo_DI> regNoList,ListViewEx listView) { listView.Items.Clear(); ListView.ListViewItemCollection collection = new ListView.ListViewItemCollection(listView); foreach (EY_RegNo_DI t in regNoList) { ListViewItem lv = new ListViewItem(t.toArray()); collection.Add(lv); } }
public HeaderHandler(ListViewEx parent) { m_Parent = parent; IntPtr h = new IntPtr(WinApi.SendMessage(parent.Handle, (0x1000 + 31), IntPtr.Zero, IntPtr.Zero)); if (h != IntPtr.Zero) AssignHandle(h); }
private void listViewEx_ColumnWidthChanged(object sender, ColumnWidthChangedEventArgs e) { if (listViewEx.Columns.Count != iColumnCount) { iColumnCount = listViewEx.Columns.Count; refreshListView(); m_lvEx = listViewEx; } }
/// <summary> Default constructor. </summary> public FListViewHeader( ListViewEx InParent ) { Parent = InParent; // Get the header control window. IntPtr HeaderWindow = ListViewWin32.SendMessage( Parent.Handle, ListViewWin32.LVM_GETHEADER, IntPtr.Zero, IntPtr.Zero ); AssignHandle( HeaderWindow ); // Only allow tooltips if data is valid. bAllowTooltips = Parent.ColumnsTooltips.Count == Parent.Columns.Count; // Assign tooltip to the parent control. HeaderToolTip.SetToolTip( Parent, "ListViewEx" ); }
private void ScrollControl(ref ListViewEx objControl, ref int intDirection) { const int WM_SCROLL = 0x115; object iParam = null; SendMessage(objControl.Handle.ToInt32(), WM_SCROLL, intDirection, ref iParam); }