Telerik Forums
Reporting Forum
1 answer
79 views
Hi, I would like to know how to configure multi colums in ASP.NET !!!

 I need configure a number of days in month as a number of textbox.

 If someone knows how to do this, please tell me how !!

 Thank's.

Steve
Telerik team
 answered on 03 Nov 2008
1 answer
132 views
Dear my friends ,

i have a big problem !
i have a project in VS2008 and i'm using telerik reporting

in my project i have a button in page that when clicked execute this code


        Dim report As New Bills
     
        ReportSqlDataSource.SelectCommand = "...."


        report.DataSource = ReportSqlDataSource
 
       Dim printdlg As New System.Drawing.Printing.PageSettings
        Telerik.Reporting.Processing.ReportProcessor.Print(report, printDlg.PrinterSettings)

when i start my application using VS2008 embeded web server my programm working Nice !
but when i create a virtual directory in IIS and point it to my program dir my application not work!
when i click on this button my application not responding any thing and after a while i got timed out error !

what is the problem??
Steve
Telerik team
 answered on 03 Nov 2008
1 answer
73 views
I just passed the parameters through wizard, I have 2 dropdown list and one button.By selecting the values in 2DDL and click on the button the report has to generate  but, I'm unable to refresh the report. After selecting the values in ddl the report is displaying the initial values only. i'm unable to get the selected value. 
I just followed the below link to do this report. I want to generate report using Web app not on windows.
http://www.telerik.com/ClientsFiles/product.videos/28/ 
Steve
Telerik team
 answered on 31 Oct 2008
3 answers
174 views
I am creating a pdf report programmatically to be sent as an email attachment in my app. The reports work fine on my development machine (XP), however when I run it on a Vista test machine, only the header, footer, and one group label shows up on the report. This seems to have something to do with the size of the report since the group label did not show either until I reduced the width of the page.

Any help would be much appreciated

Thanks
John
Steve
Telerik team
 answered on 31 Oct 2008
3 answers
129 views
Hello,

    I'm trying to generate report programatically using parameters(in web application), But right now I'm able to develop a report only through wizard.
Is it possible to generate a report programatically.

Could you please provide me any link or video for this issue.

Its urgent.

Thnaks & Regards,
Balu.
Steve
Telerik team
 answered on 31 Oct 2008
1 answer
366 views
We our currently trying to convert several of our reports from Crystal to Telerik.  On several of our reports, we have a retrieve a data item from the database that contains HTML markup.  Is there any way to preserve that markup and have it displayed on the report?  

textbox:       [=Fields.userProfileInfo]

In Crystal, we had a property that identified the input text format and so it was rendered properly.
ie: Text Format - crHTMLText or crStandardText

Thanks you,
Steve
Telerik team
 answered on 30 Oct 2008
4 answers
193 views
Hi there,

In the features section of telerik reporting it states the following:

"You can databind Telerik Reporting to Business Objects, XML, Web Services and any ADO.NET datasource..."

Can you direct me to some documentation on how to connect to a Web Service and then use the results of that web service with your reporting tools? As i can't find anything in the help file i downloaded.

Thanks

Dave
Steve
Telerik team
 answered on 30 Oct 2008
1 answer
79 views
hello,

I’m creating a pdf file that exists of many subreports, I have a question. Can I define the first subreport as another format as the other subreports? For example, the first subreport is in DIN A4 portrait format, the other subreport default format is in DIN A4 landscape format.

If not, do you have any other idea? Many thanks.


Steve
Telerik team
 answered on 30 Oct 2008
3 answers
93 views
I'm using the technique outlined in the KB ID 1025 to generate a hyperlink in a report displayed on the web.  It works great.  The problem I have is when the user exports the report to Excel.  I'd like to prevent the report from rendering the HTML code for the hyperlink.  Is it possible to know when a report is rendered to HTML and when it's rendered to another format?

Thanks!
James
Steve
Telerik team
 answered on 29 Oct 2008
1 answer
75 views

Hello,

on my report i have a simple chart1. This chart1 has a datagroupcolumn and uses the NeedDataSource event. The chart is shown perfectly in the report.
However when exporting to PDF/TIFF/ HTML it shows a different chart!

Simple example:

In the chart1.designer.cs code i add 2 lines:

this.chart1.DataGroupColumn = "Name";   
this.chart1.NeedDataSource += new System.EventHandler(this.chart1_NeedDataSource);


In the chart1.cs code i have add the following needdatasource:

private void chart1_NeedDataSource(object sender, System.EventArgs e)
       
   Telerik.Reporting.Processing.Chart chart = sender as Telerik.Reporting.Processing.Chart;
   DataTable tbl = new DataTable();
   DataColumn col = new DataColumn("Val");
   col.DataType = typeof(int);
   tbl.Columns.Add(col);
   col = new DataColumn("Val2");
   col.DataType = typeof(int);
   tbl.Columns.Add(col);
   col = new DataColumn("Name");
   col.DataType = typeof(string);
   tbl.Columns.Add(col);
   tbl.Rows.Add(new object[] { 11, 3, "a" });
   tbl.Rows.Add(new object[] { 11, 4, "a" });
   tbl.Rows.Add(new object[] { 11, 5, "b" });
   tbl.Rows.Add(new object[] { 11, 6, "b" });
   tbl.Rows.Add(new object[] { 11, 7, "c" });
   tbl.Rows.Add(new object[] { 11, 8, "c" });
   chart.DataSource = tbl;
        }

When exporting this to PDF is seems like if the first bar of the datagroup is correct, but the other bars are just copies of this first bar, even though they have different values. There seems something wrong with rendering to PDF when you are using the DataGroupColumn. This seems like a bug.
When i just remove the DataGroupColumn, it obviously shows me a completely different chart, but that one is exported in the right way.  We are using Telerik Reporting 2008 Q1. I've read some release notes of future versions but cannot find anything related to this. Any suggestions?

John Neus


 





 

Steve
Telerik team
 answered on 29 Oct 2008
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?