linyimin
发表于 2024-8-2 18:14:26
我安装最新的版,这个没有创建报表相关界面了,这个是什么原因?
Felix.Li
发表于 2024-8-2 18:25:10
您尝试执行一下这个:
在AR的安装目录:\VisualStudio\
可以集成VS。
或者其实都可以直接跑一个对应版本的Demo项目,也不用下载
https://github.com/activereports
linyimin
发表于 2024-8-13 11:27:04
public void RefreshReport()
{
// m_strCurReport = System.Windows.Forms.Application.StartupPath + "\\Report\\ReportTemplate\\" + strTemplateName;
m_strCurReport = m_strTemplatePath + m_strReportName;
if (!System.IO.File.Exists(m_strCurReport))
{
m_strCurReport = m_strTemplatePath + "EmptyView.rdlx";
}
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);
}
)
);
Dispatcher.BeginInvoke(DispatcherPriority.Background,
(NoArgDelegate)delegate { UpdateColorInner("页面缩略图"); });
}
低版本是使用这种方式集成,升级到最新版本,相关类型没有了,能提供一下最新的版本ActiveReports 18使用以上方式集成代码吗?谢谢
Eden.Sun
发表于 2024-8-13 16:15:00
linyimin 发表于 2024-8-13 11:27
public void RefreshReport()
{
// m_strCurReport = System.Windows.Forms.Application.StartupPat ...
您好,感觉您这个已经不是图片的问题了,咱们可以开一个新帖子来看咱们的其他的问题。
您的这段代码,看不太明白是干什么。AR12 到 AR18 的跨度太大,这个我们也不太清楚。您可以根据您的功能在AR18的文档里面找找:
https://developer.mescius.com/activereportsnet/docs/latest/online/samples.html