compatibilty issue (VC5.0 and VC6.0)
-
hi every body i had an old projects desgined with vc++5.0 (source code), when i built these projects I couldn't make an exe file for this project. Best Regards :)
Perhaps you could give more details about the errors... for example what does the compiler say? Linker error? :confused: -Dominik
-
hi every body i had an old projects desgined with vc++5.0 (source code), when i built these projects I couldn't make an exe file for this project. Best Regards :)
:confused: Any error messages, warnings etc???? What's in the output window?
-
Perhaps you could give more details about the errors... for example what does the compiler say? Linker error? :confused: -Dominik
-
the problem happen when I press Go Button the program, i got the following message: Unhandled exception in file.exe: 0xC0000005: Access Violation Best Regards :)
This probably has to do with initialization. You are most likely referring to an object that has not yet been initialized. Try to step through your code instead of using GO and determine which statement results in the error. Good luck