Events in edit control
-
hi All I want to display text in a window (with scroll bars). I need to trap the user mouse clicks inside the control (line number where mouse was clicked ...like that). how can i do it... thanx
handle WM_LBUTTONDOWN (use the class wizard to set up the function for you). this will tell you when a click happens, and where it happened. -c
To explain Donald Knuth's relevance to computing is like explaining Paul's relevance to the Catholic Church. He isn't God, he isn't the Son of God, but he was sent by God to explain God to the masses.
/. #3848917 -
handle WM_LBUTTONDOWN (use the class wizard to set up the function for you). this will tell you when a click happens, and where it happened. -c
To explain Donald Knuth's relevance to computing is like explaining Paul's relevance to the Catholic Church. He isn't God, he isn't the Son of God, but he was sent by God to explain God to the masses.
/. #3848917thanx chris but can i handle this event in Edit Control? harish