Rock Johnson
Rock Johnson

Reputation: 11

How to read data from an application which is running

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.

enter image description here

Can anyone please help me in this regard!

Thanks In Advance.

Upvotes: 1

Views: 2843

Answers (1)

Bill
Bill

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

Related Questions