[Quantproject-developers] QuantProject/b5_Presentation/Reporting/WindowsForm Report.cs,1.9,1.10
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2005-04-14 18:36:08
|
Update of /cvsroot/quantproject/QuantProject/b5_Presentation/Reporting/WindowsForm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21073/b5_Presentation/Reporting/WindowsForm Modified Files: Report.cs Log Message: Show method is called instead of ShowDialog: so, the form is not modal anymore. Index: Report.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b5_Presentation/Reporting/WindowsForm/Report.cs,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Report.cs 13 Mar 2005 23:34:40 -0000 1.9 --- Report.cs 14 Apr 2005 18:35:58 -0000 1.10 *************** *** 78,82 **** numDaysForInterval , endDateTime , buyAndHoldTicker ); this.show_populateForm(); ! base.ShowDialog(); } public new void Show() --- 78,82 ---- numDaysForInterval , endDateTime , buyAndHoldTicker ); this.show_populateForm(); ! base.Show(); } public new void Show() *************** *** 85,89 **** this.show_populateForm(); ! base.ShowDialog(); } /// <summary> --- 85,89 ---- this.show_populateForm(); ! base.Show(); } /// <summary> |