Grab and pass text to another programs textbox field

B

brad

I need to know how to grab text from and enter text into another
running programs textboxes. I dont know where to begin to look.
 
Z

zacks

Grabbing data from a screen is done using the technique commonly known
as "screen scraping". Pasting it into another app's window is usually
done with SendKeys, but that is really ugly.
 
H

Herfried K. Wagner [MVP]

brad said:
I need to know how to grab text from and enter text into another
running programs textboxes. I dont know where to begin to look.


Keywords: P/invoke (platform invoke), 'FindWindow', 'FindWindowEx',
'EnumWindows', 'EnumChildWindows', 'GetWindowText', ...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top