DontAskSaveReport vs IsModified
Posted: Wed Mar 04, 2015 10:39 am
When doing this:
...then IsModified is always false. Is this a bug or by design?
A workaround is to hook to the StiDesigner.SavingReport event and set args.Processed = true
Code: Select all
StiDesigner.DontAskSaveReport = true;
_stiReport.Design();
Console.WriteLine(_stiReport.IsModified);
A workaround is to hook to the StiDesigner.SavingReport event and set args.Processed = true