The Old New Thing

Make sure the buttons match the question

When your program displays a dialog box with buttons, please make the buttons match the text. Consider this dialog, which appears after you install patches from Windows Update: It asks a yes/no question, but the options are "OK" and "Cancel". Either the buttons should...
Comments are closed.0 0
Code

More stories of bad hardware

My favorite bad CD-ROM drive from Windows 95 was one where the manufacturer cut a corner to save probably twenty-five cents. The specification for CD-ROM controllers indicates that each can host up to four CD-ROM drives. When you talk to the card, you specify which drive you wish to communicate with. The manufacturer of a certain brand of ...

Stay healthy: Drink Guinness

Flavenoids in Guinness combat fatty deposits in arteries. Note, however that the beer was consumed by being "fed ... via tubes directly into their stomachs." On the other hand, a friend of mine points out, "I thought a tube leading directly to the stomach was also called the esophagus. That's my ...

Preventing edit control text from being autoselected in a dialog box

By default, when the user TABs to an edit control in a dialog box,the entire contents of the edit control are autoselected.This occurs because the edit control responds with theDLGC_HASSETSEL flag in response to theWM_GETDLGCODE message.To prevent it from happening, remove that flag.All this subclass procedure does is remove the...
Comments are closed.0 0
Code

British newspapers are much more fun to read

You can always count on The Register for a snarky take on the day's technology news. Today's favorite is this "review" of the nTAG, which ends with Well, we think that any sane person would have to held at gunpoint to induce them to carry an electronic device which, besides containing personal or...

Another different type of dialog procedure

The other method of using a window-procedure-like dialog box isto change the rules of the game.Normally, the window procedure for a dialog box isthe DefDlgProc function, which calls the dialogprocedure and then takes action if the dialog procedure indicatedthat it desired the default action to take place.The dialog procedure is ...
Comments are closed.0 0
Code

Answer to previous exercise about m_fRecursing

Answer to previous exercise: The m_fRecursing flag does not need to be per-instance. It only needs to be valid long enough that the recursive call that comes immediately afterwards can be detected. However, a global variable would not work because two threads might be inside the recursive DefDlgProc call simultaneously. But a thread-local ...
Comments are closed.0 0
Code

A different type of dialog procedure

In the discussion following my entry about dialog procedure returnvalues, somebody suggested an alternate dialog design whereyou just call DefDlgProc to do default actions(the same way you write window procedures and DefWindowProc)rather than returning TRUE/FALSE.So let's do that. In fact, we're going to do it twice.I'll cover one ...
Comments are closed.0 0
Code

Welcome Martyn Lovell

Martyn Lovell from the VC++ team has joined the world of blogging. Martyn is a smart guy, even though he does spell some words funny...