[Quantproject-developers] QuantProject/b5_Presentation/Reporting/WindowsForm Report.cs,1.12,1.13
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2005-06-07 13:54:55
|
Update of /cvsroot/quantproject/QuantProject/b5_Presentation/Reporting/WindowsForm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18436/b5_Presentation/Reporting/WindowsForm Modified Files: Report.cs Log Message: Added the AccountReport property Index: Report.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b5_Presentation/Reporting/WindowsForm/Report.cs,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Report.cs 4 Jun 2005 15:17:32 -0000 1.12 --- Report.cs 7 Jun 2005 13:54:42 -0000 1.13 *************** *** 47,50 **** --- 47,60 ---- private SaveFileDialog saveFileDialog; + public AccountReport AccountReport + { + get + { + AccountReport returnValue = this.accountReport; + if ( this.accountReport == null ) + throw new Exception( "The AccountReport has not been created yet!" ); + return returnValue; + } + } public ReportGrid TransactionGrid { *************** *** 63,66 **** --- 73,77 ---- this.account = this.accountReport.Account; this.initializeComponent(); + this.create_populateForm(); } |