how to solve the sql server compatibility problem when using report viewer in visual studio 2017

  • Thread starter Thread starter Royer12
  • Start date Start date
R

Royer12

Guest
Hello, the first time I had created an RDLC, it had the following syntax.

<?xml version="1.0" encoding="utf-8"?>
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
<Body>

and then I included in the toolbox the report viewer but after that I had also created another Rdlc, another report,

When I open the file report1.rdlc with sublime text, I get the following.

<?xml version="1.0" encoding="utf-8"?>
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2016/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
<AutoRefresh>0</AutoRefresh>
<DataSources>

Automatically I realize that the sql server has changed from version to 2016, but when I start the report.vb application, I get a compatibility error, is there any way to include it in the sql server version 2016 ?, because compared to the previous one, It's the 2008 version.


Microsoft.ReportViewer.Design.DLL

version

Microsoft.ReportViewer.2015.12.0.2.2403

Continue reading...
 
Back
Top