[Quantproject-developers] QuantProject/b7_Scripts/CallingReportsForRunScripts ShowReportFromFile.cs,
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2005-02-15 19:13:52
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/CallingReportsForRunScripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23621/b7_Scripts/CallingReportsForRunScripts Modified Files: ShowReportFromFile.cs Log Message: It is now possible to load a serialized report (saved into a file) Index: ShowReportFromFile.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/CallingReportsForRunScripts/ShowReportFromFile.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ShowReportFromFile.cs 12 Feb 2005 19:13:50 -0000 1.2 --- ShowReportFromFile.cs 15 Feb 2005 19:13:41 -0000 1.3 *************** *** 62,67 **** AccountReport accountReport = (AccountReport)ObjectArchiver.Extract(serializedAccountReportFullPath); ! ///TODO: ... ! } catch(System.Exception ex) --- 62,67 ---- AccountReport accountReport = (AccountReport)ObjectArchiver.Extract(serializedAccountReportFullPath); ! Report report = new Report(accountReport); ! report.Show(); } catch(System.Exception ex) |