Vb.Net preview report from access database

ms-accessvb.net

I am using visual studio 2010 to develop my desktop application and ms access database. I have already designed reports in access database and they are working perfectly. Now my concern is that is it possible to use these access reports in my Vb.Net application?

I need this because it would be much easier to distribute the software instead of using crystal report where I will need to install a run time machine for crystal reports.

Best Answer

It's possible to do but it's a horrible implementation. You basically have to launch Access, open the database file in Access, then navigate down and launch the report. There is no way to just "view" the report inside your app. It will only show inside Access.

I think your best option is to use ReportViewer control if you don't want to use Crystal Reports.

Related Topic