Reputation: 11
I want to develop an application which reads a data from another application.
In the image i want to read the columns which are presented their and save it in a text file or database.
Can anyone please help me in this regard!
Thanks In Advance.
Upvotes: 1
Views: 2843
Reputation: 25565
Look into using the Microsoft accessibility layer. MSAA (older) and UIA (newer) are two accessibility APIs provided by Windows for accessibility tools (screen readers, etc) to get at and modify the UI on screen. This makes them very useful for other things, like testing, screen scraping, etc. They are well-documented on MSDN, for hwnd UIs everything starts with WM_GETOBJECT.
Upvotes: 3