
Symptom:
 Dialog boxes would not appear until alt key was hit.
Problem:
 Main window procedure had case statement for WM_PAINT,
 but did not call BeginPaint()&EndPaint().

Symptom:
 All text entry fields would not accept the characters
 space, one, two, or three. 
Problem:
 Some accelerators were defined in the resource file, but
 did not have ALT specified.

Symptom:
 Dialog boxes would not respond to Tab or the arrow keys.
Problem:
 Used CreateDialog() instead of DialogBox().

Symptom:
 Program would crash when thread would end.
Problem:
 Within thread string manipulations were running past the
 end of the string.

Symptom: 
 Would get "First-chance exceptions (KERNEL32.DLL): Access Violation"
Problem:
 Create file was being called with NULL pointer for filename.


