[Quantproject-developers] QuantProject/b5_Presentation/Reporting/WindowsForm Report.cs, 1.17, 1.18
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-01-27 02:35:19
|
Update of /cvsroot/quantproject/QuantProject/b5_Presentation/Reporting/WindowsForm In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv23549/b5_Presentation/Reporting/WindowsForm Modified Files: Report.cs Log Message: Now the accountReport description is used for: - the title of the report's form - the default file name for the save dialogs Index: Report.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b5_Presentation/Reporting/WindowsForm/Report.cs,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Report.cs 31 May 2006 14:31:32 -0000 1.17 --- Report.cs 27 Jan 2008 02:35:15 -0000 1.18 *************** *** 132,135 **** --- 132,136 ---- this.Width = 700; this.Height = 500; + this.Text = this.accountReport.Description; this.reportTabControl = new ReportTabControl( this.accountReport , showBenchmark ); *************** *** 239,242 **** --- 240,245 ---- //menu item clicked by the user this.saveFileDialog.CheckPathExists = true; + + this.saveFileDialog.FileName = this.Text; } |