-
dll
hello
i'm using inline assembly in VC++ and calling the exe thru VB. parameters are passed from VB thru command line arguements.
is there any method by which i can make a dll of the VC++ exe, if yes ...how do i go abt it ?
one imp thing to keep in mind is that i have to pass parameters to the VC program and also return a string from VC.
can anyone pls help me with this ....
give a sample code to see ...
thanks in advane
shruti !
-
You could recompile the source to a dll, but only with a few modifications.
As for passing a string back, that probably only works either via pipes (don't think VB can do it) or by having a special transfer file that the C++ exe writes to and that the VB exe reads.