vc6 source to vc7
-
a source writed by vc6 and can work fine under vc6. but with vc7 some error come out. some tut or links introduce some detail converting vc6 source to vc7?? thanks
What errors do you get? Compiler output?
_outp(0x64, 0xAD);
and__asm mov al, 0xAD __asm out 0x64, al
do the same... but what do they do?? ;) (doesn't work on NT) -
What errors do you get? Compiler output?
_outp(0x64, 0xAD);
and__asm mov al, 0xAD __asm out 0x64, al
do the same... but what do they do?? ;) (doesn't work on NT) -
what is the exact compiler message ? on what class does this happen ? it says that you are instantiating an abstract class. that means that you are creating an object of a class that either provides no public constructors or have some pure virtual functions. give us some true helps if you want some feedback. we cannot guess what you're doing wrong without your code, compiler output.
-
what is the exact compiler message ? on what class does this happen ? it says that you are instantiating an abstract class. that means that you are creating an object of a class that either provides no public constructors or have some pure virtual functions. give us some true helps if you want some feedback. we cannot guess what you're doing wrong without your code, compiler output.