[Quantproject-developers] QuantDownloader/Downloader Downloader.csproj,1.25,1.26 Main.cs,1.8,1.9
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2004-12-01 22:54:10
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23933/Downloader Modified Files: Downloader.csproj Main.cs Log Message: Updated TickerViewer (now it's possible to modify the database directly through the form) Index: Main.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/Main.cs,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Main.cs 17 Apr 2004 14:16:29 -0000 1.8 --- Main.cs 1 Dec 2004 22:54:01 -0000 1.9 *************** *** 1,3 **** --- 1,4 ---- using System; + using System.Data; using System.Drawing; using System.Collections; *************** *** 5,8 **** --- 6,10 ---- using System.Windows.Forms; using QuantProject.Applications.Downloader.TickerSelectors; + using QuantProject.Data.Selectors; namespace QuantProject.Applications.Downloader *************** *** 216,220 **** { Application.Run(new Principale()); //togli il commento per riavere il downloader ! // Application.Run(new QuotesEditor( "RYVYX" )); // Application.Run(new TestScpl()); } --- 218,239 ---- { Application.Run(new Principale()); //togli il commento per riavere il downloader ! /*TickerSelector mySelector1 = ! new TickerSelector(SelectionType.Liquidity, false, "NSDQ100", new DateTime(2003,1,1), ! new DateTime(2003,6,30), 15); ! TickerSelector mySelector2 = ! new TickerSelector(SelectionType.AverageCloseToOpenPerformance, false, "NSDQ100", new DateTime(2003,1,1), ! new DateTime(2003,6,30), 15); ! //System.Collections.Hashtable ht = ADT.ExtendedDataTable.GetCommonValues(mySelector1.GetTableOfSelectedTickers(), ! // mySelector2.GetTableOfSelectedTickers(), ! // 0, 0); ! ! DataTable table = TickerSelector.GetTableOfCommonTickers(mySelector1.GetTableOfSelectedTickers(), ! mySelector2.GetTableOfSelectedTickers()); ! ! foreach(DataRow row in table.Rows) ! { ! Console.WriteLine((string)row[0]); ! }*/ ! // Application.Run(new QuotesEditor( "RYVYX" )); // Application.Run(new TestScpl()); } Index: Downloader.csproj =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/Downloader.csproj,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** Downloader.csproj 1 Dec 2004 15:48:38 -0000 1.25 --- Downloader.csproj 1 Dec 2004 22:54:01 -0000 1.26 *************** *** 131,135 **** Name = "scpl" AssemblyName = "scpl" ! HintPath = "bin\Debug\scpl.dll" /> </References> --- 131,135 ---- Name = "scpl" AssemblyName = "scpl" ! HintPath = "..\..\lib\scpl.dll" /> </References> *************** *** 305,308 **** --- 305,313 ---- /> <File + RelPath = "TickerSelectors\TickerViewer.resx" + DependentUpon = "TickerViewer.cs" + BuildAction = "EmbeddedResource" + /> + <File RelPath = "TickerSelectors\TickerViewerMenu.cs" SubType = "Component" |