views:

22

answers:

1

What is the Message that matches the TextChanged property in .NET for C++\Win32?

+1  A: 

Assuming you're talking about the Edit control, EN_CHANGE is the notification you're looking for. The parent of the Edit control receives the notification via the WM_COMMAND message, with HIWORD(wParam) == EN_CHANGE, LOWORD(wParam) == edit control identifier and lParam == edit control HWND.

In silico
Thank you In silico. Thats exactly what I was looking for!
Grant
If this answer helped you out, make sure to accept it :-) (see http://meta.stackoverflow.com/questions/5234/how-does-accepting-an-answer-work/5235#5235)
In silico
Yes, you gave the answer so quick, I had to wait for 8 minutes to accept your answer and I had to leave my computer during that time. Thanks again. :)
Grant