Software design rant - Notepad ++
September 5th, 2008

When using software product while you work, the best product is the one you don’t notice. And today I’ve noticed one: Notepad++.

Notepad++ is a great text editor and I’m using it instead of classic Windows Notepad. It starts as fast as Notepad and it’s design is minimalistic but it has features like syntax coloring, hex editing and tabbed interface. I have many tabs constantly opened with very different content in them. Some tabs are just scratchpads where i write notes, phone numbers or names. Others contain xml or html documents I’ve edited of viewed or maybe pieces of php or javascript code. One tool, one window, everything conveniently accessible.

So, today I’m talking on the phone and a client wants to give me his IP address. I’m kinda sad when in this situation some of my colleagues start to search frantically between papers on their table for a pen and paper instead of writing the number somewhere on a PC they sitting behind. I’m always ready to write a note or two in conveniently opened tab in Notepad ++, but today when I wanted to write a client’s number, Notepad++ shown me a modal message:

Don'be scared, it's not real. That's only a screenshot

So, now I’m in a situation where I must quickly write down a phone number and one of my favorite software forces me to make decision which will definitely result in lost data and I need to decide what’s more important: something I wrote or something some other application wrote in the same file, and all that, of course, while I’m trying to remember a sequence of 12 numbers. It’s interesting how well this application defended itself from my attempts to write a few numbers in it. New tab? No, message box is modal. Existing tab? No, message box is modal and blinking. Then I tried to open a new instance. No way, only one instance is allowed. I’ve ended asking the client to repeat the number and writing it in Visual Studio somewhere between Catch and Finally keywords.

Sometimes it’s only an inconvenience. Another time you want to put your fist through this message box. But definitely is a proof how you can spoil a good software as Notepad++ and a good concept as tabbed interface with a careless design. I shouldn’t be able to write in the file in question until I resolve the conflict, but this message box is important for only this tab, for only one document. There is no good reason to prevent me to use every other tab. By the way, i should be able to save both versions of this document, but this is another story.

The same problem is with browsers. Click this link. and see what happens. See? My worthless but egoistic message disabled your complete browser until you read it or at least click on it.

So, if you are a programmer, don’t be a self-centered, selfish bastard and let people use their tabs. Don’t write alert(”), MessageBox(”"), msgbox(”") or raise any other modal window until you are completely sure that it won’t interfere with anything other then your humble corner of the users screen.

Category: Software
Tags:

    2 Responses to “Software design rant - Notepad ++”

  1. Laurent Says:

    Hey I love Notepad++ and I love this alert feature.
    The feature you don’t like (or you don’t need) doesn’t mean that it’s useless for anyone else.

    So why don’t you save this opinion for yourself, or better than that, use another editor since it’s not good enough for you.

  2. hugo Says:

    I love Notepad++ too, I wouldn’t use it otherwise. And the alert feature is useful too, just as I wrote.

    My post is just about how some minor design choice be a major obstacle in some scenarios.

Was this article helpful? Improve it with your comment.