如何在 MS-Access 97 中以编程方式访问报告工具栏

发布于 2024-09-14 02:19:09 字数 240 浏览 4 评论 0原文

我在 Access 97 中有一个项目,我必须添加将报表导出到 Excel 的功能。当您在程序中运行报告时,已经可以导出到 Word 和 Excel,尽管 Excel 仅包含某些标题。

通过研究,我发现我也许可以使用 OutputTo 使其工作,但不幸的是我无法尝试此操作,因为我无法在报告视图中找到工具栏的代码。我找到了真实的报告。我从未使用过任何版本的 Access,所以我只需要添加一个宏还是必须以不同的方式处理此问题?我找不到代码所在的位置。

I have a project in Access 97 that I have to add the ability to export a report to excel. When you run the report within the program there is already the ability to export to word and to excel though the excel only some of the headers.

Through research I found that I might be able to get it to work using OutputTo but unfortuneately I can't attempt this because I am unable to find the code for the toolbar in the report view. I found the actual report. I have never used Access of any version so do I just need to add a macro or do I have to approach this a different way? I can't find where the code is already located.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对不⑦ 2024-09-21 02:19:09

可以将宏与 TransferSpreadsheet 操作一起使用,也可以使用 VBA 代码将其导出,如下所示:

    DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, sQryExport, sPath & "\xls\" & sPrefix & sRptGroup & ".xls"

    DoCmd.OpenReport "rpt_summary", acViewPreview, , "reportGroupID='" & sRptGroup & "'", acHidden
    DoCmd.OutputTo acOutputReport, "rpt_summary", "Rich Text Format (*.rtf)", sPath & "\rtf\" & sPrefix & sRptGroup & ".rtf"
    DoCmd.Close acReport, "rpt_summary"

either use a macro with the TransferSpreadsheet action, or export it with VBA code like this:

    DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, sQryExport, sPath & "\xls\" & sPrefix & sRptGroup & ".xls"

    DoCmd.OpenReport "rpt_summary", acViewPreview, , "reportGroupID='" & sRptGroup & "'", acHidden
    DoCmd.OutputTo acOutputReport, "rpt_summary", "Rich Text Format (*.rtf)", sPath & "\rtf\" & sPrefix & sRptGroup & ".rtf"
    DoCmd.Close acReport, "rpt_summary"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文