Click here to Skip to main content
15,880,392 members
Articles / Desktop Programming / MFC
Article

Enhanced Focus Edit Control with Input Filtering

Rate me:
Please Sign up or sign in to vote.
4.17/5 (6 votes)
3 Oct 2000CPOL 138.1K   2.7K   34   22
An edit control that provides strong visual feedback when it has the input focus, and allows filtering of input and/or displayed characters.
  • Download demo project - 4 Kb
  • Download source - 19 Kb

    This article describes a class (CFocusEditCtrl) for an Enhanced Focus Edit Control with filtering capability.  This control serves two purposes.  First, it provides visual feedback when it has focus by changing it's background color.  Second, it supports the filtering of input.

    The visual feedback is useful when the control is used on a crowded interface, and redesign of the interface is not possible.  On crowded interfaces, it is often easy to "lose" the caret, and the user is unable to tell which edit control (if any) has the input focus.  The changed background color solves that problem.

    The filtering is useful for when you need a control that accepts only numeric values for input.  A numeric-style edit control does not work correctly here, because it does not allow characters like "+", "-" and "." (decimal point).  This control allows you to specify either a set of valid characters OR a set of invalid characters.  The filtering also works on a Paste operation.

    It is important to mention that this control only provides validation on a character-by-character basis.  That means that while it can prevent characters that are not used to specify numeric values, it cannot enforce the proper format of said value.  For example, limiting to numeric value characters does not prevent a string like "123.456.7890" from getting entered (even though it is technically an invalid numeric value).

    Functions of interest are:

    • void EnableFileDropping( bool bEnable = true )
    • void SetExcludeMask( LPCTSTR cpMask = NULL )
    • void SetIncludeMask( LPCTSTR cpMask = NULL )
    • void StripFilteredChars( LPTSTR cpBuffer )

    The EnableFileDropping(...) function is used to allow the edit control to accept a draggeg item, and allow it to be dropped.  This can be useful for getting a file path.

    The SetExcludeMask(...) function allows you to specify a set of characters that are not to be allowed into the control.  For example, an exclude mask of "1234567890" prevents numeric data from being entered into the control.

    The SetIncludeMask(...) function allows you to specify a set of characters that are allowed to be in the control.  For example, an include mask of "1234567890-+." allows only the entry of numeric data.

    The StripFilteredChars(...) function allows you remove "bad" characters from the passed string.  Do this before calling SetWindowText(...) with any string.

    In the demo image above, the edit control that has the input focus is clearly indicated, and the other two controls are setup to allow only certain data.  Running the app is more useful that my talking about it! :)

    Conditions of use are detailed in the header and source file(s).

    Feel free to contact me if there are any questions.  Have fun.

  • License

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


    Written By
    President JRTwine Software, LLC
    United States United States
    Programming since the age of 10, started professionally at the age of 17. Currently involved in both Client and Server side development on Win32 platforms for MC/HA/FT financial applications. Development experience with Win32, Win16, Linux and other flavors of Unix.

    Extensive multithreaded development experience on Windows platforms using the Win32 SDK, and MFC.

    Experience with HA/FT n-tiered Client/Server systems as well as GUI apps of varying complexity. Some experience with Game developement.

    Having learned that the stuff you can barely get away with doing Client-side apps just does not cut it in the real "Server World", I am amazed how many 'professionals' cannot tell the difference between "works" and "correct" or try to (mis)use VB and/or MFC on server-side development projects, never considering that just because it RUNS, does not mean it runs WELL.

    Lastly, I am also a collector of arcade games, and can perform repairs, conversions, etc. Search for my name, you will find me on lots of arcade-related documents and sites.

    Sites of interest(?):
    http://www.jrtwine.com
    http://www.jrtwine.com/jtwine
    http://www.signingtime.com
    http://www.deletefxpfiles.com
    http://www.checkfavorites.com
    http://www.coinop.org

    Comments and Discussions

     
    GeneralCTRL+V doesn't work Pin
    v1ncent3-Mar-06 9:13
    v1ncent3-Mar-06 9:13 
    AnswerRe: CTRL+V doesn't work Pin
    James R. Twine16-Jun-06 3:17
    James R. Twine16-Jun-06 3:17 
    GeneralCEdit Pin
    Amorevieta18-Oct-05 3:10
    sussAmorevieta18-Oct-05 3:10 
    GeneralRe: CEdit Pin
    James R. Twine22-Oct-05 10:42
    James R. Twine22-Oct-05 10:42 
    Questionhow do i setfocus? Pin
    mpallavi21-Mar-05 22:27
    mpallavi21-Mar-05 22:27 
    AnswerRe: how do i setfocus? Pin
    James R. Twine22-Mar-05 11:34
    James R. Twine22-Mar-05 11:34 
    GeneralRe: small difficulty Pin
    mpallavi29-Mar-05 18:14
    mpallavi29-Mar-05 18:14 
    GeneralRe: small difficulty Pin
    Amorevieta18-Oct-05 2:07
    sussAmorevieta18-Oct-05 2:07 
    GeneralNice article - very small issue Pin
    Tom Archer24-Aug-03 7:51
    Tom Archer24-Aug-03 7:51 
    GeneralRe: Nice article - very small issue Pin
    James R. Twine24-Aug-03 8:19
    James R. Twine24-Aug-03 8:19 
    GeneralCompile errors Pin
    JockeP2-Apr-03 22:17
    JockeP2-Apr-03 22:17 
    GeneralRe: Compile errors Pin
    James R. Twine3-Apr-03 4:49
    James R. Twine3-Apr-03 4:49 
    Generalpasting to masked edit Pin
    Vadim Zhukovsky16-Feb-03 23:22
    Vadim Zhukovsky16-Feb-03 23:22 
    GeneralRe: pasting to masked edit Pin
    James R. Twine17-Feb-03 2:57
    James R. Twine17-Feb-03 2:57 
    GeneralRe: pasting to masked edit Pin
    Vadim Zhukovsky17-Feb-03 20:08
    Vadim Zhukovsky17-Feb-03 20:08 
    GeneralRe: pasting to masked edit Pin
    sb142317-Oct-03 3:54
    sb142317-Oct-03 3:54 
    QuestionCan paste when readonly. Pin
    Hans-Georg Ulrich5-Aug-01 23:48
    Hans-Georg Ulrich5-Aug-01 23:48 
    AnswerRe: Can paste when readonly. Pin
    7-Aug-01 9:22
    suss7-Aug-01 9:22 
    AnswerRe: Can paste when readonly. Pin
    Zele9-Jan-04 1:41
    Zele9-Jan-04 1:41 
    GeneralProject File Missing. Pin
    Kevin Gutteridge4-Oct-00 5:55
    Kevin Gutteridge4-Oct-00 5:55 
    GeneralFixed (was: Project File Missing.) Pin
    Chris Maunder4-Oct-00 6:27
    cofounderChris Maunder4-Oct-00 6:27 
    GeneralRe: Fixed (was: Project File Missing.) Pin
    Kevin Gutteridge4-Oct-00 6:50
    Kevin Gutteridge4-Oct-00 6:50 

    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.