Link to home
Start Free TrialLog in
Avatar of rinfo
rinfo

asked on

Executing another application from a delphi application

I need to run another external application from a delphi application ,
populate some of the fields in external application.
click on a button on external application so as to run the application
and generate a pdf and quit.
Can this be done.
Avatar of aikimark
aikimark
Flag of United States of America image

the quick answer is "yes"
the more accurate answer is "probably"

As with most things, the devil is in the details, which we currently lack.
Avatar of Peter Kostov
Peter Kostov

Hello,

If you are allowed to use external dll, you can do this very easily with AutoIT. There is a header for Delphi too.

Regards
Can be done using FindWindow, SendMessage, ... win api, but very depends on programming language of this application.

Maybe your app expose ActiveX interface or dll ready to use?
ASKER CERTIFIED SOLUTION
Avatar of rinfo
rinfo

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rinfo

ASKER

I could find a working solution of my own.