-
Outlook Auto-Complete Emails
-
Microsoft Codenames
After reading the session synopsis’ for the PDC, I realized how many codenames Microsoft uses for their upcoming technology. So I made a list: indigo atlas longhorn yukon whidbey avalon orcas blackcomb I realize some of these are no longer used by MS, but I still see them referenced. Update: Found this Codename Lookup Chart…
-
PDC 2005
-
Community Server uses some ASP.NET 2.0
Pretty cool those guys are, thinking ahead and all. I just noticed that my CS 1.0 database has all (or near all, not sure) the tables and stored procedures that get installed for ASP.NET 2.0 membership, profiles, role management and personalization. To get it in your database, assuming you have the 2.0 framework installed is…
-
Print PDF Documents That Disable Printing
-
Fun with #region
I am not sure if I did this on accident, or my intern did it, but I found this in my code: #region Constructors//code here #endregion Constructors I was not aware you can put a tag after #endregion. Kind of nice to clearly delineate long regions. Not that it really matters, but Visual Studio allows…
-
Learning C# over VB.NET
-
Using SQL Where Clauses for Searching
One piece of SQL lore I take for granted is COALESCE(). The dictionary definition describes SQL's use pretty close as “To bring or come together into a united whole”. Books Online states in laymans terms that SQL allows you to pass any number of arguments to the function, and it will return the first non-null…
-
Retrieving Values from SQL Exec()
Never had a good reason to do this up until now, but if you need to get a value from a generated sql string, there are a few hoops you must jump through. Example: declare @table varchar(20) ,@username varchar(30)–can't use double quotes w/out this :)SET QUOTED_IDENTIFIER OFF–set your variablesselect @table = 'tblcustomers' ,@username = 'webmaster'–create…
-
Sql Dependencies