reportviewer

Are rectangles fixed height in RDLC reports?

I have an RDLC report with a sub-report that I want to be A4 paper in height. The number of rows in the sub-report may vary, so I placed the sub-report in a rectangle so that if the sub-report is short the rest of my report doesn't shrink. - According to the documentation rectangles are fixed size. This works fine when I show the report...

ReportViewer - access subreport/drillthough in serverside asp.net

Hi, When using the ReportViewer control in an aspx page. If you fire an event (such as clicking a row) which then displays a sub/drillthough report...How can you access that Report object on the server side? There is a DrillThough event for the parent report object that gets fired...but it doesn't seem to have any access to the new rep...

Support Crystal report for hosting server.

Hello, I am running shared hosting server for asp.net application. I want to support for crystal report on my server. So that users web application use crystal report. Can any one know what is the procedure to support crystal report on the server. Thanks ...

ASP.NET ReportViewer local mode performance (expression_host regeneration)

I have a simple ASP.NET web form with several ReportViewer controls running in local mode. Every time the page loads, each ReportViewer loads the report definition and also regenerates the dynamic expression_host assembly. This is obviously time consuming and will not scale very well. Is there any way to have the ReportViewer cache th...

Is ReportViewer capable of Mailing Labels?

Hello, I’m using C# with VS2008 Standard. Is it possible for ReportViewer to create mailing labels? Or is it not really meant for that? PS.I don't want to use MS Word in any way. Thanks ...

Where is Report header in rdlc

I do not find Report header in RDLC only Page Header shows up when I right click. ...

Using subreports with Microsoft's ReportViewer control in local mode

Does anyone have a recommendation for an excellent reference on Microsoft's ReportViewer (VS 2008 flavour) when used in local mode? I'm currently using it but parts of it are a bit of a black box so I'd like to read up on the entire subject. Especially want to start using sub-reports to display more complex parent-child reports. I'm ass...

Whether probably to add a static column in Matrix component (Reportviewer .NET)?

I wish to use possibilities of Matrix component for creation of dynamic columns. But thus I need to insert and static columns (for example, date of operation and a name of the person). How I can realise it? ...

Group Expressions in Reportviewer

I am trying to figure out how to group data contained inside a Table. I want to be able to group by data that is similar in a column. For example: Bob, 23, Cereal Bob, 24, Oatmeal Susan, 25, Cream Susan, 26, Horse The above, I am trying to find an expression to use that will allow me to group both Bobs together, and bot...

Cognos reports showing no data from url

I can run all my reports from report studio just fine. So its not a question of query or data or even report specs. When i call them from URL i am getting no data in the report. There obviously should be data. We had just upgraded from 8.2 to 8.3 and it is not all the reports... only a select few. This is serious problem since our u...

Report Viewer Landscape pdf export

hi, what is to do to set landscape for a pdf export ? using of System.Drawing.Printing.PageSettings before a refresh doesn't work. Type tip = reportViewer1.GetType(); FieldInfo[] pr = tip.GetFields(BindingFlags.Instance | BindingFlags.NonPublic); System.Drawing.Printing.PageSettings ps = new System.Drawing.Prin...

C# reportviewer control export programatically

Hi, does anyone know if you can programatically save a report shown in a reportviewer control in c#? When a report is shown there are export to buttons and i would like to automate the saving to PDF function. ...

Is it possible to create a table of contents with page numbers for an RDLC report?

I have a fairly large report I'm trying to create as an RDLC in Visual Studio 2008. There are several sections that I plan to create as subreports and then compile them all into a master RDLC. However, one of my client's requirements is that it have a table of contents with page numbers indicating where to find the various sections of th...

Suppress warning for rsOverlappingReportItems

Is there a way to suppress the following warning? warning rsOverlappingReportItems: The image 'image3' and the image 'image1' overlap. Overlapping report items are not supported in all renderers. ...

ReportViewer Error with asp.net 3,5

Hi there. I'm working visual studio with c#. I have a web page and it has a ReportViewer like that: <rsweb:ReportViewer ID="rvCinsiyeteGoreHastaSayisi" runat="server" Font-Names="Verdana" Font-Size="8pt" Height="400px" Width="400px"> <LocalReport ReportPath="RptCinsiyeteGoreHastaSayisi.rdlc"> <DataSources> ...

DataSources folder in MVC?

Is it possible to access to the "DataSources" window in Visual studio in an MVC project? We are trying to use Report Viewer in our MVC project. Tutorials for setting it up use the DataSources window, but I think this is just a WebForms project feature. Can anyone confirm that that is the case? ...

Displaying a Number in Words in SSRS

I work on VS05 C# window .In my rdlc report i want to show my group amount in word... like in my group i got the agount 1000 ...now i want to show that in word....but how? I know how to convert amount in word, but problem arise when i use it on my group....how to convert group amount in word in my need .......is there any built in method...

ReportViewer change language toolbars Windows Forms....

I need change language toolbars reportviewer.Buttons:Print,Find,Export ...is possible? I'm using Visual Studio 2008. ...

ReportViewer add Parameters ...

Hi, I need help.Well, i need add image logo in reportviewer dynamically.I get this image from db, convert toBase64 and i need add in reportviewer.... this code next.. rpViewer.LocalReport.EnableExternalImages = true; Company _company = db.Companys.Where(c => c.codCompany == c.codCompany).Single(); //first step ...

Expression_Host assemblies keep growing in numbers

Hi, I have a WinForms 2.0 application with about 18 Reports created with Microsoft ReportViewer. Every time a report is started there is a dynamic assembly created (expression_host_xxxxxx.dll). This dynamic assembly is loaded in memory and is there to stay for the remainder of the application runtime consuming resources. Even if we only...