I need to scrape data from a windows application to run a query in another program. Does anyone know of a good starting point for me to do this in .NET?
|
5
|
|
|
|
|
|
Check out ManagedSpy, source code is provided. (link) |
||
|
|
|
You may want to look into the WM_GETTEXT message. This can be used to read text from other windows -- it's an archaic part of the Windows API, and if you're in C#, you'll need to p/invoke for it. Check out this page for an example of doing this in C#. Basically, you first FindControlEx() to get the handle of the window that you want (by caption). Second, you recursively enumerate the controls on that window with EnumChildWindows() to find all of the window's child controls, and all of those children's children until you have a complete map of the target form. Here is a selected portion of Theta-ga's excellent explanation from Google Answers: To get the contents of any textbox or listbox control, all we need is it's window handle. If you have already obtained the window handle then move to part 2 of the explaination. PART 1: Obtaining the control handle
PART 2: Reading the contents of a control
|
|||
|
|
|
|
"You might be able to use System.Diagnostics.Process.GetProcessesByName("ProcName") and the retrieve the main windows handle, from there you could use win32 API to get the handle of the textbox being used to display the text you want. With the handle of the textbox you can get or set the contents. I am no whiz with the win32 API but with a little research I have been able to accomplish similar tasks. Hope this helps" Taken from here: http://www.devnewsgroups.net/group/microsoft.public.dotnet.framework/topic1657.aspx |
||
|
|
|
|
Coding The Wheel as some article about how he was able to get information from Poker Application. Check : deconstructing-the-poker-client-1. This can be helpful. |
||
|
|
|
|
By the way is it possible to fire the click event of the control retreived using the suggested way. I had an application that has a form with a button. That button doesn't has any shortcut key to access it. Can it be clicked by grabbing the button handle? |
||
|
|
