Finding TextBox's

  • Thread starter Thread starter Bob Allen
  • Start date Start date
B

Bob Allen

I am looking for a way to find a text box in a running exe process. I am
trying going down the path of using a processmodule to try and find fields
and such. Any idea as to how to accomplish this? I have an exe running that
i want to get the data from a text box in another exe that is running.

Thanks,
Bob;
 
Bob,

You might want to try calling the FindWindowEx function through the
P/Invoke layer. It will allow you to specify a Window class and the window
name. It might give you what you are looking for.

Hope this helps.
 
Back
Top