vote up 12 vote down star
7

I really want to know if I'm missing anything obvious in the software I'm developing.

What User Interface features that you consider important are often missing in most software?

flag

23 Answers

vote up 11 vote down check

These are some of the UI features that I often find are done badly, or are even missing:

  • Restoring window state properly.
  • Conforming to the average (non-beginner, non-expert) user's mental model.
  • Restricting the number of choices that the user has to make.
  • Restricting the amount that users have to read while using the app.
  • Strong consistency with other apps of the same genre running on the same platform.
  • A well-done Undo / Restore facility.
  • As somebody else remarked, context-sensitive help.
  • Allowing an app to be navigated without the aid of a mouse.
  • Good multi-monitor support.
link|flag
re "restoring window state properly" - Heh! :) I've solved all except (6) in roughly below 300 lines of code. – peterchen Nov 27 '08 at 10:46
+1 for the story in the blog - priceless. – Mark Ransom Dec 5 '08 at 17:29
vote up 16 vote down

Undo is bitchy to code, but very useful to the end users.

Save the location and size of all/any windows, so they are restored whenever the program is restarted.

Read this article on Undo from a usability expert (Aza Raskin): Never Use a Warning When you Mean Undo. Coding undo is not all that hard: examples [1], [1.5], [2].

link|flag
Undo is not bitchy to code... it just takes time. – Chris Nov 27 '08 at 0:25
Remember to check window positions when you restore them - too many apps will "restore" windows outside the visible screen :( – moobaa Nov 27 '08 at 0:33
@moobaa - I hear you. Ever removed a second monitor or a projector only to discover that some app's windows are still on the phantom display? – Paul Tomblin Nov 27 '08 at 0:36
Good point Chris. But it's very bitchy when you have to shoehorn it into an existing app. :( – Internet Friend Nov 27 '08 at 0:38
1  
'Undo is bitchy to code', but 'Coding undo is not all that hard'. Change your mind ;p – lagerdalek Jan 4 at 10:44
show 2 more comments
vote up 13 vote down

keyboard Shortcuts

link|flag
power users will care about this - normal users not so much. Try not to invent your own - just make sure CTRL-Z CTRL-X CTRL-C CTRL-Pand CTRL-V work! – Iain Nov 27 '08 at 9:58
vote up 12 vote down

What's usually left out in UI's? Nothing! (literally. empty space). The question is better asked "What can be taken out?". When you have to think of what else your UI needs, you have already gone too far. Leaving out empty space is something UI programmers need to work on. Nobody likes feature creeping.

See Here

Remember the KISS rule.

link|flag
Indeed - a little white space can make all the difference to dialogs. – moobaa Nov 27 '08 at 0:34
That's OpenOffice!? Ouch!! – lkessler Nov 27 '08 at 2:44
Indeed it is OpenOffice, with all of the toolbars expanded ;) – John T Nov 27 '08 at 4:28
vote up 11 vote down
  • A help menu with more than About...
  • Context sensitive help
  • Tool tips
link|flag
Amen to context sensitive help. It is a killer feature. – David Reis Nov 27 '08 at 1:19
vote up 6 vote down

An API and a scripting language so I can bypass the UI.

Seriously. Nothing is more tedious (and error-prone) than having to point-and-click through some repetitive process.

link|flag
vote up 5 vote down

Right click context menu on things like tree views and grids.

We have an record management application here at work that I have to use now and then and they don't have right click on any of the documents in the treeview so you have to keep going to the bottom of the screen to mark a task as completed grrr, and no keyboard shortcuts too grrr

