<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
	>
<channel>
	<title>Comments on: Changing the Size of ReportViewer Parameter Dropdown List</title>
	<atom:link href="http://blogs.law.harvard.edu/brandonhaynes/2008/09/24/changing-the-size-of-reportviewer-parameter-dropdown-list/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.law.harvard.edu/brandonhaynes/2008/09/24/changing-the-size-of-reportviewer-parameter-dropdown-list/</link>
	<description>Observations about the intersection of technology, business, and intellectual property</description>
	<lastBuildDate>Wed, 21 Oct 2009 16:16:51 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Chris</title>
		<link>http://blogs.law.harvard.edu/brandonhaynes/2008/09/24/changing-the-size-of-reportviewer-parameter-dropdown-list/comment-page-1/#comment-2515</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 02 Oct 2009 01:50:01 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.law.harvard.edu/brandonhaynes/?p=20#comment-2515</guid>
		<description>Thanks Brandon.

Your post was much more helpful than those by Microsoft, who simply say that it cannot be done!</description>
		<content:encoded><![CDATA[<p>Thanks Brandon.</p>
<p>Your post was much more helpful than those by Microsoft, who simply say that it cannot be done!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Helper</title>
		<link>http://blogs.law.harvard.edu/brandonhaynes/2008/09/24/changing-the-size-of-reportviewer-parameter-dropdown-list/comment-page-1/#comment-45</link>
		<dc:creator>Helper</dc:creator>
		<pubDate>Fri, 27 Feb 2009 05:01:39 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.law.harvard.edu/brandonhaynes/?p=20#comment-45</guid>
		<description>A static CSS solution involves:

1. Deploy report as ise and view in browser
2. View source and locate the control id (Ex. ReportViewerControl_ctl00_ctl07_txtValue). You can usually find the control by searching for the parameter caption text.
3. Ensure the HTMLViewer is in rsreportserver.config.
4. Add an &#039;id&#039; targeted CSS entryin HTMLViewer.cs like the following: #ReportViewerControl_ctl00_ctl07_txtValue {	width: 500px	}</description>
		<content:encoded><![CDATA[<p>A static CSS solution involves:</p>
<p>1. Deploy report as ise and view in browser<br />
2. View source and locate the control id (Ex. ReportViewerControl_ctl00_ctl07_txtValue). You can usually find the control by searching for the parameter caption text.<br />
3. Ensure the HTMLViewer is in rsreportserver.config.<br />
4. Add an &#8216;id&#8217; targeted CSS entryin HTMLViewer.cs like the following: #ReportViewerControl_ctl00_ctl07_txtValue {	width: 500px	}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brandon Haynes</title>
		<link>http://blogs.law.harvard.edu/brandonhaynes/2008/09/24/changing-the-size-of-reportviewer-parameter-dropdown-list/comment-page-1/#comment-29</link>
		<dc:creator>Brandon Haynes</dc:creator>
		<pubDate>Thu, 06 Nov 2008 15:39:25 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.law.harvard.edu/brandonhaynes/?p=20#comment-29</guid>
		<description>Hi Darryl,

This entry was intended for application in a ASP.NET page or user control using the ReportViewer server control (available at http://www.gotreportviewer.com/).

For modification of the layout within the SSRS Report Manager, you will need to look at deploying the technique to the ReportingServices.css stylesheet (by default located in /Program Files/Microsoft SQL Server/MSSQL.#/ReportManager/Styles, where # is your SSRS MSSQL instance  --usually &quot;2&quot;).

Because this stylesheet is not processed by ASP.NET, you would need to hard-code the value therein.  For my local installation, the identifier is &quot;ctl140_ctl00_ctl03_divDropDown&quot;.  You may also have some luck placing a dynamic entry in one of the ASPX pages (perhaps Pages/Report.aspx).

Good luck!</description>
		<content:encoded><![CDATA[<p>Hi Darryl,</p>
<p>This entry was intended for application in a&nbsp;<a href="http://ASP.NET" title="http://ASP. " target="_blank">ASP.NET</a> page or user control using the ReportViewer server control (available at <a href="http://www.gotreportviewer.com/)" rel="nofollow">http://www.gotreportviewer.com/)</a>.</p>
<p>For modification of the layout within the SSRS Report Manager, you will need to look at deploying the technique to the ReportingServices.css stylesheet (by default located in /Program Files/Microsoft SQL Server/MSSQL.#/ReportManager/Styles, where # is your SSRS MSSQL instance  &#8211;usually &#8220;2&#8243;).</p>
<p>Because this stylesheet is not processed by&nbsp;<a href="http://ASP.NET" title="http://ASP. " target="_blank">ASP.NET</a>, you would need to hard-code the value therein.  For my local installation, the identifier is &#8220;ctl140_ctl00_ctl03_divDropDown&#8221;.  You may also have some luck placing a dynamic entry in one of the ASPX pages (perhaps Pages/Report.aspx).</p>
<p>Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darryl</title>
		<link>http://blogs.law.harvard.edu/brandonhaynes/2008/09/24/changing-the-size-of-reportviewer-parameter-dropdown-list/comment-page-1/#comment-28</link>
		<dc:creator>Darryl</dc:creator>
		<pubDate>Wed, 05 Nov 2008 21:49:37 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.law.harvard.edu/brandonhaynes/?p=20#comment-28</guid>
		<description>Can you provide a little more detail as this is exactly what I need to do. Where do I add this? the RDL or one of the reporting services files.

Thanks,</description>
		<content:encoded><![CDATA[<p>Can you provide a little more detail as this is exactly what I need to do. Where do I add this? the RDL or one of the reporting services files.</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brandon Haynes</title>
		<link>http://blogs.law.harvard.edu/brandonhaynes/2008/09/24/changing-the-size-of-reportviewer-parameter-dropdown-list/comment-page-1/#comment-7</link>
		<dc:creator>Brandon Haynes</dc:creator>
		<pubDate>Fri, 26 Sep 2008 14:29:58 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.law.harvard.edu/brandonhaynes/?p=20#comment-7</guid>
		<description>I thought I&#039;d add for anyone reading that this method was tested against the 2005 version of the ReportViewer control; though I do not expect that the method differs significantly for the 2008 revision, it is possible that the exact control structure (and therefore the style identifier) is a bit different.</description>
		<content:encoded><![CDATA[<p>I thought I&#8217;d add for anyone reading that this method was tested against the 2005 version of the ReportViewer control; though I do not expect that the method differs significantly for the 2008 revision, it is possible that the exact control structure (and therefore the style identifier) is a bit different.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
