Microsoft Visual Studio 2008 keyboard shortcuts

0 Comments

  Keyboard Shortcut Description F12 Go to definition Ctrl+Shift+8 Go back to place you invoked “Got to definition (F12)” Shift+F12 Go to references, if you used F12 you could use Shift+F12 to go back to

Finding Undisposed Objects

0 Comments

This article describes how to create a application that can show you all undisposed objects in running assemblies. http://www.codeproject.com/KB/dotnet/undisposed.aspx

Best Practices TSQL

0 Comments

This post will be edited each time I find a best practice for TSQL Never use <,>,<=,=> on datetime, always use datediff

Microsoft Windows 7 and the things I noticed

0 Comments

I just installed Microsoft Windows 7 and the things I noticed where: (these are not necessarily new features) > During the installation you can simply set Language: English, Regional Settings: Dutch and Keyboard layout: Us

How to check if column exists in SQL Server table

0 Comments

SQL Server 2005 onwards: if not exists(select 1 from sys.columns where Name = N’columnName’ and Object_ID = Object_ID(N’tableName’)) begin     — Column does not exist end http://stackoverflow.com/questions/133031/how-to-check-if-column-exists-in-sql-server-table

Best Practices C#

0 Comments

This article will be updated every time I run into a best practice. Checklist Microsoft Visual Studio 2008 Solution and Projects – Solution name should be Customer.Product.sln, like MyCustomer.MyProduct.sln – Project name should be Customer.Product.Subsystem.csproj,