hi, if i have a group 2 exe projects, each one with its forms and all, is there a way to call one project from the other, and share some variables between the two of them??
Project groups were designed to permit the debugging of DLL
or OCX project from inside of another distinct project.
Theres no real connection between them.
Standard EXEecutables do not expose any public members.
They can not be poked, prodded, or anything else...
There's no way to have one standard EXE talk to another.
Sorry to hand you bad news...
If you want inter-process communication, you'll have to
write an OCX or DLL or ActiveX EXE that IS capable of
exporting it's members. Don't be fooled by the "EXE"
designation on an ActiveX EXE... It behaves alot like
a DLL except it runs outide the process that created it.
A DLL runs inside the memory space that creates it...
Look into the help files for in-process and out-of-process
servers.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.