The code is quite simple. I have currently created my own save dialog. I use
Code: Select all
StiOptions.Engine.GlobalEvents.SavingReportInDesigner += this.SaveReportTemplateClicked;
to intercept the event to show my customized dialog once a user has clicked on save report.
This works fine
However the problem is I do not know what event to intercept to show my Load dialog.
Code: Select all
StiOptions.Engine.GlobalEvents.LoadedReportInDesigner += this.LoadReportTemplateClicked;
This fires only when a document has loaded. Therfore my question is "What global event should I use to display my custom load dialog?"