Telerik Forums
Reporting Forum
0 answers
75 views
Any news on when we will be able to generate a PDF with clickable hyperlinks?

I checked the forum and following the time line it looks like it was planned last year, but didn't make it.

Randy Miller
TransGuardian
Randy
Top achievements
Rank 1
 asked on 19 Feb 2010
2 answers
123 views

Hi,

I use telerik reporting in my web site. My programming language is c#.
I want to display only some items in "export to the selected format" list of my ReportViewer.
I want to do it without use web.config of my web site, because i have many ReportViewers with differents exports formats.

How i can do it ?  

Thank you for your help.


Franklin Jaures
Top achievements
Rank 1
 answered on 19 Feb 2010
8 answers
153 views
Looking at the example reports that use the silverlight report viewer it seems that the images are being rendered in the background or are being downloaded after the report has been rendered.

Is this a feature? If so is there any documentation for this?

It seems that my report is waiting until the all the images are done loading before displaying anything.

Thanks
Steve
Telerik team
 answered on 18 Feb 2010
3 answers
421 views
Hi,
 i have installed Telerik reporting kit on my system. Now i am trying to add the chart control in toolbox and i have added the dll in my
 visual studio toolbox. Still the control will not get added in my toolbox. Could you please help me to solve the problem?

Thanks
Rahul
Steve
Telerik team
 answered on 18 Feb 2010
1 answer
226 views
I am trying to use the report viewer to display reports, i am setting the property reportviewer.report = rpt, based on the report the user wants to display, however i always get a blank report. Any suggestions, help?

This is the button that calls the report

Private

 

Sub btnQAChecklist_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnQAChecklist.Click

        Dim rpt As New ReconChecklistRpt(_planToPlanUpload.PlanToPlanUploadId)  

        Dim frm As New PDRSReportViewer(rpt)  

        frm.Show()

 

End Sub

This is the code for the report.

Imports

 

System.ComponentModel

 

 

 

Imports System.Drawing

 

 

 

Imports System.Windows.Forms

 

 

 

Imports Telerik.Reporting

 

 

 

Imports Telerik.Reporting.Drawing

 

 

 

Imports System.Data.SqlClient

 

 

 


Partial
Public Class ReconChecklistRpt

 

 

 

 

Inherits Telerik.Reporting.Report

 

 

 

 

 

        Private _PlanToPlanUploadId As Integer

    

 

    Public Sub New()

 

 
               InitializeComponent()

               _PlanToPlanUploadId = 5198

 

 

                Me.DataSource = Nothing

 

 

 

        End Sub

 

 

 

 

 

 

    Public Sub New(ByVal PlanToPlanUploadId As Int32)

 

        _PlanToPlanUploadId = PlanToPlanUploadId

 

        Me.DataSource = Nothing 

 

 

    End Sub

 

 

 

 

 

    Private Sub ReconChecklistRpt_NeedDataSource(ByVal sender As Object, ByVal e As System.EventArgs) HandlesMe.NeedDataSource

 

 

    Dim cn As New SqlConnection(My.Settings.ConnectionString) 

 

    Dim da As New SqlDataAdapter("rpt_QACheckListByPlanToPlanUploadId", cn)

 

 

    da.SelectCommand.CommandType = CommandType.StoredProcedure

    da.SelectCommand.Parameters.AddWithValue(

"@PlanToPlanUploadId", _PlanToPlanUploadId)

 

 

 

    Report.DataSource = da

 

    End Sub

 

End

 

Class

 

 

 

 

 

This is the report viewer form

 

Public

 

Class PDRSReportViewer

 

 

 

 

    Public Sub New()

' This call is required by the Windows Form Designer. 

 

 

        InitializeComponent()

' Add any initialization after the InitializeComponent() call.

 

 

 

    End Sub

 

 

 

    Public Sub New(ByVal report As Telerik.Reporting.IReportDocument)

 

        InitializeComponent()

 

 

        Me.ReportViewer.Report = report

 

 

    End Sub

 

 

 

 

 

 

    Private Sub PDRSReportViewer_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

 

 

        Me.ReportViewer.RefreshReport()

 

 

    End Sub

 

