Creating C# GUI for C++ app
Sorry for the mess,My problem was I had a class called process.h, which was called instead of the system process.h.I changed the file name , and it solved the problem!thanks.Spaarvap
View ArticleCreating C# GUI for C++ app
whenever I try #including a file which #includes in it's hierarchy <afxwin.h>, I get the following errors:error C2504: 'CFrameWnd' : base class undefined error C2433: 'VideoWindow::afx_msg' :...
View ArticleCreating C# GUI for C++ app
[...]when I try to add an #include in the managed c++ project to a header of the c++ project , I get this error -C:\Program Files\Microsoft Visual Studio 10.0\VC\atlmfc\include\atlbase.h(4878): error...
View ArticleCreating C# GUI for C++ app
Thanks, I tried changing the flags according to the thread you suggested, but it still doesn't compile.I have the /MDd flag on ( I tried also using the /Md flag ) .Spaarvap
View ArticleCreating C# GUI for C++ app
This is due to having the wrong compiler/linker flags. See this thread for options: http://social.msdn.microsoft.com/Forums/en/vclanguage/thread/5b666aec-d3b7-479a-9643-5a746c408d6bReed Copsey, Jr. -...
View ArticleCreating C# GUI for C++ app
Hi , I am working with c++ and I want to add to it a C# GUI.I created in my solution a C# project for the GUI, and another managed c++ project for communicating between the two.when I try to add an...
View Article