Telerik Forums
Reporting Forum
1 answer
100 views
Hello,

I've created two reports, each containing a subreport.  In both cases, I tried to send two fields to the subreport and in both cases, to make it work, I had to combine them into one.  I didn't have a problem creating the parameters but only the first seemed to be passed.  Is there some t;hing different I need to do if I have more than one parameter to send to a subreport?

Thanks,
Susan
Peter
Telerik team
 answered on 05 May 2010
1 answer
128 views
Hi,

I want to reduce the space between consecutive rows in a crosstab report. I have attached a file thats shows the requirement. Please suggest something.


Thanks



Peter
Telerik team
 answered on 05 May 2010
1 answer
151 views
What are the differences between Telerik Reporting 2010 vs. Microsoft Visual Studio 2010 Reporting?
Steve
Telerik team
 answered on 05 May 2010
1 answer
927 views
I have a report with three subreports all in the detail section. I want this report to always fit on one page in both the report viewer and the printed report, sort of like the Excel "Fit to page" option. Is there a way to do that?

We're using VS 2008, C#, Q1 2010 build. We've got a WinForm application with a form that contains the ReportViewer control. We instantiate the form and pass it an instance of an IReportDocument. We have KeepTogether set to true on all three subreports but that doesn't prevent the third subreport from getting pushed to a second page.
Steve
Telerik team
 answered on 05 May 2010
1 answer
231 views
Hi,

I have a report wherein I will be passing multiple EncounterID's as parameters to generate the report for every EncounterID. My problem is I dont want to display as many report viewers as there are number of EncounterID's. Can it be done with Report Book. Im a bit naive in this, could you please tell me as to how to go about doing this.

Thanks
Vinayaka Hegde
Steve
Telerik team
 answered on 05 May 2010
2 answers
172 views
When I run my report I am getting a strange error from oracle.  Most of my reports work but there are a few that get this error.  There is no LOB data that I am trying to retrieve and my other reports are retrieving a lot of the same information.  It gives me a generic oracle error code (ORA-00600)  but then the parameters of this error are [kzaSqlBindLob1], [22923] has anyone run into this before?
brigus
Top achievements
Rank 2
 answered on 05 May 2010
2 answers
145 views

First time uploading project to webserver ...  seems to be report viewer related.  .net 2.0 and .net 3.5 are on the server.

Server Error in '/abcd' Application.

Configuration Error

Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: Could not load file or assembly 'Telerik.ReportViewer.WebForms, Version=4.0.10.421, Culture=neutral, PublicKeyToken=a9d7983dfcc261be' or one of its dependencies. The system cannot find the file specified. (E:\Data\Web\Host1\maut\web.config line 118) (E:\Data\Web\Host1\abcd\web.config line 168)

Source Error:

Line 166:    <httpModules>
Line 167:      <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
Line 168: <add name="BridgeModule" type="Microsoft.Web.Services.BridgeModule" />Line 169:      <add name="WebResourceCompression" type="Microsoft.Web.Services.WebResourceCompressionModule" />
Line 170:    </httpModules>

Source File: E:\Data\Web\Host1\abcd\web.config    Line: 168

 


Version Information: Microsoft .NET Framework Version:2.0.50727.3603; ASP.NET Version:2.0.50727.3082

 

kellyroberts
Top achievements
Rank 1
 answered on 05 May 2010
1 answer
124 views

HI!

      I am new to telerik reporting , I want to implement a report using stored procedure with 5 filters on the report to get the desired out put. So, please can any one explain me how can i do it? or any link to see the video for the same?
Peter
Telerik team
 answered on 05 May 2010
1 answer
150 views

Hello,

            I am facing an issue in Telerik Reporting. Let me describe my site’s configuration – 3 webservers in Load balancing (Windows 2008 R2) and a Server for MSSQL. There are more than 15 pages where we use telerik reporting. When I try to print a report from my website using webserver 1 it previews a blank page but the report generates without any issues .(I am printing by clicking on the print ICON in Report Tab) ,
however rest of the servers are printing good. As this is a production issue I kindly request you to respond me ASAP.

Attached ScreenShot for your reference.

Kindly Let me know if there are any additional information required.

Regards,
Karthik B

Peter
Telerik team
 answered on 05 May 2010
1 answer
216 views
Hi all -

I have an asp.net website project (not web application) in vb ... call it web1... and a class library project also in vb ... call it web1report.  The reports are in the class library as recommended.  the report project is referenced in the website project.  I have a page in the website w/ a reportviewer pointing to a particular report.  The website has a web.config and defined in there is the same connectionstring 'strconn1'.  this connectionstring is used by several other pages in the web.  it is specifically defined as ...

<

 

connectionStrings>    

 

 

    <

 

add name="strconn1" connectionString="Data Source=server123\INS01,4101;Initial Catalog=ABC;Trusted_Connection=Yes" providerName="System.Data.SqlClient" />    

 

 

</

 

connectionStrings>

 

 

 

 

 

 

 

 

The report uses a sqldatasource and points to a connection string named 'strconn1'  ... same as website ... I told the report wiz to save the connection string.  I checked 'settings' for class library by r-clicking the project -> properties -> then the settings tab and I can see the connectionstring 'strconn1' listed there.

I can preview the report in VS2008 IDE just fine.  but when I try to browse the page w/ the report viewer I get

"Unable to connect to database. Please verify that your connection string is valid; in case you use a connection string from the application configuration file, make sure the name is correct and the connection string settings are present in the configuration file of your application."

now heres the weird part.  If I add another connectionstring in the web.config called web1report.My.MySettings.strconn1 ... like ...

 

<

 

 

 

add name="web1reports.My.MySettings.strconn1" connectionString="Data Source=server123\INS03,4103;Initial Catalog=ABC;Trusted_Connection=Yes" providerName="System.Data.SqlClient" />

 

 

 


then I can view the report

the problem is now i have 2 separate connection strings in my project ... and I dont really like that ...

can someone exlpain why its a problem in the first place, and how i can avoid using 2 separate connectionstrings ?

I also read this forum post and it helps but I thought that as long as I have the same connectionstring name in both projects it should be ok. 

is it somehow related to application.settings?  im not sure the website has 'settings' only web.config

Any help is appreciated.
Peter
Telerik team
 answered on 05 May 2010
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
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?