Visual C++ with .NET Framework
-
Hello, I have code in VC++ with MFC.Can I develop the same code in .NET framework. What major changes will be required in the VC++ code. Prithaa
Well - if you're dealing entirely with the .NET framework, then pretty much every bit of your MFC code is going to change. If it works as MFC, why change it?
Deja View - the feeling that you've seen this post before.
-
Hello, I have code in VC++ with MFC.Can I develop the same code in .NET framework. What major changes will be required in the VC++ code. Prithaa
If you are developing new code, why waste time with a 15 year old API like MFC. If you are trying to use existing MFC code, you can host your MFC code in WPF through the interop mechanisms. Only you can weigh the cost between salvaging MFC code or re-writing it in Windows Forms or WPF.
-
If you are developing new code, why waste time with a 15 year old API like MFC. If you are trying to use existing MFC code, you can host your MFC code in WPF through the interop mechanisms. Only you can weigh the cost between salvaging MFC code or re-writing it in Windows Forms or WPF.
-
Hello, Thanks for your support. Where will I find the details of hosting MFC code in WPF ? Can you give me the link. Prithaa