Sign in
Rants of a Hippie Coder
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
.NET Programming
Internet Explorer
Programming
Random Rants
Team Foundation Server
Browse by Tags
MSDN Blogs
>
Rants of a Hippie Coder
>
All Tags
>
programming
Tagged Content List
Blog Post:
How to get the active Team Foundation Server and Project from an Add-In
hippietim
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 related to the active Team Server and/or Project from...
on
29 Mar 2006
Blog Post:
Flashing Dialogboxes
hippietim
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 line utility (TF.EXE) to perform source control operations...
on
28 Mar 2006
Blog Post:
Overcoming a .NET ListView CheckBoxes quirk
hippietim
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 you to be able to double click on an item in the...
on
27 Mar 2006
Blog Post:
Give the .NET loader a hand - how to load assemblies from VS PrivateAssemblies
hippietim
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 of the important ones are installed in the GAC...
on
24 Mar 2006
Blog Post:
WinForms ListView Performance - ListView collections
hippietim
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 values can be used to pick out ListViewItems from...
on
21 Mar 2006
Blog Post:
WinForms ListView Performance - Initializing checked states
hippietim
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 of how to tweak things for better performance...
on
20 Mar 2006
Blog Post:
WinForms ListView Performance
hippietim
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 if the list is sorted (as they should be...
on
20 Mar 2006
Blog Post:
I hate magic
hippietim
C++ magic in particular. What's wrong with this code? #define BLANK_IF_NULL(_s_) ((_s_) ? (_s_) : (TEXT(""))) We had a macro like this in MSN Explorer that would ensure you didn't pass a NULL string around. Well there's lots of things wrong with the code - the standard _s_ will get evaluated multiple...
on
3 Feb 2005
Page 1 of 1 (8 items)