[Quantproject-developers] QuantProject/b5_Presentation/Reporting/WindowsForm Report.cs,1.7,1.8
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2005-02-15 19:09:53
|
Update of /cvsroot/quantproject/QuantProject/b5_Presentation/Reporting/WindowsForm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22232/b5_Presentation/Reporting/WindowsForm Modified Files: Report.cs Log Message: Added serializable attribute (to Glauco: remember next time to add this attribute! ) Index: Report.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b5_Presentation/Reporting/WindowsForm/Report.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Report.cs 13 Feb 2005 12:15:42 -0000 1.7 --- Report.cs 15 Feb 2005 19:09:05 -0000 1.8 *************** *** 80,83 **** --- 80,90 ---- base.ShowDialog(); } + public new void Show() + { + if(this.accountReport != null) + this.show_populateForm(); + + base.ShowDialog(); + } /// <summary> /// Clears the existing account report, so that a new one can be created |