Hello
I was just doing a quick check and noticed that although you can create a c++ project with source files and references to DLL, the project explorer won't let you add anything to the include folder. Test was the basic Hello World thing :
// Fig. 1.2: fig01_02.cpp // A first program in C++ #include <iostream>
int main() { std::cout << 'Hello World!\n';
return 0; // indicate that program ended successfully }
I do have Visual C++ version 6
thanks
Lester
'Imagination is more important than knowledge' - Albert Einstein (1879 - 1955)