I have uninstalled Reports and reinstalled Reports (with VS 2008 NOT running) and still do not see the Reportview control. I have reset the Toolbox and this did not change anything.
My VS menu bar has a Telerik menu item which has a Reporting item that only points to an UpgradeWizard utility.
thanks for your help.
11 Answers, 1 is accepted
In order to see the web report viewer control in the Visual Studio Toolbox, you should be in the context of the web page. Check the following KB article for more info: Telerik Reporting Toolbox items are missing.
Regards,
Steve
the Telerik team
Am work with asp.net vb 3.5 version.. here i have installed telerik rad controls and its supporting report too.. but i cant access the report viewer on my tool box. please help.. its urgent..
Did you reset the ToolBox as suggested? If this did not help, please provide us with the installer log, instructions are available in the referenced KB article.
Kind regards,
Steve
the Telerik team
BLOGGERS WANTED! Write a review about Telerik Reporting or the new Report Designer, post it on your blog and get a complimentary license for Telerik Reporting. We’ll even promote your blog and help bring you a few fresh readers. Yes, it’s that simple. And it’s free. Get started today >
Regards,
Prassin
The information is pretty straight-forward: run Telerik Reporting installer from command prompt with logging information enabled:
msiexec /i path_to\Telerik_Reporting_Q1_2012_DEV.msi -l*xv install.log
and attach the log file to a support ticket.
All the best,
Steve
the Telerik team
BLOGGERS WANTED! Write a review about Telerik Reporting or the new Report Designer, post it on your blog and get a complimentary license for Telerik Reporting. We’ll even promote your blog and help bring you a few fresh readers. Yes, it’s that simple. And it’s free. Get started today >
I have read carefully through this thread and it appears to me that customer support does not understand what the issue is here. To state the issue more clearly than Scott, who started this thread will be difficult but I will try. The Report Viewer control is not available is Visual Studio even while in the context of the web page, and neither is the Telerik Reporting Tab. There is nothing, except, as Scot said, "My VS menu bar has a Telerik menu item which has a Reporting item that only points to an UpgradeWizard utility." That is all, there is nothing else related to Telerik Reporting anywhere to be seen.
I too must decide whether or not to use this utility in a short period of time. From what I have already read, it appears that Telerik Reporting will be good fit with what we are trying to do. Therefore, I ask that you help me fix this issue, and not refer me to another thread.
Thanks,
Carlos
We do understand the issue that has been reported in this thread and the KB article that was given in the very first reply is accurate and has helped numerous clients (its rating speaks for itself). I'll try to paraphrase as well:
Choose "Reset Toolbox" from the VS Toolbox context menu and once it finishes, open a Telerik Report in the VS designer and verify that you see a "Telerik Reporting Q2 2012" Tab in it. If it is not immediately available, do you see it if you select "Show All" from the Toolbox context menu? Also are you able to work with the VS Telerik Reporting Menu e.g.. what happens if you click on the Upgrade Wizard?
Missing or not working items in Telerik Reporting menu could mean that the Telerik Reporting VSPackage is not correctly loaded on your machine. Please launch the Visual Studio IDE with the following command that should fix the problem: Devenv.exe /ResetSkipPkgs. If this does not help, please reinstall Telerik Reporting
by running Telerik Reporting installer from command prompt with logging information enabled:
msiexec /i path_to\Telerik_Reporting_Q2_2012_SP1_DEV.msi -l*xv install.log
and attach the log file to this support ticket. Have the following in mind:
- Make sure there are no Visual Studio instances running.
- Make sure you're logged in as administrator. If not please elevate the rights for the Telerik Reporting installer prior starting the install.
All the best,
Steve
the Telerik team
HAPPY WITH TELERIK REPORTING? Do you feel that it is fantastic? Or easy to use? Or better than Crystal Reports? Tell the world, and help fellow developers! Write a short review about Telerik Reporting and Telerik Report Designer in Visual Studio Gallery today!
Thanks in advanced.
There is no ReportBook control that you can use for Silverlight application. You have to create a custom class that inherits the Report Book as shown in the following code snippet and can be later assign to a report viewer. Because the ReportViewer.ReportSource property is of type Telerik.Reporting.IReportDocument you can assign a class that inherits Telerik.Reporting.ReportBook to the viewer and it would display it just fine.
public class ReportBook : Telerik.Reporting.ReportBook
{
public ReportBook()
{
this.Reports.Add(new DashBoard());
this.Reports.Add(new ProductSales());
}
}
An example of Silverlight Report Book can be found in the demos that came with your installation of Telerik Reporting (Start - > Programs -> Telerik -> Reporting -> Visual Studio Examples). Check out the ReportBook.cs.
Regards,
Steve
the Telerik team
HAPPY WITH TELERIK REPORTING? Do you feel that it is fantastic? Or easy to use? Or better than Crystal Reports? Tell the world, and help fellow developers! Write a short review about Telerik Reporting and Telerik Report Designer in Visual Studio Gallery today!
I am learning telrik reporting.Please help me some code to call telrik report in reportviewer..Urgent....bye
Your inquiry is not related to the subject discussed in this thread, so we kindly ask you to restrain from "kidnapping" threads in such a manner. You can find more information on specifying a report for a report viewer in the respective help section based on the application you're working with e.g. for web site/web application, check How to: Add report viewer to a web page help article.
Regards,Steve
the Telerik team
HAPPY WITH TELERIK REPORTING? Do you feel that it is fantastic? Or easy to use? Or better than Crystal Reports? Tell the world, and help fellow developers! Write a short review about Telerik Reporting and Telerik Report Designer in Visual Studio Gallery today!