Re: How to call a procedure in an exe file

2002-09-23 Thread Matthew Sherborne
You can't call procs in exe's like you can in dlls. If the program supports COM or ActiveX automation or DDE you could possibly control it with that. Or you could use the PyWin32 api to control the mouse to click on the button, but you'd have to know where it is. Another way is to use a progra

How to call a procedure in an exe file

2002-09-23 Thread A
Hi, I know that it is possible to call a function in DLL library( even though I have never tried it) from Python but is it possible to call a procedure in an exe program? I have a program that downloads some files( that was written in Delphi, we bought that program compiled already in exe). I m