Click here to Skip to main content
15,860,972 members
Articles / Operating Systems / Windows
Article

Defense against the dreaded Klingon Battlecruiser

Rate me:
Please Sign up or sign in to vote.
2.81/5 (29 votes)
15 Apr 2004CPOL2 min read 92.2K   16   24
An article about application users and their perception.

Sample Image

Introduction

This article provides an intelligent solution to a phenomenon known as the Klingon battle cruiser. To illustrate, create an empty document in VC++, then type "something" in it. Good. The Battle cruiser is coming near. Ok, just type CTRL-F4 on the keyboard and - voila! There's one right there.

In essence, KBC (Klingon Battlecruiser) is an annoying message box. All kinds of users with all kinds of computer background have to face numerous message boxes dozens of time every day.

Most users "dismiss" the message box automatically, as a reflex. Why read it?

It turns out that a study (sorry - I have no formal references) has shown that a lot of good folks out there reject the KBC on site, w/o reading it.

Background

I am writing an application that is used in the context of a security system. Users can put in a lot of work and the application offers a BACKUP - RESTORE command that interfaces with the underlying SQL SERVER database engine.

My boss, who happens to be the industry Guru, is one of the greatest KBC fighters. He never, ever reads any phrase with more than two words. He dismisses dialog boxes so quickly, he could win Olympic medals.

What was bound to occur has occurred. He "accidentally" restored a database instead of backing it up. Result: 1 day of work lost. It could have been worse.

Earlier this week, he went to some clients, setting up their systems using his laptop and backed-up client 1 database on top of client 2 backup. This time, the loss was closer to 4 hours. Lucky.

Then he figures that if he makes that sort of mistakes, others are bound to do the same.

Hence this article, describing a simple way to replace "easy" MessageBox(), that too easily dismissed.

Using the pattern

Sample Image

Basically, the proposed design pattern replaces the "easy to dismiss" message box with a modal dialog box that not only provides messagebox like buttons, but that contains an extra confirmation edit control.

Once invoked, it will return "IDOK" if - and only if the operator has typed the confirmation in the edit control. The idea is that to know what to type, the user has to go through the text first. Only by carefully reading the text will the user learn what the "confirmation word" is.

Points of Interest

What this Graphic User Interface design pattern suggests, is that simple message boxes are often not enough to allow an application user to confirm dangerous operations.

Application users with all kinds of computer literacy skills have learned to dismiss most message boxes as trivial, unimportant. They automatically hit ENTER or click on the leftmost choice without reading.

The modal dialog box with edit control does not register with the brain as a message box. It draws attention. The user is more likely to read the text and, more importantly, think about the consequences before confirming their action.

History

First release of this article in April 2004.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 4 Pin
S@53K^S13-Nov-12 7:52
S@53K^S13-Nov-12 7:52 
GeneralMy vote of 5 Pin
DinoLL++2-Nov-12 14:25
DinoLL++2-Nov-12 14:25 
GeneralLazy users Pin
_Olivier_5-Jan-07 4:05
_Olivier_5-Jan-07 4:05 
General2 dialogs are better than one.... Pin
Jimothy19-Nov-04 4:52
Jimothy19-Nov-04 4:52 
GeneralRe: 2 dialogs are better than one.... Pin
CreF6-Dec-07 1:04
professionalCreF6-Dec-07 1:04 
GeneralButton order Pin
Nigel Atkinson21-Apr-04 18:55
Nigel Atkinson21-Apr-04 18:55 
GeneralRe: Button order Pin
Bamaco222-Apr-04 8:46
Bamaco222-Apr-04 8:46 
GeneralA picture speaks a thousand words! Pin
WREY16-Apr-04 12:39
WREY16-Apr-04 12:39 
GeneralDamn Pin
Michael P Butler16-Apr-04 3:54
Michael P Butler16-Apr-04 3:54 
GeneralRe: Damn Pin
Vadim Tabakman16-Apr-04 18:11
Vadim Tabakman16-Apr-04 18:11 
GeneralRe: Damn Pin
shoonya16-Mar-06 2:14
shoonya16-Mar-06 2:14 
GeneralFacing a Klingon Battlecruiser ... Pin
Maximilien16-Apr-04 0:54
Maximilien16-Apr-04 0:54 
GeneralRe: Facing a Klingon Battlecruiser ... Pin
Bamaco217-Apr-04 20:28
Bamaco217-Apr-04 20:28 
GeneralUse it, and end up in the Interface Hall of Shame Pin
msalters15-Apr-04 22:52
msalters15-Apr-04 22:52 
GeneralRe: Use it, and end up in the Interface Hall of Shame Pin
Bamaco216-Apr-04 0:29
Bamaco216-Apr-04 0:29 
GeneralRe: Use it, and end up in the Interface Hall of Shame Pin
compiler16-Apr-04 5:11
compiler16-Apr-04 5:11 
GeneralRe: Use it, and end up in the Interface Hall of Shame Pin
John M. Drescher16-Apr-04 6:18
John M. Drescher16-Apr-04 6:18 
GeneralRe: Use it, and end up in the Interface Hall of Shame Pin
John M. Drescher16-Apr-04 4:26
John M. Drescher16-Apr-04 4:26 
GeneralUse clear buttons Pin
Patje15-Apr-04 20:44
Patje15-Apr-04 20:44 
GeneralRe: Use clear buttons Pin
Bamaco215-Apr-04 22:15
Bamaco215-Apr-04 22:15 
GeneralRe: Use clear buttons Pin
Thomas Freudenberg15-Apr-04 22:52
Thomas Freudenberg15-Apr-04 22:52 
GeneralRe: Use clear buttons Pin
Patje16-Apr-04 0:05
Patje16-Apr-04 0:05 
GeneralRe: Use clear buttons Pin
compiler16-Apr-04 5:18
compiler16-Apr-04 5:18 
GeneralRe: Use clear buttons Pin
Martin Friedrich16-Apr-04 5:53
Martin Friedrich16-Apr-04 5:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.