[Quantproject-developers] QuantDownloader/Downloader TickerGroupsViewer.cs,1.2,1.3
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2004-03-21 20:04:28
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9942/Downloader Modified Files: TickerGroupsViewer.cs Log Message: Fixed bugs: now it's possible to select tickers and perform operations like downloading or validating quotes Index: TickerGroupsViewer.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/TickerGroupsViewer.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TickerGroupsViewer.cs 9 Feb 2004 17:21:06 -0000 1.2 --- TickerGroupsViewer.cs 21 Mar 2004 19:54:15 -0000 1.3 *************** *** 148,155 **** { DataTable tableOfSelectedTickers = new DataTable(); ! tableOfSelectedTickers.Columns.Add("tickerID"); ! tableOfSelectedTickers.Columns["tickerID"].Unique = true; ! tableOfSelectedTickers.Columns.Add("tickerCompanyName"); ! foreach(ListViewItem item in this.listViewGroupsAndTickers.SelectedItems) { if(item.Tag is System.String) --- 148,158 ---- { DataTable tableOfSelectedTickers = new DataTable(); ! DataColumn firstColumn = new DataColumn("tiTicker", System.Type.GetType("System.String")); ! DataColumn secondColumn = new DataColumn("tiCompanyName", System.Type.GetType("System.String")); ! firstColumn.Unique = true; ! tableOfSelectedTickers.Columns.Add(firstColumn); ! tableOfSelectedTickers.Columns.Add(secondColumn); ! ! foreach(ListViewItem item in this.listViewGroupsAndTickers.SelectedItems) { if(item.Tag is System.String) *************** *** 163,167 **** else // the item references to a node in the treeView : ! // so it represents a group of tickers { MessageBox.Show("NOT IMPLEMENTED YET"); --- 166,170 ---- else // the item references to a node in the treeView : ! // so it stands for a group of tickers { MessageBox.Show("NOT IMPLEMENTED YET"); |