Topic: help me

Hi Drive can you help me Button function I want to run an external file and perform an action immediately after closing the external file can you help me

Re: help me

Need help

Re: help me

for open file use this..

   

OpenFile('C:\Windows\System32\notepad.exe');

for Close use this

KillTask('Notepad.exe');

Re: help me

blackpearl8534 wrote:

for open file use this..

   

OpenFile('C:\Windows\System32\notepad.exe');

for Close use this

KillTask('Notepad.exe');

This is not what I mean

Re: help me

for example
When I click the button, an external program opens for me
And I want to implement an action on condition when I close the external program

Re: help me

Don't do double posts. It' ugly.


AFIK MVD does not support inter process communication or communication via COM,or other API with other software, etc. and can not receive messages from other software.


In other words: Not supported. For this you would need a full featured compiler. MVD is based on Delphi which is large compatible with Free Pascal. Search around and you would find a cost efficient alternative with a full featured compiler.


When you want to do this you should be aware that you need to use scripts/source code and can not click you application together.

Re: help me

teco049 wrote:

Don't do double posts. It' ugly.


AFIK MVD does not support inter process communication or communication via COM,or other API with other software, etc. and can not receive messages from other software.


In other words: Not supported. For this you would need a full featured compiler. MVD is based on Delphi which is large compatible with Free Pascal. Search around and you would find a cost efficient alternative with a full featured compiler.


When you want to do this you should be aware that you need to use scripts/source code and can not click you application together.

Thank you I found a trick to help me