[Quantproject-developers] QuantDownloader/Downloader/QuotesEditor ValidationGridTabPage.cs,NONE,1.1
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2004-03-21 17:02:50
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/QuotesEditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3437 Added Files: ValidationGridTabPage.cs Log Message: Validation TabPage that will contain a DataGrid containing suspicious quotes. --- NEW FILE: ValidationGridTabPage.cs --- using System; using System.Data; using System.Windows.Forms; namespace QuantProject.Applications.Downloader { /// <summary> /// Validation TabPage that will contain a DataGrid containing /// suspicious quotes. /// </summary> public class ValidationGridTabPage : TabPage { protected ValidationDataGrid dataGrid; public ValidationGridTabPage() { // // TODO: Add constructor logic here // } public int SetGrid() { this.dataGrid.DataBind(); return ((DataView)this.dataGrid.DataSource).Count; } } } |