I am calling exe from the DLL. That time I want to pass the value to that exe. Is it possible???
Printable View
I am calling exe from the DLL. That time I want to pass the value to that exe. Is it possible???
Sure, if the exe is capable of recognizing a Command string.
Thanks master....any example?? plz
Here is an example taken directly from one of my programs.
Code:If UCase(Right$(Command$(), 4)) = ".TXT" Then
Call OpenFile(True, Command$())
End If
what is openfile??? This is function ....talking abt exe
This article might help.
Is the exe already running ? If so, search for DDE (Dynamic Data Exchange).Quote:
Originally Posted by sagarpassion
thanks to alll...