CustomReportItem
There are 3 entries for the tag
CustomReportItem
I have been fighting a "permissions" issue with Sql Server Reporting Services (SSRS) for the last few days. When I run my Custom Report Item (CRI) on my local instance of SSRS it works fine. But when I try to install the CRI on a dedicated server running SSRS I was getting the following error:That assembly does not allow partially trusted callers.When I compared my local rssrvpolicy.config file with the one on the server they were identical. So I shouldn't have been getting the permissions error. Things were complicated by the fact that I was trying to troubleshoot the issue...
Debugging Custom Report Item controls for Sql Server Reporting ServicesWhen you are developing a control which inherits from CustomReportItem for Sql Server Reporting Services (SSRS) you will certainly want to debug your code. The documentation is shoddy and at best incomplete, and the examples are poorly explained. So being able to debug your control is paramount to your success.The way to setup debugging follow these steps:Open the project properties for your custom report item (right click project - Properties...) Set debug properties (Click "Debug" tab on the left) Set start action (under start action click "Start External Program") Browse for...
For my current project, I've been attempting something that would seem simple to do, but can't be done in Sql Server Reporting Services (SSRS). I am trying to draw 2 simple rectangles on the grid of a scatter (XY) chart. The reason for doing this is to visually indicate good and bad regions of data. But when the report is rendered (at least using the Html viewer) the rectanges I draw above the chart have moved. This is because items cannot overlap in the web viewer. I have come to find that I can create a CustomReportItem based on any...