I want to "view" information displayed by another application and "click" different buttons to automate a process. Have never done this before and would appreciate any advice on where to start and/or links.
|
|
The proper way to automate another application on Windows platform is through the use of the UI Automation framework. It supports both .Net and COM APIs with the same level of functionality. Disclaimer: I have not touched Delphi in years, so I have no idea which one will be easier for you to use. Note that the UI Automation works on XP and above only; if for some reason you need to automate applications on Win2k or Win9x, you should look at the Windows Active Accessibility APIs. |
||
|
|
|
|
With some WinSight (Borland\Delphi7\Bin\WS32.EXE) may be very helpful to get stuff ID to use with |
||
|
|
|
|
You can use WinDowse (is freeware) for obtaining necessary technical information about any window. This example show how simulate a click button, using x,y coordinates
|
||
|
|
|
|
One thing to be aware of is that posting messages across application boundaries will not all ways work on Vista (or windows 7). If an application is launched in another security context, for example running as admin, then the post messages from another application in another security context will be blocked. |
||
|
|
