Posts

Showing posts from June, 2007

Creating and Deploying Reporting Services using Custom Assembly

Image
Creating and Deploying Reporting Services using Custom Assembly ( step by step ) Well, it was really a night mare to get it done. I tried too many ways but could get it done. While browsing internet I read an article ( here ) written by Rod Paddock and though to do exactly the same as he did and it work. Here is the step by step detail. Context : I use Custom Assembly to fetch colours from database. So I use custom assembly in Background Expression of Report Cell. Steps to create Custom Assembly : 1. Create a “Class Library” Project. (It must be a class library otherwise you will face problem.) 2. Create Shared public function. (This is a function which we will use to fetch colour from report.) 3. Create another method which will connect to the database and will fetch colour from the table. 4. At the beginning of this method ( which will connect to the database) write following code. Dim permission As SqlClientPermission = New SqlClientPermission(PermissionState.Unrestricted) permis...