SSRS "member not found (exception from HRESULT: 0x80020003 DISP_E_MEMBERNOTFOUND" Visual Studio2019 Community

6

enter image description hereTrying to use SSRS in Visual Studio 2019 Community. I am able to create a new "Report Server Project" Project in VS. However, when I try to "Add New Item" in the Project, I get the Error message: Member not found. (Exception from HRESULT: 0x80020003 (DISP_E_MEMBERNOTFOUND))

I did install Data Server and Processing when downloading VS and also added the Extensions:

  • Microsoft Analysis Services Projects
  • Microsoft Reporting Services Projects
  • SQL Server Integration Services Projects

Which all seem to be active. I should also note that the "Add New Report" Wizard does work, it's the "Add New Item" that is throwing the error. Any advice on how to correct?

Thanks to anyone helping!

visual-studio
reporting-services
visual-studio-2019
ssrs-tablix
asked on Stack Overflow Nov 13, 2020 by Gabriela • edited Nov 13, 2020 by Gabriela

5 Answers

0

Must be a bug in 16.8.1
You can Add an Existing RDL and change it up

answered on Stack Overflow Nov 18, 2020 by bytehd
0

I got this error and i solved it by adding the references for report viewer libraries in my current project, so basically when you create a new report project those dll are not included by default and visual studio can't find them.. Do a right click on your project and select Manage Nuget packages and install those two packages:

  • Corrected.Microsoft.ReportingServices.ReportViewerControl.Winforms (Current version = 150.1358.0)

  • Microsoft.ReportingServices.ReportViewerControl.Webforms (Current version = 150.1427.0)

Note: i am using Visual Studio Enterprise 2019 but i think the solution will work for 2017 too

answered on Stack Overflow Dec 20, 2020 by jiciftw
0

So I hit the exact same error and got blocked. After googling for some time, seems MS has accepted that it's a bug, and they have this solution bundled as part of the new Preview ( Visual Studio 2019 version 16.9 Preview 3) and yes this is pretty new, like was release 3 days back when I'm writing this. Once I install and test I'll comment on this thread, but by the release notes (https://docs.microsoft.com/en-us/visualstudio/releases/2019/release-notes-preview#16.9.0.pre.3.0) looks like they've fixed this. I can't wait for the 16.9 to be release (16.9 is still not out), hence installing Preview to continue.

Update: So I installed Udpdate, and then i had to install the reporting service extension again(else it was saying reporting service project to be non-compatible), but post that I'm now able to add a report.

answered on Stack Overflow Jan 23, 2021 by ssethi11 • edited Jan 23, 2021 by ssethi11
0

As of 3/8/2021 - I was running Visual Studio Professional 16.8.6 and was experiencing this issue. I upgraded to 16.9.0 (release data of 3/2/2021). Unlike ssethi11, it did not require the reinstallation of the SSRS extension.

answered on Stack Overflow Mar 8, 2021 by Gimbl
0

The Official 16.9.1 is released. Update visual studio and it should work now

answered on Stack Overflow Mar 14, 2021 by Trio Cheung

User contributions licensed under CC BY-SA 3.0