Telerik RadComboBox: Readonly

Had to implement a readonly mode for a radcombobox, and learned read-only isn’t supported on this control. Here’s how I simulated it (Note: The items are loaded in code-behind, but that’s irrelevant to this behavior) : <script type=”text/javascript”> var n; n = $find(“<%= rcbMyControl.ClientID %>”); n.readOnly = true; n.set_changeText(false); // Prevent keyboard nav from changing …

Debugging a .NET Site on IIS Express, Not Working [Fixed]

This was driving me nuts. I have a site with mixed code, .asp (vbscript) and .Net (c#) and I wanted to be able to debug the .Net pages to see what’s going on when intended functionality fails. So I ran a fresh build, set breakpoint in my code, started up IIS Express to run my …

SQL Server Management Studio and Macros

There’s a plugin available to add macros to SSMS, but I don’t need more than about 1 functionality: Convert a results column I just copied to a Comma Separated Values (CSV) list.  Usually I select the text, run a Search & Replace, change the options to enable “Selection Only” and “Regular Expression”, type in \n\r, …