Feb 13, 2010
The Visual Studio 2010 and .NET Framework 4 Training Kit includes presentations, hands-on labs, and demos. This content is designed to help you learn how to utilize the Visual Studio 2010 features and a variety of framework technologies including:
- C# 4.0
- Visual Basic 10
- F#
- Parallel Extensions
- Windows Communication Foundation
- Windows Workflow
- Windows Presentation Foundation
- ASP.NET 4
- Windows 7
- Entity Framework
- ADO.NET Data Services
- Managed Extensibility Framework
- Visual Studio Team System
This version of the Training Kit works with Visual Studio 2010 RC and .NET Framework 4 RC.
http://www.microsoft.com/downloads/details.aspx?familyid=752CB725-969B-4732-A383-ED5740F02E93&displaylang=en
Oct 3, 2009
by Mahesh Krishnan on http://blogesh.wordpress.com/2008/09/09/visual-studio-debugging-tips-and-tricks/
1. Debugging/Stepping into Framework code
2. Moving the Execution Point
3. Step into Specific
4. Step over properties and operators
5. Tracepoints
6. Conditional break points and trace points
7. The DebuggerDisplay attribute
8. The DebuggerBrowsable attribute
9. The DebuggerTypeProxy attribute
10. The System.Diagnositcs Namespace
Jun 13, 2009
5 debugging screencasts by Brian Hitney (Microsoft developer evangelist) http://structuretoobig.com/
- Part 1 is primarily an introduction into setting breakpoints … turns out there are number of ways to set breakpoints other than just clicking in the gutter.
http://channel9.msdn.com/posts/dpeeast/DevNugget-Debugging-Tips-and-Tricks-Part-1/
- In part 2, he looks at using breakpoint modifiers – specifically, using the hit count modifier, and then the condition modifier. The condition modifier can be incredibly powerful – while we can corrupt the state of our application pretty easily (as he will demonstrate), it starts to open a whole new world for debugging more efficiently.
http://channel9.msdn.com/posts/dpeeast/DevNugget-Debugging-Tips-and-Tricks-Part-2/
- In part 3, we’ll dive a little deeper into some conditions by writing methods to help debug our application, then look at using the filter breakpoint modifier to debug multithreaded applications. Finally, we’ll take a quick look at tracepoints.
http://channel9.msdn.com/posts/dpeeast/DevNugget-Debugging-Tips-and-Tricks-Part-3/
- In part 4, we’ll look at the watch windows, the immediate window, and Make Object ID command.
http://channel9.msdn.com/posts/dpeeast/DevNugget-Debugging-Tips-and-Tricks-Part-4/
- In part 5, we’ll look at how to use the set next statement while debugging. We’ll also look at setting up the .NET Reference Source Code for stepping through the .NET BCLs, followed by some exception handling tips. Finally, we’ll take a look at using Mole (a VS visualizer) to further enhance the debugging experience.
http://channel9.msdn.com/posts/dpeeast/DevNugget-Debugging-Tips-and-Tricks-Part-5/
Jan 29, 2009
Problem with unavailable WSPBuilder menu (invoked by right click on project in solution explorer [img 1] or from Tools menu [img 2]) in Visual Studio 2008 can be caused by three reason

[img 1]

[img 2]
- The first reason can be unchecked Startup checkbox in Add-in Manager.
Fix is very simple, check Startup checkbox for WSPBuilder [img 3] and if menu do not show after that, try to restart Visual Studio.

[img 3]
- The second reason can be caused in the case you have installed english version of Visual Studio 2008 on non-english Windows. On Windows XP search english version of Visual Studio 2008 AddIn files in directory "C:\Documents and Settings\All Users\Application Data\Microsoft\MSEnvShared\Addins\" and here is the problem. If you have installed non-english Windows XP, then "Application Data" folder have localized name (for example "Data aplikací" in czech language).
Fix is as simple as in the first case, create english path "Application Data\Microsoft\MSEnvShared\Addins\" in "C:\Documents and Settings\All Users\" and copy WSPTools.VisualStudio.VSAddIn.AddIn to created path [img 4]. On Windows Vista is fix like on XP.

[img 4]
- The third reason is simple "It’s broken…", try reinstall 1. WSPBuilder, 2. VS, 3. Windows
Nov 26, 2008
VS plugin / Helpful tool’s
- Resource Refactoring Tool Resource Refactoring Tool is an add-in for Microsoft Visual Studio 2005 Standard or above that allows developers to refactor string literals in to resource files directly from the code window.


- Zeta Resource Editor A small utility application to edit .NET string resources inside multiple resource files (.resx) in parallel.

- RESX to XLS conversion for multi-language support Easily convert your RESX projects files to Excel and back to localized RESX
- Resx2word and Word2resx command-line utilities to convert your Microsoft RESX 2.0 resource files into Microsoft Word 2003 documents (and vice-versa). The purpose of such a conversion is to let the translators work in a more convenient and familiar environment (i.e. MS Word) as opposed to raw XML files editor.

- ResEx composite, translation friendly .NET Resource editor

Oct 26, 2008
how to:
This procedure is verified and fully functional on Windows XP as CLIENT and Windows 2003 as SERVER for Visual Studio 2005 and 2008.
SERVER – remote computer/server, CLIENT – local computer with Visual Studio
- SERVER: create local user account with same user name and password as account under which run Visual Studio on client computer. Put this user to Local Administrator Group.
- SERVER: run "Stored User Names and Passwords" (over "Control Panel" or from command line "%windir%\system32\rundll32.exe keymgr.dll, KRShowKeyMgr") and add user from step 1. for authentificate to client


- SERVER: Download and install (or copy from client, 2005 version from C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\Remote Debugger or 2008 version from C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\Remote Debugger\) "Visual Studio Remote Debugging Monitor" *
- SERVER: run "Visual Studio Remote Debugging Monitor" * under local account from step 1. use "Run as…" and fill SERVER\user name + password

- CLIENT: run "Stored User Names and Passwords" (from command line "%windir%\system32\rundll32.exe keymgr.dll, KRShowKeyMgr") and add user from step 1. for authentificate to server


- CLIENT: run Visual Studio 2005 (or 2008), in dialog "Attach to Process" fill to "Qualifier" SERVER, check "Show process from all users", pres enter

and voila, you have successfully configured "Remote Debugging Across Domains"

* you must use same version (2005 or 2008) of Visual Studio and Visual Studio Remote Debugging Monitor
tips:
- if your Visual Studio freeze in attempt to connect to remote server, go to server to "Visual Studio Remote Debugger" to "Options" and temporarily change "Authentication Mode" to "No Authentication (native only)", after that Visual Studio unfreeze and show error cannot connect message…
download:
Visual Studio 2008 Service Pack 1 Remote Debugger
more info/sources:
http://www.wictorwilen.se/Post/How-to-get-Remote-Debugging-work-properly.aspx
http://www.patrickverbeeten.com/pages/ContentItemPage.aspx?id=9&item=67&p=true
http://msdn.microsoft.com/en-us/library/9y5b4b4f.aspx
http://blogs.msdn.com/greggm/archive/2004/10/04/237519.aspx
http://support.microsoft.com/kb/910448/en-us