#include in C++/cli
Could be a number of things. Is "exception.h" in a place where the C++ compiler is looking for header files? Right-click on project in Solution Explorer, Configuration Properties, C++, General,...
View Article#include in C++/cli
On 4/10/2013 2:32 PM, ArbolOne wrote:1> clruiexception.cpp 1>d:\arbolone\dev\c++\clr\clruiexception\clruiexception\Form1.h(2): fatal error C1083: Cannot open include file: 'exception.h': No such...
View Article#include in C++/cli
#pragma once #include "exception.h" namespace clruiexception { using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace...
View Article#include in C++/cli
Go to either the PROJECT menu item or to the solution explorer. Select Add>New Item... or Add>Existing Item... depending on whether the file already exists or not. Don't forget to put the...
View Article#include in C++/cli
how to #include a 'h' file in a c++/cli project? Same as in regular C++ #include "MyHeader.h" David Wilkinson | Visual C++ MVP
View Article