[Quantproject-developers] QuantDownloader/Downloader/OpenTickDownloader/UserForms OTWebDownloader.
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2008-08-01 20:04:45
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader/UserForms In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3403/OpenTickDownloader/UserForms Modified Files: OTWebDownloader.cs Log Message: Fixed minor bug in OT Web Downloader form: minutes can be set to 0 now. Index: OTWebDownloader.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader/UserForms/OTWebDownloader.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** OTWebDownloader.cs 20 Jul 2008 20:38:39 -0000 1.3 --- OTWebDownloader.cs 29 Jul 2008 22:38:17 -0000 1.4 *************** *** 321,329 **** 0, 0}); - this.fromMin.Minimum = new decimal(new int[] { - 1, - 0, - 0, - 0}); this.fromMin.Name = "fromMin"; this.fromMin.Size = new System.Drawing.Size(45, 20); --- 321,324 ---- *************** *** 603,606 **** --- 598,602 ---- new DownloadingCompletedEventHandler(this.refreshForm_atDownloadedCompleted); this.buttonDownloadQuotesOfSelectedTickers.Enabled = false; + //tickerDownloader.DownloadTickers(); this.downloadThread = new Thread( tickerDownloader.DownloadTickers ); this.downloadThread.Start(); *************** *** 630,636 **** private void refreshForm_atDownloadedStarted(object sender, DownloadingStartedEventArgs eventArgs) { ! this.textForStartingDownloadingTimeLabel = ! "Downloading started at: " + eventArgs.StartingDateTime.ToString(); ! this.downloadingInProgress = true; } private void refreshForm_atDownloadedCompleted(object sender, DownloadingCompletedEventArgs eventArgs) --- 626,632 ---- private void refreshForm_atDownloadedStarted(object sender, DownloadingStartedEventArgs eventArgs) { ! this.textForStartingDownloadingTimeLabel = ! "Downloading started at: " + eventArgs.StartingDateTime.ToString(); ! this.downloadingInProgress = true; } private void refreshForm_atDownloadedCompleted(object sender, DownloadingCompletedEventArgs eventArgs) |