Telerik Forums
Reporting Forum
1 answer
158 views
Hello,
We have a report where we are pulling data from a table . When we run the sample report on the development server its perfectly working . But when we try to run the report from the application server we get the data in question marks, particular (Name) column which is in Arabic language . But all the other applications on the application server is working fine with Arabic language for example in grids, drop downs, text-box, labels etc .
I have attached a sample report where the column is in question marks .

Please help me in this matter.
Thanking you all in advance for your time and consideration.
Steve
Telerik team
 answered on 22 Feb 2010
2 answers
137 views
Hi,

My "problem" is that i have a report with a subreport in the details section, and i would like a textbox value that contains a sum from the subreports datasource in the report header. 

So the easiest would be to set the textbox value from the subreports databinding/bound event - but i can't find any solution for it. 

Can you point me in the right direction? 
KorsG
Top achievements
Rank 1
 answered on 21 Feb 2010
3 answers
379 views
Hi,

I really need to find a step by step solution to make this work, I swear I tried all the indications and videos posted here, I searched the forum and looked at all the threads.

I can not resolve the passage of bind parameters to the report,

My report uses a dataset with a SqlTableAdapter, and when I set the value of the parameter by hand, inside the "reportParametes" and "filters" thats works fine.

but now, I need to call that report from a ReportViewer in a aspx webform, i also need to pass the value selected in a DropDown to filter the Report Results.

I'm using the newest version of TelerikReporting, but the videos and Howtos that I've found here seen to be for old version.

please, anyone could give a light?  a "step by step" how to get that thing working

Scenario:
  • A Webform  reportview.aspx with DropDown with years ( 2008/2009/2010) and a ReporterViewer that calls report1 class from my referenced assembly.
  • My report class is running well from "Preview" when I set the parameters by hand, but I need to get that parameter from reportviewer aspx page
  • I'm using a Dataset with SqlTableAdapter where the method GetDataBy(@year) needs a parameter with the selected Year, to execute SELECT * FROM MYTABLE WHERE YEAR(DATE) = @year

What I have to do , to pass the Year selected in DropDown to the report called by the ReporterViewer?

Tks






SMA SOFTWARE
Top achievements
Rank 1
 answered on 19 Feb 2010
1 answer
103 views

hello,

I need help, please.

I use a classlibrary to store the reports, and I have a web site to call the reports from classlibrary. I have several RESX files in my classlibrary (see classlibrary from attached files), one for each languaje. 

In my web site I have a reportviewer to link each report from classlibrary (see reportviewer from attached files).

To link each report I have this code in my default.aspx.cs:

  Report1 a = new Report1();
  ReportViewer1.Report = a;

I would like translate, for example, all my textboxes with the correct languaje depending on culture (see report1code from attached files).

I saw the help from (http://www.telerik.com/help/reporting/report-viewer-localization.html), but it isn't enough, if I could see a similar example...

I have SQL server 2008, Visual Studio 2008, telerik reporting Q3 2009 (the trial version).

Could someone help me?.

Thank you.


Steve
Telerik team
 answered on 19 Feb 2010
0 answers
68 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
115 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
137 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
403 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
210 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
168 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
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?