Ariyan
Ariyan

Reputation: 15158

Telerik's reporting name space not found

I'm trying to use Telerik with .NET framework 3.5 and Visual Studio 2008
I installed Telerik Reporting but when I try to use Telerik.Reporting I get error:

The type or namespace name 'Reporting' Doesn't exists in namespace 'Telerik' (are you missing an assembly reference?)

How can I solve this?

EDIT

I tried to add Reference but it prevents to be added (path is empty):

enter image description here

Upvotes: 0

Views: 1405

Answers (1)

Afnan Ahmad
Afnan Ahmad

Reputation: 2542

You need to add Telerik.Reporting.dll in References like following image:

enter image description here

Make a folder name Dependents and copy these files to this folder :

Telerik.Reporting
Telerik.ReportViewer.WebForms
Telerik.Web.UI

Now click on References and then navigate to Add Reference and then a window will open. Browse to Folder Dependents and add all these dlls. Once dlls are added right click on them and make sure thier property Copy Local is set to True.

Add Refrences

enter image description here

Select dlls from Folder. Please note you can have any name to this folder. This is just for the reason if you miss any references in the future you can add them again from this folder inside your project.

enter image description here

Right click to referenced dll and navigate to property here you can define copy local to true.

enter image description here

Upvotes: 2

Related Questions