Recent Posts

Fabrice's weblog

Fabrice's weblog

Return To Blog Listing

Mainly about .NET and software engineering.

Search This Blog's Tags For:

Recent Posts Tagged With 'tools'

  • MVVM frameworks galore

    Posted on Wednesday November 11th, 2009 at 07:28 in tools, .net, ui

    The MVVM pattern (Model-View-ViewModel, also known as M-V-VM, the PresentationModel pattern, or the ViewModel pattern) appeared a long time ago now, but it took some time before it became more documented and well known. Over the last few months, MVVM...

  • New article: How to detect and avoid memory and resources leaks in .NET applications

    Posted on Monday November 2nd, 2009 at 17:32 in tips, architecture, tools, .net, source

    My new article, which I've been preparing over the last few months, is now available. It's about memory and resources leaks in .NET.You'll find it in English on MSDN and in French on DotNetGuru.org. It's also available in PDF in English and in French...

  • fivesecondtest, quick usability testing

    Posted on Tuesday October 6th, 2009 at 06:49 in tools, sites, ui, general software development

    fivesecondtest.com, "A simple online usability test that helps you identify the most prominent elements of your user interfaces."Simple yet great idea.Here is an example: Help me improve a design I'm working on by doing a five second test....

  • New LINQ tools category on SharpToolbox.com

    Posted on Saturday October 3rd, 2009 at 09:55 in tools, .net, LINQ, (sharp|java)toolbox

    I've just moved the LINQ tools referenced on SharpToolbox.com to a new dedicated LINQ category.20 tools and providers are listed for the moment. I'll add more shortly.See Jim's blog for more resources. Cross-posted from http://linqinaction.net...

  • The "Error creating window handle" exception and the Desktop Heap

    Posted on Friday August 7th, 2009 at 11:36 in tips, tools, .net, ui

    "Error creating window handle" When a big Windows Forms application I'm working on for a client is used actively, users often get "Error creating window handle" exceptions. Aside from the fact that the application consumes too much resources, which...

  • Who deserves a free MSDN subscription?

    Posted on Monday June 29th, 2009 at 10:54 in tools, .net, (sharp|java)toolbox

    I have a free one-year MSDN subscription to offer. I believe that it has to be activated before June 30, so, I don't have time to organize a contest or something...The offer is MSDN Premium, which gives you access to a whole set of Microsoft software...

  • LINQ in Action samples in LINQPad

    Posted on Saturday June 6th, 2009 at 08:12 in tools, .net, source, LINQ

    Do you know LINQPad? It's a really simple but great tool for testing LINQ queries. Not only that, but it can be used to test all kinds of C# and VB code snippets. Another great thing about LINQPad is that it comes with code samples. Until now the ...

  • New York Times abandons WPF and Silverlight in favor of AIR

    Posted on Friday May 22nd, 2009 at 09:25 in news, opinions, tools, .net, ui

    The first version of the New York Times Reader was showcased in 2006 as one of the first and major WPF applications. Then, the Times Reader was ported to Silverlight, so it can work on non-Windows platforms such as Mac OS and Linux. The fact that WPF...

  • Localization in WPF

    Posted on Tuesday May 12th, 2009 at 05:21 in tools, .net, source, ui

    Several techniques exist for localizing WPF applications. I have yet to study them before making a choice.Here are some resources I've collected:WPF Globalization and Localization Overview (MSDN)http://www.codeproject.com/KB/WPF/WPFUsingLocbaml.aspxh...

  • Fix for Visual Studio 2008 crash with XAML files

    Posted on Monday May 11th, 2009 at 11:32 in tips, tools, .net

    Does your Visual Studio 2008 SP1 crash when you open some XAML files? It started to happen to me, for some unknown reason.What I saw was Visual Studio completely disappearing after opening a XAML file, with the devenv.exe process being unloaded. The ...

  • Your favorite .NET and Java tools

    Posted on Tuesday March 17th, 2009 at 10:22 in tools, .net, (sharp|java)toolbox

    Whatever you're doing with .NET or Java, you have to deal with a lot of tools and libraries. If you need to find new ones, you can consult SharpToolbox.com and JavaToolbox.com. You'll find there more than 2000 tools, libraries and add-ins! The main g...

  • GUI design and prototyping tools

    Posted on Sunday February 15th, 2009 at 07:48 in tools, .net

    As my previous post shows, I have a growing interest in user experience and UI design patterns. I'm also interested in mockups and prototyping tools, which are of course directly related to UI design and user experience. Here are the tools I've ident...

  • IQToolkit, building your own LINQ IQueryable provider

    Posted on Saturday November 22nd, 2008 at 17:59 in tools, .net, LINQ

    Matt Warren, who provides the most detailed HOWTO for creating your own LINQ IQueryable provider, has now published a dedicated toolkit on CodePlex: IQToolkit is essential if you are building your own LINQ IQueryable provider. It contains commo...

  • XAML markup formatting in Visual Studio

    Posted on Saturday June 7th, 2008 at 08:32 in tools, .net, source

    I'm using WPF these days, and so reading and writing a lot of XAML markup. As with any code or text, reading and navigation are made easier with a clean format. In my XAML files, I've been putting the XML attributes aligned vertically, below their XM...

  • .NET sessions at the Université du SI and .NET 3.5+ expertise

    Posted on Monday June 2nd, 2008 at 16:09 in architecture, tools, .net, LINQ

    I announced in April that I'll be part of the Université du Système d'Information event on July 2 and 3. With Frédéric Schäfer, we're actively preparing our session, which will allow you to discover in action no less than .NET 3.5, Visual Studio...

  • VS 2008 and .NET 3.5 SP1 Beta changes for LINQ to SQL, and more

    Posted on Wednesday May 14th, 2008 at 18:43 in tools, .net, LINQ

    The ADO.NET team details on its blog what has changed for LINQ to SQL with the release of Visual Studio 2008 and .NET 3.5 Service Pack 1 Beta:Across the LINQ to SQL we have made numerous bug fixes, better SQL translation for queries comparing nullabl...

  • Great fluent interface sample: the fluent repeater

    Posted on Thursday April 24th, 2008 at 08:52 in tools, .net, source

    I'm not that much a fan of fluent interfaces, but in some cases they are well fit.A great example is the fluent repeater created by Adrian Aisemberg. It's also a good example if you don't know what a fluent interface is.Here is sample code that uses ...