将 MS Access 报告导入 C#

你能帮我解决一个小问题吗?这将不胜感激 :)

所以我有一个正在转换为 C# 的访问应用程序。它实际上非常庞大,并且由于访问非常有限,因此使用了多个访问数据库。现在我遇到的一个问题是用 C# 做报告。我知道可以从 Access 将报告导出为 XML 格式,但问题是客户想要一个不支持 SQL Server 报告服务的 SQL Server Express 版本(据我所知)。那么无论如何都可以将这些报告导入到 C# 中吗?或者至少只有布局?

我正在为 Visual Studio 2017 使用 Microsoft RDLC 报告设计器

谢谢你的时间!

编辑:或者有什么替代方法可以用来用 C# 构建报告?


慕田峪7331174
浏览 178回答 3
3回答

慕姐4208626

简短的回答是No。Access 报告在每一件事上都非常特定于 Access,与 RDLC 非常不同。这是我和我的一个同事为在 .Net 中创建的报告所做的示例,该示例完全模仿了旧示例 Northwind 数据库的报告:北风网

红颜莎娜

在今天之前我从未听说过这个,但这听起来很有趣。我做了一些谷歌搜索,并遇到了这个。MainForm 类是应用程序,是开始对代码进行自上而下评估的好地方。此应用程序仅执行三项任务。当浏览...按钮被按下时,它会将报告加载到列表框中。隐藏收缩复制代码// we have a valid file name so we now need to// populate the list box with available reportslistBoxReports.Items.Clear();// create an application object.MsAccess.Application app = new MsAccess.Application();// open the access database file.app.OpenCurrentDatabase(dlg.FileName, false, "");string sql = "SELECT [Name] FROM MSysObjects WHERE Type = -32764";dao.Database db = app.CurrentDb();// query the database for all the reports.  all this data is// contained in the MSysObejcts table which is invisible through// the table listing in access.dao.Recordset rs = db.OpenRecordset(sql, Type.Missing, Type.Missing, Type.Missing);// go through and add all the reports to the list box.while (!rs.EOF) {    listBoxReports.Items.Add(rs.Fields[0].Value);    rs.MoveNext();}// clean uprs.Close();rs = null;db.Close();db = null;app.CloseCurrentDatabase();app = null;单击“打印...”按钮后,将打开所选报告并将其发送到默认打印机。隐藏复制代码string report = listBoxReports.SelectedItem.ToString();// create an application object.MsAccess.Application app = new MsAccess.Application();// open the access database file.app.OpenCurrentDatabase(textBoxAccess.Text.Trim(), false, "");app.Visible = false;// open the reportapp.DoCmd.OpenReport(report,     Microsoft.Office.Interop.Access.AcView.acViewPreview, Type.Missing,     Type.Missing, MsAccess.AcWindowMode.acWindowNormal, Type.Missing);// print the report to the default printer.app.DoCmd.PrintOut(MsAccess.AcPrintRange.acPrintAll, Type.Missing,     Type.Missing, MsAccess.AcPrintQuality.acHigh, Type.Missing, Type.Missing);// cleanupapp.CloseCurrentDatabase();app = null;最后,当单击“保存”按钮时,所选报告将作为 HTML 保存在与 Access 数据库文件相同的目录中。隐藏复制代码// create an application object.MsAccess.Application app = new MsAccess.Application();// open the access database file.app.OpenCurrentDatabase(textBoxAccess.Text.Trim(), false, "");app.Visible = false;// open the reportapp.DoCmd.OpenReport(report, Microsoft.Office.Interop.Access.AcView.acViewPreview,     Type.Missing, Type.Missing, MsAccess.AcWindowMode.acWindowNormal, Type.Missing);// export the report to an HTML fileapp.DoCmd.OutputTo(MsAccess.AcOutputObjectType.acOutputReport,     report, "HTML (*.html)", fileName, Type.Missing, Type.Missing, Type.Missing);// cleanupapp.CloseCurrentDatabase();app = null;最后,1)From the main menu select Project > Add Reference.2)Go to the COM tab. Scroll down and select Microsoft Access 11.0 Object Library.3)Click Select and then click OK.using MsAccess = Microsoft.Office.Interop.Access;顺便说一句,考虑将访问表和查询导入 Python 或 R。如果您使用 SQL Server Express,我猜钱是一个问题。Python 和 R 都是 100% 免费的,并且都可以与 Access 完美配合。最后,Python 和 R 都有非常、非常、非常强大的报告工具。

呼唤远方

至于我,标记为答案的帖子是不正确的。这个问题没有直接的答案。哪里没有复制和粘贴解决方案可以在这里制作。但是,我已经解决了类似的问题,将 MS Access 应用程序转换为 C# 程序。大多数耗时的报告任务都是格式化报告的外观。我使用 Crystal Reports 和 DevExpress 报告解决方案将报告导入到他们的报告环境中。他们很好地为您制作所有格式。并节省大量无聊的时间来从头开始格式化所有报告。但是您需要修复报表的查询和数据库连接。因为 MS Access 使用了它自己的 SQL 语法。但对于程序员来说,这些是更有趣的任务。
打开App,查看更多内容
随时随地看视频慕课网APP