After you’re done working on someone’s computer after hours, have you ever wanted to leave them a message? Here’s a Slab-ette that lets ‘em know what they need to know, then goes away. (more…)
October 16, 2008
October 16, 2008
Command line arguments are a very handy thing to have around. With them, you change connection strings, run special processing, anything. Here’s a quickie slab to get things rolling. (more…)
October 14, 2008
Importing into SQL Server from Excel isn’t as trivial as it sounds, but this slab codes straight outta production code. (more…)
October 9, 2008
SourceSafe. Love it or hate it, we live with it. Have you ever wondered what projects you have checked out? Or tried to get code, only to realize that the sloth we fired six months ago still has code checked out? Here’s a slab that produces the report SS should have! (more…)
October 8, 2008
If you ever need to recreate production web traffic in a different environment this code slab will come in handy. (more…)
October 7, 2008
Unfortunately, SQL Server doesn’t have a built in Title Case function. Roll your own with this slab. (more…)
October 6, 2008
Sortable GridView WebControl
Posted by kueue under C# | Tags: asp.net, custom control, GridView, objectdatasource, sorting |Leave a Comment
This custom GridView control extends the functionality of the ASP.NET GridView to implement sorting in a generic fashion. (more…)
October 6, 2008
Make SQL Server Connection Strings Changable at Runtime
Posted by lanmind under SQL Server, VB.NetLeave a Comment
Strongly typed datasets do not allow you to alter connection strings at runtime by default. These directions show how to change that behavior. (more…)
October 2, 2008
I sort of like showing the user which fields on a form have been changed, especially on forms with a lot going on. Here’s how I do it. (more…)
October 2, 2008
This slab shows you how to list the worksheets of an Excel workbook in a combobox. (more…)