找回密码
 立即注册

QQ登录

只需一步,快速开始

linyimin
注册会员   /  发表于:2024-8-2 18:14:26
21#
  我安装最新的版,这个没有创建报表相关界面了,这个是什么原因?

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
回复 使用道具 举报
Felix.LiWyn认证
超级版主   /  发表于:2024-8-2 18:25:10
22#
您尝试执行一下这个:


在AR的安装目录:\VisualStudio\
可以集成VS。

或者其实都可以直接跑一个对应版本的Demo项目,也不用下载
https://github.com/activereports

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
回复 使用道具 举报
linyimin
注册会员   /  发表于:2024-8-13 11:27:04
23#
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.SunWyn认证
超级版主   /  发表于:2024-8-13 16:15:00
24#
linyimin 发表于 2024-8-13 11:27
public void RefreshReport()
                {
                        // m_strCurReport = System.Windows.Forms.Application.StartupPat ...

您好,感觉您这个已经不是图片的问题了,咱们可以开一个新帖子来看咱们的其他的问题。

您的这段代码,看不太明白是干什么。AR12   到 AR18 的跨度太大,这个我们也不太清楚。您可以根据您的功能在AR18的文档里面找找:
https://developer.mescius.com/ac ... online/samples.html
回复 使用道具 举报
123
您需要登录后才可以回帖 登录 | 立即注册
返回顶部