End

 

Class

 

 

 

 

 

 

 

 

 

 

 

Steve
Telerik team
 answered on 18 Feb 2010
0 answers
184 views
Hi, Telerik!

I have one simple question: "How can I format the value such as "223:49" (string or double) to "HH:mm" as Date & Time for further Excel operations with duration time values?"

PS. In Excel and scalc we have the magic format code "[HH]:mm", that give us opportunity to summarize values like "223:49" and "123:45".
ib
Top achievements
Rank 1
 asked on 17 Feb 2010
1 answer
182 views
Hello,

  Is there a possibility to print a subreport transparent, so that the background picture of the main report is visible?

I've set all background colors to transparent (subreport in main report, background of subreport and all textboxes in subreport).
The effect is, that in Web Preview my subreports are rendered transparent, but all printed versions (on Paper, as XPS or PDF) have a plain white background in the subreport area killing the background picture.

I use Telerik Reporting Q3 2009, 3.2.9.1211.

Thanks in advance
  Thomas
Steve
Telerik team
 answered on 17 Feb 2010
0 answers
63 views
Dear Sir, 
                 i have created a report with back ground color for report as well as for report viewer for good looking, but i wanna take print out without the back ground color ( transparent ). Is it possible or not, if it is possible whats the process ?

reply soon.,

With Regards
S.Suriya Narayanan
Suriya
Top achievements
Rank 1
 asked on 17 Feb 2010
3 answers
182 views
Dear Sir,
             I am using telerik report. Till now i have creates above 50 reports. So i wanna give back ground color for all reports using cascading style sheet. It is possible or not? If it is possible how it is? plz reply


With regards
S Suriya Narayanan
Steve
Telerik team
 answered on 16 Feb 2010
2 answers
650 views
Hello all, I'm writing my very first Telerik report. I am trying to hook up one of the parameters to a "Business Object" datasource.
My datasource is defined as:

Namespace DataObjects 
    Public Class DropDowns 
        Public Shared ReadOnly Property Intervals() As List(Of ListItem) 
            Get 
                Dim lic = New ListItemCollection() 
 
                lic.Add(New ListItem("Raw""0")) 
                lic.Add(New ListItem("15 Minutes""0.25")) 
                lic.Add(New ListItem("30 Minutes""0.5")) 
                lic.Add(New ListItem("1 Hour""1")) 
                lic.Add(New ListItem("6 Hours""6")) 
                lic.Add(New ListItem("12 Hours""12")) 
                lic.Add(New ListItem("1 Day""24")) 
 
                Return (From li As ListItem In lic Select li).ToList 
            End Get 
        End Property 
    End Class 
End Namespace 

My report parameter is defined as (from the report codebehind):

        reportParameter1.Name = "DeviceId" 
        reportParameter1.Type = Telerik.Reporting.ReportParameterType.[Integer
        reportParameter1.UI.AllowBlank = False 
        reportParameter1.UI.AvailableValues.DataMember = "Intervals" 
        reportParameter1.UI.AvailableValues.DataSource = GetType(DataObjects.DropDowns) 
        reportParameter1.UI.AvailableValues.DisplayMember = "Fields.Text" 
        reportParameter1.UI.AvailableValues.ValueMember = "Fields.Value" 
        reportParameter1.UI.Visible = True 
        Me.ReportParameters.Add(reportParameter1) 

When i run the report in the browser, in the area where the report would normally render, it tells me: "The expression contains object 'Fields.Value' that is not defined in the current context." I have tried using Value, Fields.Value, Item.Value, ... and just can't figure out what to put for the DisplayMember and ValueMember to get them to pull the Text and Value properties of the ListItem objects respectively. I even tried leaving them blank, but then it tells me: "Parameter 'DeviceId' has defined AvailableValues, but no ValueMember is specified. Use 'Item' if binding to Array."

Can someone tell me what to put for the DisplayMember and ValueMember properties???
Thanks in advance! 
Aaron Abdis
Top achievements
Rank 1
 answered on 16 Feb 2010
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?