link|flag
Almost threw -1 for right click. If every thing on the context menu is one real menu, this is goodness. If somethings are ONLY on the right click menu, this is bad, very bad. – S.Lott Nov 27 '08 at 0:20
Right Clicking doesn't work cross browsers without fiddling with browser settings. I agree. I almost hit -1 for this one too ... :( (but only almost ;) – Thomas Hansen Nov 27 '08 at 0:23
@Thomas, he didn't say it was a web app. Some of us still do stand alone, you know. – Paul Tomblin Nov 27 '08 at 0:25
Yes it's stand alone, and they have put really crap things on the context menu things that you can use the keyboard for like open document wow enter does the same thing but because there is no shortcut for mark completed right click is the next best thing. – Nathan W Nov 27 '08 at 0:28
vote up 3 vote down
  1. Consistency in your design... There are too many apps that "look" like a programmer wrote them. I can't stress enough!
  2. Automation... Office has it, I wish more apps did.
  3. CLI... As mentioned above, especially if it's a repetitive-wizard-type process
  4. Templates/Presets... like Handbrake... make life easier, not to mention handy in the training process
  5. Error/Confirm messages which don't get in the way... Unless the user needs to take immediate action, don't display a dialog. If the error is obvious, fix it for me and then tell me why
  6. Scalable UI. With WPF this is getting easier, but it is annoying if I'm on a large monitor and I have to squint to see anything. Not to mention my click accuracy isn't that great.
link|flag
vote up 3 vote down

UI Consistency.

link|flag
vote up 3 vote down

I know I've been guilty of leaving out printing support in the past. I would never use it, but some of my users do.

link|flag
vote up 2 vote down

Good design.

link|flag
vote up 2 vote down

Leave room in your dialogs so if you internationalize it, you have room for longer words (think Italian) and bigger fonts (think Chinese).

link|flag
vote up 2 vote down
  • drag and drop
  • clipboard
link|flag
vote up 2 vote down

I'll add a few myself that have't been mentioned yet:

  1. Non-modal forms that can remain open while other work is done.

  2. Ability to view multi-windows at once (instead of tabs which show only one at a time)

  3. Ability to have multiple views of a single window at once, i.e. split mode, or panes, or actual multiple windows into the same object.

link|flag
vote up 1 vote down

Clean and intuitive.

link|flag
vote up 1 vote down

Clean icons. Good icons. Meaningful icons.

I am very disappointed with a lot of icons inside applications — especially on Windows ;-)

link|flag
vote up 1 vote down

actual consideration for the user seems to be left out quite frequently:

  • using terminology that makes sense to the programmer, but not the user
  • organizing the application's workflow for the convenience of the programmer, but not the user
  • not considering the user's work processes in the first place, and finding ways to help him/her eliminate steps and simplify things
link|flag
vote up 1 vote down
  1. Freezing the application when it's doing something that takes more than a second.

  2. Not showing users what's happening, and not indicating how long it's going to take.

link|flag
vote up 1 vote down

IMO, user name and password login options need work. I understand there are security concerns with each of these options. The risk-trade off is different for each application and needs to be assessed on an app by app basis.

Often forgotten or poorly implemented features include:

  • Remember Me
  • Forgot password
    • If you have a restrictive password policy, give me a hint as to what it is!
    • Range for # of characters, no special characters, required numbers or capitol letters, etc
  • Forgot username
    • If my username is not my email address, give me a hint to your username policy
link|flag
vote up 0 vote down

Kind of too general a question. It would depend on what does the application do. One thing I see often missing from gui applications is an easy way undo mistakes and not only in the object you're manipulating but also on program UI elements. Closing some floating options panel or toolbar by mistake and then having no idea where is the thing enabled frustrates me to no end. Is it under Windows? Or under View? Was it this one? no that one is for something else entirely. Gah! what's it called?

link|flag
vote up 0 vote down

Cycling through links and fields using the tab button.

link|flag
vote up 0 vote down

Left click drag to highlight, right click for context menu with option to copy highlighted text. Found missing from some applications coded in Java.

link|flag
vote up 0 vote down

Being able to use drag and drop to customise the toolbar and to be able to remove/hide unwanted toolbars without leaving an unused button whose only purpose is restore/unhide them.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.