Can I get other process UI data and app client screen pixels data

  • Thread starter Thread starter Kid
  • Start date Start date
K

Kid

Hi

Can I get other process UI data like edit box string or combo box index ?

And is it possible to get other app client screen pixels data ?

Thank you .
 
Kid said:
Hi

Can I get other process UI data like edit box string or combo box index ?

Just send a WM_GETTEXT message to the edit box, and you will get its string.
For the comobox index, you can send a WM_COMMAND message with a CB_* wParam,
I think.

For other messages that don't marshal string data across process boundaries
(so you can't SendMessage and get a result without crashing), you can use my
SendMessageRemote() function, as Joe says. It is discussed at
http://groups.google.com/group/micr...6?lnk=st&q=sendmessageremote#291326274362ef36


-- David
 
Back
Top