Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I download the Visual Studio 2012 Report Viewer Runtime?

Now that Visual Studio 2012 is released, where can I download the accompanying 2012 Report Viewer Runtime so I can install it on my server? Is there a redistributable installer included with Visual Studio 2012?

Specifically, I'm looking for the updated 2012 version of this: Microsoft Report Viewer 2010 Redistributable Package

like image 358
Mike Avatar asked Sep 11 '12 04:09

Mike


People also ask

How do I know if Report Viewer is installed?

Follow these instructions. On the server, click Start and type 'Control Panel'. Select Programs and then Programs and Features. Check that Microsoft Report Viewer 2015 Runtime is installed.

How do I add Report Viewer in Visual Studio 2013?

If you installed ReportViewer correctly on your computer, you must go to VisualStudio and right click on the toolbar (I recommend you do it on the General tab), and choose the option "Choose elements". Once there, check the . NET tab and look for ReportViewer on the list, and pick the one of the Microsoft. Reporting.

What is Microsoft Report Viewer redistributable?

The Microsoft Report Viewer Redistributable 2008 SP1 Language Pack includes Windows Forms and ASP.NET Web server controls for viewing reports designed using Microsoft reporting technology.


2 Answers

the final version of the installation program is http://www.microsoft.com/en-us/download/details.aspx?id=35747

like image 20
P. Sohm Avatar answered Dec 04 '22 12:12

P. Sohm


I believe I've found a temporary workaround for this:

  1. In your project's references, select the Microsoft.ReportViewer.WebForms assembly.
  2. Add a reference to C:\Windows\assembly\GAC_MSIL\Microsoft.ReportViewer.Common\11.0.0.0__89845dcd8080cc91\Microsoft.ReportViewer.Common.dll
  3. In the properties window, set "Copy Local" to True for both assemblies.
  4. Deploy your project to the server.

I haven't tested this extensively, but so far it appears that simply copying the assembly to your project's bin directory satisfies the runtime requirements on the server.

like image 172
Mike Avatar answered Dec 04 '22 13:12

Mike