vote up 7 vote down star
2

How should I show users which fields are compulsory in a windows forms application.

I have considered changing the label color or maybe the background color of the text box.

I use an error provider to show a red exclamation mark next to the field, however this is only visible after they have clicked the save button.

flag

5 Answers

vote up 8 vote down check
  • Asterisk or icon to the side of control
  • Red border when required validation fails (when user tries to save)
  • Bold Labels
  • Different background color for required controls (perhaps only when user tries to save)
link|flag
A firm, but not too thick red border sounds good to me. – Rob Oct 14 '08 at 1:29
... or any color that is complementary to the application's color scheme but stands out. – Jason Jackson Oct 14 '08 at 1:48
What I've found works best is a different background for the controls, always visible. The color should be pastel, often yellow as seen in browsers. This usually looks OK on any given UI theme, and makes it eminently clear to the user what is/isn't required without taking up extra visual space. – John Rudy Oct 14 '08 at 16:13
(@John Rudy) Like my answer just below? – Argalatyr Oct 17 '08 at 16:43
Using JUST a color to indicate required fields is usually not the best practice from an HCI perspective because: 1. blind users will never see it, and 2. color-blind users (of which there are way more than you think) /may/ not see it. – Robert C. Barth Oct 24 '08 at 22:25
vote up 2 vote down

Yellow background would make it similar to many web forms. No idea whether there are any standards for Windows per se, though if there are I doubt they are widely used.

link|flag
vote up 2 vote down

Use the errorprovider extension control.

This places a red cross next to the control with a tooltip message.

link|flag
vote up 0 vote down

I would use the ErrorProvider control, possibly with a different icon to represent "required" as opposed to "in error". I would also ensure the fields start with error icon shown next to them and the icon should only disappear once data has been provided for that field.

Only doing validation/notification of missing data when the user tries to save seems way too late.

link|flag
vote up 0 vote down

Something to consider is what users are accustomed to seeing for required fields. While not graphically spectacular, placing a simple asterisk next to required field is a very ubiquitous solution.

link|flag

Your Answer

Get an OpenID
or

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