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
2010-08-08 19:30:10
Thank you In silico. Thats exactly what I was looking for!
Grant
2010-08-08 19:31:37
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
2010-08-08 19:33:34
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
2010-08-08 22:15:22