Welcome to MSDN Blogs Sign in | Join | Help

Browse by Tags

All Tags » .NET Programming   (RSS)

How to get the active Team Foundation Server and Project from an Add-In

Ed Hintz posted "How to Write a Team Foundation Version Control Add-in for Visual Studio" which is a great guide to writing an add-in to integrate with Team Foundation version control. I won't repeat that info her. If you want to do something that is

Flashing Dialogboxes

This example demonstrates how to flash a dialog in the taskbar after performing a long running operation from the command line. A good example of how this is useful is in the VS Team Foundation version control toolset. Naturally, it includes a command

Overcoming a .NET ListView CheckBoxes quirk

In the Visual Studio Team Foundation version control UI, we display your pending changes in a ListView control. That ListView has CheckeBoxes set to true as we allow you to perform a variety of operations on the checked items. At the same time we want
Posted by hippietim | 1 Comments

Give the .NET loader a hand - how to load assemblies from VS PrivateAssemblies

This program demonstrates how to use the AppDomain.AssemblyResolve event to help the .NET loader get assemblies loaded that it can't find. The VS Team Foundation edition ships with a number of assemblies you may want to reference in your own apps. Most

WinForms ListView Performance - ListView collections

The WinForms ListView has a few very handy collections - CheckedItems and CheckedIndices. SelectedItems is a collection of the ListViewItems that are selected. SelectedIndices is a collection of the indexes of the ListViewItems that are selected. Those
Posted by hippietim | 1 Comments

WinForms ListView Performance - Initializing checked states

CheckBoxes in a WinForms ListView are of course a bit simpler to use than dealing the underlying Win32 control directly. WinForms deals with the ListView structures and the WM_NOTIFY messages. Of course this comes at a cost. Here's a simple demonstration
Posted by hippietim | 2 Comments

WinForms ListView Performance

While working on improving the performance of the version control UI for Visual Studio Team Foundation Server, I encountered a number of potential problems with the WinForms ListView control. As it turns out, adding items to a ListView can be VERY expensive
Posted by hippietim | 4 Comments
 
Page view tracker