I didn't find a way to delete projects from my Recent Projects List in visual studio 2005, so I made this Add-In to manage them. Place the 2 files in the RecentProjectsManager.zip (Attached) into the Add-In folder: MyDocuments\Visual Studio 2005\Addins Load the visual studio, click "Tools" and then "Recent Projects Manager" Please let me know about any problems you encountered: gilad.lavian@gmail.com
I found a cool trick for auto completing some code blocks. Personally, I find it very convenient while i'm in hyperspace speed coding. Its called snippets and its built-in in Visual Studio, and you can create one yoursefe. When you start a new "try" block, after finishing to write "try", immediately press TAB button, it will auto complete to: try { } catch ( Exception ) { throw ; } When you start a new condition block, "if (2 > 1)", and after you add the "else"...