COMPILER ERROR VC++ 2003.net

G

Guest

I am working with a program which was developed using VC++ 6.0 few years ago.
Now I am modifying par of the code and compile it using VC++ 2003 .net. In
the beginning I had a lot of problems with the fstream file reading, which I
solved by inserting the old fstream.h file in the project. However, when I
tried to compile the program it gave me an error "fatal error C1001: INTERNAL
COMPILER ERROR". When I checked Microsoft website they state that this is an
error and the have a hotfix for it but this should be for the standard
version, and I am using professional version!! Any advice on how to solve
this problem and get rid if this error? Also, any advise on how to fix the
fstream problem in a professionally way than adding the .h file to the
project?

Thanks,
 
P

pvdg42

mohmo said:
I am working with a program which was developed using VC++ 6.0 few years
ago.
Now I am modifying par of the code and compile it using VC++ 2003 .net.
In
the beginning I had a lot of problems with the fstream file reading, which
I
solved by inserting the old fstream.h file in the project. However, when
I
tried to compile the program it gave me an error "fatal error C1001:
INTERNAL
COMPILER ERROR". When I checked Microsoft website they state that this is
an
error and the have a hotfix for it but this should be for the standard
version, and I am using professional version!! Any advice on how to solve
this problem and get rid if this error? Also, any advise on how to fix the
fstream problem in a professionally way than adding the .h file to the
project?

Thanks,

Have you tried using #include <fstream> ?
That's the standard version that comes with VC++ 7.1.
 
G

Guest

I did try to use the #include <fstream> however, that did not work well for
me as it would require to update a lot of files definitions.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top