Reputation: 15158
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):
Upvotes: 0
Views: 1405
Reputation: 2542
You need to add Telerik.Reporting.dll
in References like following image:
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
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.
Right click to referenced dll and navigate to property here you can define copy local
to true
.
Upvotes: 2