MFC edit box modify even

1.2k Views Asked by At

I want event on modifying MFCedit box, i.e. when I try to write or delete any letter.

I am getting the event on killing the focus but that's not required.

I want event while modifying the content of edit box.

2

There are 2 best solutions below

0
On

Changes to the contents of an edit control are reported to clients through an EN_CHANGE notification. The CEdit documentation explains how to wire up class members to notification callbacks. In this case you'll want to add an ON_EN_CHANGE entry to your message map.

5
On

To add to the existing answer(s), this can be done by adding the EN_CHANGE event handler for the control. This is a straightforward task using the IDE in Visual Studio.

There are a few approaches to this.


Method 1: Right-click the EDIT control and add an event handler:

Context Menu

Click Add Event Handler... on the context menu and then locate the handler to add it:

Add Handler

Make sure your dialog class is selected and that the EN_CHANGE message type is selected and then click OK to add the boiler plate code to your class. Now you can do what you need to do.


Method 2: Using the Properties Panel

Properties Panel

Make sure that the control is selected and that the Properties Panel is visible on screen.

  1. Click the Control Events (lightning icon) and you will see a list of events for the EDIT control.
  2. Locate EN_CHANGE and click the drop-down arrow.

You'll see a item to select there which will add the event handler for you.


Method 3: Using Class Wizard

Right-click the DIALOG resource (not the EDIT control) and select Class Wizard...

Context Menu

Then you can add the control using the Class Wizard:

Class Wizard

To do this:

  1. Select the EDIT control ID on the list on the left.
  2. Select the EN_CHANGE event handler.
  3. Click the Add Handler... button.

As you can see, there are several ways to add the EN_CHANGE event handler.