DotNetShoutout - Stories tagged with Reports
8
Shouts

Error Reporting Service with Graphical Reports

published 762 days, 13 hours, 2 minutes ago posted by tduponttdupont 763 days, 5 hours, 16 minutes ago
Wednesday, May 18, 2011 6:34:38 AM GMT Tuesday, May 17, 2011 2:20:34 PM GMT
CodeSmith Insight now offers graphical reports that show you the health of your application. CodeSmith Insight's reports can provide visualizations that are invaluable to the maintenance, support, and growth of your applications. CodeSmith Insight is an Error Reporting Service that ensures you will always receive a complete report of every issue that your end users will experience. Insight will automatically capture, submit, organize, and prioritize all errors that occur in your applications. Once this ... (more)
category: UX | clicked: 0 | 1 comment | | source: community.codesmithtools.com
tags: Error Reporting Service, CodeSmith Insight, CodeSmith, Reports
6
Shouts

RESTful WCF Service – How to get browser version at server code

published 1037 days, 6 hours, 43 minutes ago posted by http://outcoldman.ru/openidhttp://outcoldman.ru/openid 1039 days, 4 hours, 33 minutes ago
Monday, August 16, 2010 12:52:46 PM GMT Saturday, August 14, 2010 3:03:39 PM GMT
At our product we have a client Silverlight part and server-code part, which contains a lot of WCF methods. We don’t use ASP.NET Compatible mode, because we want to leave an opportunity to deploy server part to server without web-server role (without IIS). Really, I don’t know why we chose this way, because all of our installations at current moment are on IIS. But we have what we have, so we haven’t ASP.NET Compatible mode, and as an expected result we can’t get HttpContext.Current instance at server WC... (more)
category: Metro | clicked: 1 | 1 comment | | source: outcoldman.ru
tags: .NET, Silverlight, PDF, C#, Internet Explorer 8, RESTful, WCF, Firefox, Reports
3
Shouts

Expand Collapse columns in a table SSRS

posted by PraveenPraveen 1248 days, 23 hours, 52 minutes ago
Saturday, January 16, 2010 7:44:41 PM GMT
Problem: How to make columns collapsible, expandable in table Sql server reporting services. Solution: I asked to some people, how to do this, lot of people proposed me to use matrix. But my data is simple data and has 14 columns like firstname, last name, state, city, zipcode, q1, q2, q3, h1,h2, h3 etc… I need to display the columns q1, q2, q3; h1,h2,h3 expansible and collapsible. By default when user see the report, i need to show only firstname, last name, state, city, zipcode, q1, h1 columns. But... (more)
category: Data | clicked: 3 | comment | | source: praveenbattula.blogspot.com
tags: SQL Server, SSRS, Reports
3
Shouts

Report viewer control authentication – Part1 – Windows Authentication

posted by PraveenPraveen 1249 days, 5 hours, 37 minutes ago
Saturday, January 16, 2010 1:59:16 PM GMT
Report viewer control, I think everyone knows what it is and how to use it. Today, I want to tell you how to authenticate the report viewer control in ASP.NET web application or windows application. The report viewer control passing the credentials is same in both windows and web applications. How to pass windows credentials to the report viewer control?Either you can set the orYou can directly pass the credentials object to the report viewer control as shown below. If default credentials then System... (more)
category: Data | clicked: 32 | comment | | source: praveenbattula.blogspot.com
tags: Report Viewer, Authentication, Reports, SQL Server Reporting Services
7
Shouts

Report viewer control authentication – Part 2 – Forms Authentication

published 1249 days, 8 hours, 49 minutes ago posted by PraveenPraveen 1249 days, 23 hours, 28 minutes ago
Saturday, January 16, 2010 10:47:24 AM GMT Friday, January 15, 2010 8:08:07 PM GMT
If the reporting services configured to use forms authentication and you need to show the reports in the custom developed applications then the need of processing authentication the report viewer control through the code. Report viewer control authentication using windows authentication is described in the part 1 here. Now, we will discuss the authenticating forms authentication through C# code. If we are are developing windows application and want to use report viewer control, then we need to impleme... (more)
category: Data | clicked: 10 | comment | | source: praveenbattula.blogspot.com
tags: Forms Authentication, C#, SSRS, Reports, SQL Server Reporting Services
2
Shouts

Date formatting in Sql server reporting services

posted by PraveenPraveen 1252 days, 22 hours, 55 minutes ago
Tuesday, January 12, 2010 8:41:30 PM GMT
When we work with reporting services, we come across with different requirements to display the date in different formats. So, we need to know the formats we can give to get required value. Sql server reporting services supports different formats as T-sql and C# does. So, I just want to give the valid formats I use to display the date in required format. =Format(Fields!DateCreated.Value, “M/d/yy”) - 3/14/1986 =Format(Fields!DateCreated.Value, “d-MMMM-yy”) - 14-March-86 =Format(Fields!Dat... (more)
category: Data | clicked: 0 | comment | | source: praveenbattula.blogspot.com
tags: SQL Server, Formatting, Date, Reports
2
Shouts

Fix to Divided by zero problem in Sql server reports

posted by PraveenPraveen 1252 days, 22 hours, 55 minutes ago
Tuesday, January 12, 2010 8:40:53 PM GMT
When we work with reports, most of the times we need to do complex calculations and logic. When we do calculations, there are chances of using the division operation. So, need of checking the divided by zero problem every time. So the solution I propose is, write a simple custom function and call it wherever needed. For every report there is a part called Code and there we can write the custom VB code. Public Function CheckDividedByZero(ByVal param1 As Double, ByVal param2 As Double) As Double  ... (more)
category: Data | clicked: 0 | comment | | source: praveenbattula.blogspot.com
tags: SQL Server, Reports
8
Shouts

Data Formatting in sql server reporting services

published 1255 days, 7 hours, 28 minutes ago posted by PraveenPraveen 1257 days, 6 hours, 18 minutes ago
Sunday, January 10, 2010 12:07:57 PM GMT Friday, January 08, 2010 1:18:32 PM GMT
In Sql server reporting services the formatting the data is pretty much simple as we have plenty of built in options available for percentage, numbers, decimal, currency etc. So, just them to data format and display the data as you want. Below are most commonly use format for the usual reports.c – Currencyd – Decimaln – Numberp – Percentage. If you want two decimal places in decimal number then in the format option [Text box properties -> format] then the  format should be d2. In percentage if you want ... (more)
category: Data | clicked: 0 | comment | | source: praveenbattula.blogspot.com
tags: SQL Server, Formatting, Reports
8
Shouts

Charting in Reports for WinForms - Win Dev Blog

published 1275 days, 5 hours, 50 minutes ago posted by et213et213 1277 days, 21 hours, 57 minutes ago
Monday, December 21, 2009 1:45:49 PM GMT Friday, December 18, 2009 9:39:36 PM GMT
Charting in Reports for WinForms This article describes Aggregate Charting, one of the cool new features introduced in ComponentOne Reports for WinForms in the 2009 v3 release. ComponentOne Reports for WinForms has always supported chart fields using its extensible custom field architecture. The Chart field is implemented as a custom field in the C1.Win.C1Report.CustomFields.2.dll assembly, which is installed with the report designer application and is also included as a sample with full source ... (more)
category: Smart Client | clicked: 1 | comment | | source: helpcentral.componentone.com
tags: Windows Forms, Charts, WinForms, Reports