Browse by Tags

All Tags » WinForms (RSS)

Source Code for .NET Framework Libraries to be Released

The decision has been made :) We have just announced that we will release much of the source code for the .NET Framework libraries with the final release of Visual Studio 2008 (which will be later this year). This means that anyone who accepts the Microsoft...

.NET 1.1 to 2.0 Upgrade Post-Mortem

A while back we upgraded from .NET Framework 1.1 to 2.0 on one of our large projects and we have been developing on .NET 2.0 for the last couple of months. This upgrade was a success as we met our objective within the allocated budget and timeframe. I am going to share our experience as it may help other people who are considering upgrading from .NET 1.1 to 2.0. Our application is a rich client (WinForms) solution that interacts with middle-tier via Web Services and is fairly large (more than 250 Visual Studio projects including unit tests) and has a 70% VB.NET / 30% C# code-base. Our primary justification for the upgrade was saving in development effort and costs. We looked at the project plan and identified those tasks that would require less effort if we upgraded to .NET 2.0. These tasks were primarily related to enhancing the application framework (menus, transaction/session management, configuration management, etc) and as you may know many of these features are built into the .NET Framework 2.0. We then subtracted the estimated effort required for the upgrade process. This included the time required for the conversion process, non-productive time if developers had to stop development for a short period of time as well as any productivity loss across the team as they were switching to a different environment (VS2005). Since we have around 50 developers on the team, we would lose one man-day for each 10 minutes of non-productive time so we had to make sure the impact on the development team is minimised. ...

Merging Menus in Non-MDI Applications

Although the MenuStrip class in WinForms 2.0 is originally designed to support MDI applications, it is a life saver when it comes to other applications types. Some of the new applications prefer SDI style over MDI. One of our current smart client projects...
Posted by Mehran Nikoo | with no comments
Filed under: ,