Microsoft Visual Studio – How to set forecolor of textbox when control is set programatically to readonly

I have found that if my textbox control is set to ReadOnly= True at design time, I can change the forecolor programmatically without a hitch.

If my textbox control is set to ReadOnly = False at design time, and then …

SQL Server Reporting Services (SSRS) – Alternate row colors with no group, 1 group, or multiple groups

In order to do alternate row coloring for an SSRS report that has grouping, you need an expression for your BackgroundColor property different than the typical:

=iif(rownumber (nothing) mod 2 = 0, "LightGrey", "White")

You can use the following expression …

SQL Server Management Studio – Clear Find and Replace window history

In Regedit:

For SQL Server 2005 :
HKEY_CURRENT_USER\Software\Microsoft\Microsoft SQL Server\90\Tools\Shell\Find

For SQL Server 2008 :
HKEY_CURRENT_USER\Software\Microsoft\Microsoft SQL Server\100\Tools\Shell\Find

For SQL Server 2012 :
HKEY_CURRENT_USER\Software\Microsoft\SQL Server Management Studio\11.0\Find

Remove the Find and Replace items.…