Visual C++
-
Hi all, I want to develop a small demo.exe which runs in the client system with out .Net Framework and any other dependencies is it possible to get this through Visual C++ projects. Please guide me some one. thanks in advance
-
Hi all, I want to develop a small demo.exe which runs in the client system with out .Net Framework and any other dependencies is it possible to get this through Visual C++ projects. Please guide me some one. thanks in advance
That depends on the type of project you're creating and the library functions that you're calling. For example, if you're creating a simple UI application using MFC, set the project properties to statically kink against the MFC DLLs.
Project Properties -> Configuration Properties -> General -> Use of MFC -> Use MFC in a Static Library
«_Superman_» I love work. It gives me something to do between weekends.
Microsoft MVP (Visual C++) -
That depends on the type of project you're creating and the library functions that you're calling. For example, if you're creating a simple UI application using MFC, set the project properties to statically kink against the MFC DLLs.
Project Properties -> Configuration Properties -> General -> Use of MFC -> Use MFC in a Static Library
«_Superman_» I love work. It gives me something to do between weekends.
Microsoft MVP (Visual C++)Thank you Friend, Can you help me how to invoke the DLL/EXE that is developed in C# from Win32 C++ appliction Thanks again
-
Thank you Friend, Can you help me how to invoke the DLL/EXE that is developed in C# from Win32 C++ appliction Thanks again
Here are a few links - http://www.codeproject.com/KB/COM/nettocom.aspx http://www.blong.com/Conferences/BorConUK2002/Interop2/COMNetInterop.htm#CCW
«_Superman_» I love work. It gives me something to do between weekends.
Microsoft MVP (Visual C++) -
Here are a few links - http://www.codeproject.com/KB/COM/nettocom.aspx http://www.blong.com/Conferences/BorConUK2002/Interop2/COMNetInterop.htm#CCW
«_Superman_» I love work. It gives me something to do between weekends.
Microsoft MVP (Visual C++)Hi Thanks Again Is it possible to access the DLL/EXE without making a COM object For Example: Just Execute an EXE from the C++ project( like starting a separate Process) thanks.
-
Hi Thanks Again Is it possible to access the DLL/EXE without making a COM object For Example: Just Execute an EXE from the C++ project( like starting a separate Process) thanks.
If you only want to execute an EXE, you can use http://msdn.m[^]icrosoft.com/en-us/library/ms682425(VS.85).aspx to do this. To access a C# DLL from C++, you will still need to create a COM Callable Wrapper (CCW).
«_Superman_» I love work. It gives me something to do between weekends.
Microsoft MVP (Visual C++)