Attention: We are retiring the ASP.NET Community Blogs. Learn more >

Jan Tielens' Bloggings

Joy, frustration, excitement, madness, aha's, headaches, ... codito ergo sum!

  • Extending Intellisense: TypeFinder Macro

    Namespaces in .NET are great! But how many times do you find yourself typing Private r As xmlreader, and then noticing that there is no Imports/using statement for the System.Xml Namespace? Then you would have to scroll to the top of your document and add the Imports/using statement by hand. Alternatively you could choose to add the namespace to your declaration: Private r As System.Xml.XmlReader. Since we are all developers, why not develop something to help developers with this tedious task of namespace lookups?

  • Remembering code snippets (eg. Global Error Handler)

    Today I was searching for a code snippet that I had used some time ago. But I couldn't find it! I knew I had used it before in a project, but ofcourse I hadn't the source code with me. I work on different locations (customer's office, office, home) on different machines (customer's pc, laptop, desktop) and I don't copy all my projects to each pc. My next thought was: “No problem, just use Google!”. But when you really want to find something, the chances are high that you can't remember the exact title of the article or website you've read (Murphy's law). So no luck with Google today. Finally I went home and looked up the snippet in my old project...

  • I'm back

    I'm back from my honeymoon to Thailand. It was an incredible holiday, we saw so many beautiful things and the people were so kind: I can recommend it to everyone!

  • Out of the office until the 4th of August (Honeymoon!)

    Last weekend (12th of July (thx Mike)), Nele and me had our mariage. It was an incredible day, with very good weather (not too hot), a lot of moments that I will never forget, and a lot of people that made our day so beautiful. I want to thank all of you who sent congratulations!

  • As many pc's as I can dream of...

    A few days ago I installed VMWare Workstation 4 on my PC.

    VMware Workstation is powerful virtual machine software for the desktop. Optimized for the power user, VMware Workstation runs multiple operating systems -- including Microsoft Windows, Linux, and Novell NetWare -- simultaneously on a single PC in fully networked, portable virtual machines. VMware Workstation provides more choice, greater flexibility, and more powerful functionality than any other virtual machine software in the marketplace today.

  • My MSDN Belux Article online!

    Today my article about Collections in .NET was published on the MSDN Belux site. The article is the first of two about the collection classes in the .NET Framework:
    <quote>
    When you lookup the System.Collections namespace in the MSDN Library, you will find over 10 different classes. Choosing the right one for using in your application can be hard. This article will provide an overview and give some guidelines for choosing the right collection. The next article in this series will focus on building custom strongly typed collections and applying advanced techniques on them, such as data binding and sorting.
    </quote>