Sometime you need some CEdit Validation, for example, restricting the data number only.
The simple implemetion is to handle the EN_UPDATE notification message. The EN_UPDATE message is useful to handle as it caters for both normal entry and clipboard paste. You can do that in the Dialog or subclass the CEdit class.
Here is an example of [...]