This is probably a very lame question:
I need to know exactly what nessages and in which order are sent to the queue whenever i click over an edit control in order to decide what message i need to intercept in my program.
I cant find a way to see that, and could not find this at MSDN either.
Can anyone help me?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Im trying to work something with my edit controls here:
-When some edit controls are clicked (or receive focus through the keyboard tab key), depending if a var is set to 0 or 1, a messagebox should pop warning the user about what he should fill this edit fields with.
I really dont know what message are sent whenever a edit control receive keyboard/mouse focus in order to intercept it.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
This is probably a very lame question:
I need to know exactly what nessages and in which order are sent to the queue whenever i click over an edit control in order to decide what message i need to intercept in my program.
I cant find a way to see that, and could not find this at MSDN either.
Can anyone help me?
What are you attempting to accomplish?
Kip
Hey Kip,
Im trying to work something with my edit controls here:
-When some edit controls are clicked (or receive focus through the keyboard tab key), depending if a var is set to 0 or 1, a messagebox should pop warning the user about what he should fill this edit fields with.
I really dont know what message are sent whenever a edit control receive keyboard/mouse focus in order to intercept it.
Oh, i found out a way to do it :)
EN_SETFOCUS
You could always subclass the edit controls and then intercept the WM_SETFOCUS message.
Kip