IT

Visual Studio에서 누락 된 Microsoft RDLC 보고서 디자이너

lottoking 2020. 6. 24. 07:22
반응형

Visual Studio에서 누락 된 Microsoft RDLC 보고서 디자이너


Visual Studio 2015에서 더 이상 RDLC 보고서 디자이너를 찾을 수 없습니다 . 누구나 이것이 버그 일 뿐이고 나중에 제공되는지 또는 Microsoft가 RDLC를 죽이기를 원하는지 또는 외부 디자이너를 사용하기를 원하는지 그리고 언제, 어떤 디자이너인지 알고 있습니까?

업데이트 Visual Studio 2017 에서 RDLC Report Designer를 검색하는 개발자 는 이제 Visual Studio Marketplace 에서 다운로드해야합니다.


업데이트 : RDLC Report Designer가 설치되는 방식이 Visual Studio 2017 이상에서 변경되었습니다 . 자세한 내용은 다른 답변 을 참조하십시오. 그 외에도 ReportViewer 컨트롤은 NuGet을 통해 사용할 수 있습니다 ( 여기 참조) .


아래의 원래 답변

보고서 디자이너는 Microsoft SQL Server 데이터 도구의 일부입니다 .

Visual Studio 설정을 사용하여 추가 할 수 있습니다 (프로그램 및 기능> Visual Studio 2015> 변경)

스크린 샷


제어판> 프로그램> 프로그램 및 기능을 엽니 다.

  • 사용중인 Microsoft Visual Studio 2015 버전의 항목을 선택하십시오.이 경우 Microsoft Visual Studio Enterprise 2015였습니다.

  • 프로그램 목록 위의 상단 바에서 "변경"버튼을 클릭하십시오. 스플래시 화면이 끝나면 창이 열립니다.

  • "수정"버튼을 누르십시오.

  • Windows 및 웹 개발> Microsoft SQL Server 데이터 도구를 선택하고 옆에있는 상자를 선택하십시오.

  • 창의 오른쪽 하단에있는 "업데이트"버튼을 누릅니다.

Once the installation is complete, open your version of Visual Studio. After the new .dll files are loaded, Reporting functionality should be reimplemented, and you should be able to access all related forms, controls, and objects.


In VS 2017, i have checked SQL Server Data Tools during the installation and it doesn't help. So I have downloaded and installed Microsoft.RdlcDesigner.vsix

Now it works.

UPDATE

Another way is to use Extensions and Updates.

Go to Tools > Extensions and Updates choose Online then search for Microsoft Rdlc Report Designer for Visual studio and click Download. It need to close VS to start installation. After installation you will be able to use rdlc designer.

Hope this helps!


Visual Studio 2017

  1. Open Visual Studio
  2. In Tools -> Extensions and Updates -> Online
  3. Search for 'rdlc'
  4. Install Microsoft Rdlc Report Designer (23.3 MB)
  5. Close Visual Studio, let the installer run and open Visual Studio to see the rdlc in the designer.

I had the same problem, after install the MS VS Community 2015, I didn't find the RDLC files neither the Report Viewer component, I solve the problem by going in the Control Panel (Windows) -> Programs -> Try to uninstall the MS VS Community and choose MODIFY, in this moment you will be able to Check the Microsoft SQL Server Data Tools.

That is it!


In addition to previous answers, here is a link to the latest SQL Server Data Tools. Note that the download link for Visual Studio 2015 is broken. ISO is available from here, links at the bottom of the page:

https://msdn.microsoft.com/en-us/library/mt204009.aspx

MSDN Subscriber Downloads do not list the VS 2015 compatible version at the time of writing.

However, even with the latest tools (February 2015), I can't open previous version of .rptproj files.


If you did a custom installation you need to add Microsoft Sql Server Data Tools. After that you can add Reportviwer to your webform.


I've had the same problem as you and I installed Microsoft rdlc designer to solve my problem.

And if you already installed this but still can't found rdlc designer try open visual studio > tools > Extension and Updates > then enable Miscrosoft Rdlc designer extensions.


To solve this problem open nutget package manager console and select your project and type install-package microsoft.report.viewer and wait to install


This trouble passed me. If you can't repair this trouble, perhaps can you review all Framework versions that you have in your system. For example, if you have ReportViewer for Framework 4.5 and your project is assembly in Framework 2 or another Framework minor at 4.5. The differents versions Framework sometime have problems.


The setup feature does not work on Visual Studio 2017 and later versions.

The extension needs to be downloaded from VS Marketplace and then installed - Link

The same applies to other extensions such as Installer Projects (used for creating executable files) - Link


Below Different tools for Editing Rdlc report:

  1. ReportBuilder 3.0 : Microsoft Editor for Rdlc report.
  2. 고급 서비스가 포함 된 Microsoft® SQL Server® 2008 Express : 또 다른 도구는 고급 서비스 와 함께 Sql Server Express와 함께 설치할 수있는 Sql Server Business Intelligence를보고에 사용하는 것입니다.
  3. fyiReporting : Rdlc 보고서 편집을 위해 제공되는 오픈 소스 도구입니다.

참고 URL : https://stackoverflow.com/questions/31581432/missing-microsoft-rdlc-report-designer-in-visual-studio

반응형