ReportViewer error in VB.NET?

4815162342

New member
Hi guys,

i'm kind of new in VB.NET. However, i developed an application which includes MS SQL Reporting Services reports. I am using an ReportViewer to open the report. This is the code i included

Uri = "http://localhost/ReportServer"
path = "/root/filename"
Me.ReportViewer1.ProcessingMode = Microsoft.Reporting.WinForms.ProcessingMode.Remote
Me.ReportViewer1.ServerReport.ReportServerUrl = New System.Uri(Uri)
Me.ReportViewer1.ServerReport.ReportPath = path
Me.ReportViewer1.RefreshReport()

This works on my computer, and i can start the reports, but on the client computers gives an error. (The file cannot be found). Is there something i'm missing, maybe some add-on should be installed on the client computers?

Help, fast, please!
 
Back
Top