I am reading the documentation on the reportviewer that you guys have, I dont see how to get access to the Report viewer explorer in visual studio. I check all places. I added the UltraReportViewer Control. But I dont see the Report explorer to add the the datasource etc.. I am going to post in another forum, review when time permits.
I couldn't find a link for the Report Veiwer controls to add furum topic, so I added under the ultragrid section.
Hello Keith,
Are you using the Windows Forms UltraReportViewer?
I am a visual learner, if you can and time permits, you can send a video or sample report to just get started off using the report viewer for winform controls.
There is no report explorer for the ReportViewer. The links at the following location walk you through integrating a report into an application.
http://help.infragistics.com/NetAdvantage/reporting/2011.2/CLR4.0?page=How_to_Integrate_Reports_Into_Applications.html
I was referencing the report data explorer. Thats already fix, thanks. I am reading documentation. I am trying to find out how to make specfic column a hyperlink, to be able to clik a certain column or hyperlink to fire an event to go o something.
Hi Keith,
Glad you were able to resolve the data explorer issue. With regards to the column hyperlinks, do you mean you want to be able to create a hyperlink in the report at design time and then from within the report during runtime you want to be able to click on it and have it take you to a website?
Yes I am refering to a hyperlink within the report design and then during report runtime with the winforms application, when the user click the hyperlink base up on the row I cam going to select more data to go do something. I am not trying to go to another website.
Example.
we have a simple report with three data columns Color1, Color2, Color3. Color3 is the hyper link column, if user click any hyper link by row, I want to pull Color1, and Color2 row data to run a query or something, I just ultimately needs to pull row values by the row hyperlink I click
The report viewer isn't going to give you that functionality as it was not meant to be interactive. It was designed for viewing a specific data set. What you can do is include the hyperlinks in the form directly that would update a grid with the data connected to that hyperlink. You could then swap out the data source in the report viewer to the new data and show it.
Thanks, I was jusrt curious, because the standard report reviewer allowed hyperlink , so i was wondering if you had that feature, so at the moment I am using a ultragrid and click by row to I come with a good way of doing it