Folks,
Could someone please explain me how to call VB exe's from other visual basic programs?
Can the called EXE return values to the calling program?
If you have a snippet for the above situation, please mail me.
Regards,
GV
Printable View
Folks,
Could someone please explain me how to call VB exe's from other visual basic programs?
Can the called EXE return values to the calling program?
If you have a snippet for the above situation, please mail me.
Regards,
GV
try this post m8 ;)
http://www.vbforums.com/showthread.p...hreadid=189933
eedines posted some great plugin examples wich include ACTIVE X EXE And ACTIVE X DLL ;)
use shell command to run any exe fom ur vb...
...also use shell command to run a batch file which send the output of the EXe to a text file (for returning values...)
first try the examples m8. because comunicating through the shell is really primitive. you can load AX-exe and AX-dll's into your program and they can comunicate to each other trough subs and functions etc etc see examples how to do this allQuote:
Originally posted by Kunchesm
use shell command to run any exe fom ur vb...
...also use shell command to run a batch file which send the output of the EXe to a text file (for returning values...)