reporting-services

How do I best display CheckBoxes in SQL Server Reporting Services?

孤街醉人 提交于 2019-12-04 08:03:33
问题 One of the many quirks of Reporting Services we've run across is the complete and utter lack of a CheckBox control or even something remotely similar. We have a form that should appear automatically filled out based on information pulled from a database. We have several bit datatype fields. Printing out "True" or "False" just looks silly, as this is supposed to look like a form that has been auto-filled out, so we want to have a series of checkboxes and labels that are either checked or

Reporting Services Folder Configuration

梦想的初衷 提交于 2019-12-04 07:17:20
As a Newbie for Reporting Services, I have some confusion about setting up report services on my local dev machine. I'm using Sql-Server 2008 Developer Edition on Vista64 Home Premium. When I go to http://localhost/reports , I'm being asked for a login. When I enter an account that I have configured to be a local admin, I get to minimal report server screen that does not give me the option to configure the folder structure. Can I get some advice on how to configure system so that I can get to this step. After much experimentation, I finally did a search with "vista insufficient for performing

How to display time value in a given string format within SSRS report?

爷,独闯天下 提交于 2019-12-04 06:47:56
I want to Display time duration in SSRS report My DB field is time in SQL. It converts Timespan in SSRS. format is : 1:00 PM - 3:50 PM How can i do this ? Fields!StartTime.Value.ToString() + " PM - " + Fields!EndTime.Value.ToString() + " PM" is not working.. Here is one possible way of achieving this with the help of Custom code in SSRS. Following example doesn't go into the details of creating SSRS reports but should give an idea of how the time formatting can be achieved within SSRS. Step-by-step process: Create a table named dbo.Timespans using the script provided under SQL Scripts .

ReportViewer (SSRS) with VB.NET Appearance error

丶灬走出姿态 提交于 2019-12-04 06:47:38
问题 I want to embed a .net webpage with ReportViewer object. I created a test project and have: <asp:Content runat="server" ID="Content1" ContentPlaceHolderID="FeaturedContent" > <asp:Panel ID="Panel1" runat="server" Height="100%" Width="100%"> <rsweb:ReportViewer ID="ReportViewer2" runat="server" bordercolor="Navy" borderstyle="Solid" borderwidth="1px" height="100%" tooltip="Display Report" width="100%" Font-Names="Verdana" Font-Size="8pt" ProcessingMode="Remote"> <ServerReport ReportPath="

reporting services (ssrs) prompts with username/password

浪子不回头ぞ 提交于 2019-12-04 06:32:17
I am using reporting services 2010 and get the following prompt when trying to access the reports: In the reports definition, I have specified the database username/password. Is there any way to bypass this? There are actually two logins you deal with when it comes to reporting services. The login to the database is to capture the data, it has nothing to do with the actual report itself. That login you used is sent to the database as the user / credentials being used to pull the report data. This prompt you have a screen shot of, is the authentication to the report server, by default rs uses

How to Show two tablix on each page of report viewer in C#

女生的网名这么多〃 提交于 2019-12-04 06:15:44
问题 I Have created a report in report viewer and I want to show two tablix on one page of report viewer. For example if both tables have 10 rows to show then i want to show 5 rows of first table and 5 rows of second table on 1 page and rest of the rows show on next page like next 5 rows from first table and next 5 rows from second table. How can I got this? Please Help me. Thanks 回答1: You need to add some criteria to group by. For example, add pageNumber column to each of two datasets and then

Can you rotate through visible sub reports in report builder 3?

﹥>﹥吖頭↗ 提交于 2019-12-04 06:09:51
问题 I have one main report with several sub reports. Essentially I want to show each sub report in rotation for about 30 seconds before hiding the first one then showing the next and restarting again after all have had their time up. Thanks 回答1: I 'think' you can do this, but there are some caveats. You will need to setup a database table to store the current loop position, if you have several of these reports you could key it on report name for example. (note these names are for the main report,

SSRS call stored procedure using ReportItems! textbox. Maybe custom report code?

故事扮演 提交于 2019-12-04 06:09:40
问题 I need to call a stored procedure during my report to insert values into a table. These values are the result of fields from the dataset added. For example, I have a row of values, and the far right column is "ReportItems!TextBox1.Value + ReportItems!TextBox2.Value ..." This gives the correct total on the report. Now I need to call a procedure using this value as a parameter. Using a stored procedure as a dataset, I am unable to reference the ReportItems ! I am also unable to create

WinForms ReportViewer: slow initial rendering

半世苍凉 提交于 2019-12-04 06:06:24
UPDATE 2.4.2010 Yeah, this is an old question but I thought I would give an update. So, I'm working with the ReportViewer again and it's still rendering slowly on the initial load. The only difference is that the SQL database is on the reporting server. UPDATE 3.16.2009 I have done profiling and it's not the SQL that is making the ReportViewer render slowly on the first call. On the first call, the ReportViewer control locks up the UI thread and makes the program unresponsive. After about 5 seconds the ReportViewer will unlock the UI thread and display "Report is being generated" and then

How to cascade parameters in SSRS having specific values

假装没事ソ 提交于 2019-12-04 05:56:47
问题 I have 2 parameters 'Groupby1' and 'Groupby2' in my report,for the first parameters i have specified some values like Column A,column B,Column C. Now i need to make the 2nd parameter cascading based on the first one like if i select Column A in Groupby1 parameter it should display only Column B and Column C in Groupby2 parameter.Is this achievable? 回答1: Yes, it's easily achievable. The trick is to make a dataset dependent on just the first parameter, and use it's results for the available