michaelkrauklis
Programmer
I've been programming in C++ for years but I've never used Visual C++. We have it at work so it's what i have to use now. I'm trying to create the framework for a somewhat complicated program, but right now I'm at the infancy stages. I'm just trying things out, but I can't even get the thing to make a simple console application. I craeted the new project, and as far as I can tell all my syntax is correct, but when I try to compile it gives me all sorts of errors. eg:
d:\paradoxtest\mike\paradoxtosql\row.h(8) : error C2236: unexpected 'class' 'Row'
d:\paradoxtest\mike\paradoxtosql\row.h(8) : error C2143: syntax error : missing ';' before ':'
d:\program files\microsoft visual studio\vc98\include\iostream.h(50) : error C2628: 'Table' followed by 'long' is illegal (did you forget a ';'?)
d:\program files\microsoft visual studio\vc98\include\streamb.h(65) : error C2371: 'streampos' : redefinition; different basic types
etc...
I get a bunch of those types of errors, but if you notice the last two are in the standard library Iostream. I haven't changed anything in IOstream so there's a compilation error in their code?? And I don't think there's anything wrong with my code. I there anything special you need to do to compile? Help Please!!! thanks MYenigmaSELF
myenigmaself@yahoo.com
d:\paradoxtest\mike\paradoxtosql\row.h(8) : error C2236: unexpected 'class' 'Row'
d:\paradoxtest\mike\paradoxtosql\row.h(8) : error C2143: syntax error : missing ';' before ':'
d:\program files\microsoft visual studio\vc98\include\iostream.h(50) : error C2628: 'Table' followed by 'long' is illegal (did you forget a ';'?)
d:\program files\microsoft visual studio\vc98\include\streamb.h(65) : error C2371: 'streampos' : redefinition; different basic types
etc...
I get a bunch of those types of errors, but if you notice the last two are in the standard library Iostream. I haven't changed anything in IOstream so there's a compilation error in their code?? And I don't think there's anything wrong with my code. I there anything special you need to do to compile? Help Please!!! thanks MYenigmaSELF
myenigmaself@yahoo.com