this.Dispatcher.Invoke(
new Action(
delegate
{
FileInfo info = new System.IO.FileInfo(m_strCurReport);
this.m_curPage = new GrapeCity.ActiveReports.PageReport(info);
PageDocument runtime = new PageDocument(this.m_curPage);
this.m_curPage.Document.LocateDataSource += new GrapeCity.ActiveReports.LocateDataSourceEventHandler(locateData);
GetParameterData(runtime.Parameters);
this.m_pageReportViewer.LoadDocument(m_curPage.Document);
}
)
);