SAMPLE: FlshEdit.exe Demonstrates Flashing an Edit Control

ID: Q83364

The information in this article applies to:

SUMMARY

If an application window or dialog box has a number of edit controls, the user can lose track of the control that has the input focus. FlshEdit.exe is a sample in the Microsoft Software Library that demonstrates how to make an edit control flash to indicate that the control has the input focus. The technique used by FLSHEDIT is similar to calling the FlashWindow function. FlashWindow flashes the caption bar on a window to gain the user's attention.

MORE INFORMATION

The following file is available for download from the Microsoft Software Library:

 ~ FlshEdit.exe (size: 30447 bytes) 

For more information about downloading files from the Microsoft Software Library, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q119591
   TITLE : How to Obtain Microsoft Support Files from Online Services

The FLSHEDIT sample contains a dialog box with four edit controls. The application uses one timer, which is used to flash whichever edit control has the focus. The application sets the timer each time an edit control receives the input focus (an EN_SETFOCUS message). The timer is destroyed when an edit control loses the input focus (an EN_KILLFOCUS message) or when the context of the edit control changes (an EN_CHANGE message).

When the specified time elapses and the application receives a WM_TIMER message, the application invalidates the contents of the edit control and specifies the new text and background colors. Then Windows redraws the control using the new colors.

Therefore, a control stops flashing when either of the following events take place:

The FLSHEDIT application provides an option to stop the flashing and to change the color of the flashing.

In addition to flashing, the FLSHEDIT sample changes the text in an edit control to indicate that the control has the input focus. However, if the user changes the contents of an edit control, the changed text remains even after the user moves the input focus to another control. If the user changes the text to an empty string, the edit control regains its default contents.

Windows 3.0 does not properly change the background color of a single-line edit control.

FLSHEDIT incorporates the first method provided by this Knowledge Base article.

Additional query words: Keywords : kbfile kbsample kb16bitonly kbGrpUser kbWinOS310 kbWndw kbWndwMsg kbWndwProp kbWinOS300

Last Reviewed: December 26, 1998