[Quantproject-developers] QuantDownloader/Downloader/TickerSelectors TickerGroupsListViewMenu.cs,1.2
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2004-05-11 22:06:52
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/TickerSelectors In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22169/Downloader/TickerSelectors Modified Files: TickerGroupsListViewMenu.cs TickerGroupsViewer.cs Log Message: Code has been cleaned and some methods were renamed. TickerDownloader has been rivisited Index: TickerGroupsViewer.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/TickerSelectors/TickerGroupsViewer.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TickerGroupsViewer.cs 25 Apr 2004 17:24:50 -0000 1.2 --- TickerGroupsViewer.cs 11 May 2004 22:06:41 -0000 1.3 *************** *** 137,140 **** --- 137,151 ---- } + /// <summary> + /// It gets the selected items in the list view controls + /// </summary> + public ListView.SelectedListViewItemCollection SelectedListViewItems + { + get + { + return this.listViewGroupsAndTickers.SelectedItems; + } + } + private void addTickersToTable(DataTable tableToFill) { Index: TickerGroupsListViewMenu.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/TickerSelectors/TickerGroupsListViewMenu.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TickerGroupsListViewMenu.cs 25 Apr 2004 17:24:49 -0000 1.2 --- TickerGroupsListViewMenu.cs 11 May 2004 22:06:41 -0000 1.3 *************** *** 54,58 **** private void removeSelectedItems(object sender, System.EventArgs e) { ! MessageBox.Show(".... NOT IMPLEMENTED YET .... "); } --- 54,58 ---- private void removeSelectedItems(object sender, System.EventArgs e) { ! //; } |