Conversion from VS 6.0 to .Net
-
Hello Friends, I have an a VC++ 6.0 SDI Application and wants to convert into a .Net application. Please help me out in this conversion, I am getting lots of errors as in the stdAfx.h file I had included iostream.h file, which is required? Help me out. Neelesh K J Jain.
-
Hello Friends, I have an a VC++ 6.0 SDI Application and wants to convert into a .Net application. Please help me out in this conversion, I am getting lots of errors as in the stdAfx.h file I had included iostream.h file, which is required? Help me out. Neelesh K J Jain.
you should include
iostream.h
likewise#include <iostream>
and not#include <iostream.h>
Nibu thomas Software Developer
-
Hello Friends, I have an a VC++ 6.0 SDI Application and wants to convert into a .Net application. Please help me out in this conversion, I am getting lots of errors as in the stdAfx.h file I had included iostream.h file, which is required? Help me out. Neelesh K J Jain.
As someone else said, iostream.h is not standard C++. You also need to put using namespace std; at the top of the code, as standard C++ libraries use the std namespace. Christian Graus - Microsoft MVP - C++