Heat ITSM

In Aggreko we use a product called Heat ITSM to manage our support calls.  Now all of these calls are tracked using its tracking system, but we (Group Development) want to track using Team System. We need some way of moving and syncing items between these two systems. I completed the first part by using […]

Ooooh, RTM Delight

Well, MSDN will be busy today… Visual Studio 2008 Beta 1, Team Foundation Server 2008 Beta 1 and .NET Framework Beta 1 have all been released today. This is grate news as I have been using the Beta for about as long as it has been available and all those applications I have waiting in […]

Vote for your feature

Naked ALM Consulting Logo

I am currently taking votes for which features will make it into the next version of the TFS Sticky Buddy (v1.1 CTP 1), which will move towards v2.0. The current list of features is slim, but specific. Features (11 Votes) Click an item to submit your vote… Votes Status Title 2 Add Second diagram for […]

TFS Sticky Buddy v1.0

This is the first full release of the TFS Sticky Buddy application written in VB.NET 9 and WPF with Visual Studio 2008 Team Suit. The application provides a graphical view of TFS Work Items and allow user to navigate round either the Area (Codeplex Component) or Iteration (Codeplex Release) tree. It displays all the work […]

End of another Sticky week…

Naked ALM Consulting Logo

As you have probably noticed I have been soldiering on with the TFS Sticky Buddy project, and I though I would share. With the next release you will be able to connect to any external (not on same domain) TFS server including CodePlex servers and load up your projects. The TFS Sticky Buddy guest stars […]

TFS Stick Buddy v0.4.0 CTP2 released

All to soon and it is that time again…I have been developing, hell bent on getting a working sticky buddy online, and here it is… Download TFS Stick Buddy v0.4.0 CTP2 Now… With this version you can select what work items you want to display by choosing a Query from the list. You can add […]

TFS Sticky Buddy v0.3.1 CTP1

There is a Community Technology Preview release of the Team Foundation Server Sticky Buddy digital dashboard project that is built using Windows Presentation Foundation (WPF). I have used the source code from the Family.Show project to create functionality and a look that is appealing. You can download it from the Codeplex site and you can […]

Bug in ObservableCollection?

I seam to be having a little problem. Now, this may be me being stupid, but I can’t get an ObservableCollection to work if you pass it a generic type! For example, consider the following code: Public Class ItemBitCollection(Of TItem) Inherits ObservableCollection(Of ItemBit(Of TItem)) End Class Public Class ItemBit(Of TItem) Private m_item As TItem End […]

Creating a better TFS Sticky Buddy (Core)

Over the last week I have been looking at the source for the Family.Show application from Vertigo. I needed to look at methods of presentation of hierarchical information graphically using WPF and I saw this as a good representation of that sort of data. So I se about not only converting it to VB.NET but […]

Loss of My.User.Name is not that bad…

Imports System.DirectoryServices.AccountManagement In WPF development you can’t just use the “My.User.Name” classes as it is not set by default. If you still want to use it you can “My.User.InitializeWithWindowsUser()” to have it setup, but there is a better way. If you are using Active Directory .Net 3.5 has provided a new way to access information… […]