Re: User Friendly CF Program
user friendly:
- non clustered forms
- avoid keying in data if possibly (select from lists dropdowns radiobuttons checkboxes
- always let the user know that something is happening, for example loading a form is takes some time then show a progress bar
messagebox: if the messagebox is shown in the same thread as the rest of the application then the process will stop until the messagebox result is returned.
when u update a label you need to called the refresh method, label1.refresh()
everytime you want to update it unless its multi-threaded where you will need to use delegates to update the label.
Re: User Friendly CF Program
Buttons! BIG Buttons! Checkboxes are ok, but if you have the space, buttons are easier to hit. If you want a button to show as being selected, it takes a bit more work, and a better solution than a true button, in this case, would probably be a panel with a label on it.