The short answer is to pass a string array in the value portion of the parameter object.
First, let’s look at the code in a visual basic forms application that builds the parameter and calls the report.
Let’s say we …
The short answer is to pass a string array in the value portion of the parameter object.
First, let’s look at the code in a visual basic forms application that builds the parameter and calls the report.
Let’s say we …
Let’s say you want to keep hidden from a user of your website the actual aspx page name along with any query string passed to it.
Here is an example of a complete url you want to mask:
www.example.com/original.aspx?parameter1=12345
The …
This article assumes you are using roles and have assigned roles to certain users that log in to your website.
Let’s say I have an aspx page with four hyperlinks. I want HyperLink3 and HyperLink4 to be made visible on …
This post will give you step by step instructions on how to fix the issue in Microsoft SQL Server Management Studio that causes the studio to hang, spin, or loop forever when trying to select a database from the plethora …
Let’s say I am concatenating a string with values from a collection. Every time I add a value, I want to append with a comma (,) and a space to separate. I don’t know at run time how many objects …
When working with a menu control, I found that Internet Explorer 9 can’t handle setting both the static and dynamic hover style properties of the menu control. It works fine in Chrome and Firefox, but not IE-9.
To make IE-9 …
by REAL TEAM on AUGUST 10, 2012
UPDATED OCTOBER 11, 2012: Chrome 22 (released on Sept. 26, 2012) does not currently support our Download This Video feature. At this time, the
I came across a scenario where I needed to write conditional statements in my WHERE clause of my SQL that was more complex than what a ‘CASE WHEN’ statement could provide.
I have two parameters, @FieldA and @FieldB. Both …
Have you ever witnessed running a report in the Business Intelligence Development Studio only to see data that you know does not exist anymore in your SQL Database?
In certain circumstances, when previewing a report in BIDS, the environment bypasses …
You have a collection of objects. You want a subset of that collection. Instead of making another SQL call to the database or using programming code to create a filtered subset of your original collection, you can accomplish this simply …