Hi all,
For later use I want to create dll file, internally using MFC. I used MFC because it is so easy to do my job. So used the MFC-DLL Visual C++ project and code my project. Its ok.
Later add another Console Application which support MFC as well. I want to use it to send data to the dll externally. Simply pass a std::string to dll, and there use that string for processing.
My question is how can I connect those two projects together. How to send data to dll application from the console application.