B brad May 9, 2006 #1 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.
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 May 9, 2006 #2 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.
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] May 9, 2006 #3 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. Click to expand... Keywords: P/invoke (platform invoke), 'FindWindow', 'FindWindowEx', 'EnumWindows', 'EnumChildWindows', 'GetWindowText', ...
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. Click to expand... Keywords: P/invoke (platform invoke), 'FindWindow', 'FindWindowEx', 'EnumWindows', 'EnumChildWindows', 'GetWindowText', ...