News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

Old programm an new system

Started by Jichko, November 19, 2019, 08:53:15 PM

Previous topic - Next topic

Jichko

Hi! I wrote 7 years befor (under win7) a 1500 line grosse programm, which works untill today. Now i wanted to do some changes on my new system (win10). I made a new project with the source, and i kinked my translated library ojects. It was without errors translated, but by run i get always (even when i run it in kompatible mode) only the exception code 0xc0000005. The compiler option , target 32bit. it is depending von win 10 in the ressource file? But the compiler and linker found no any error.

BlueHazzard

0xc0000005
I think this is stack overflow on windows.

If it compiles fine then the work of codeblocks is done, and this is probably the wrong forum to ask this kind of questions. Codeblocks is only a fancy text editor. It has nothing to do with your program and does not interfere with it. So runtime errors, like you have, have nothing to do with codeblocks.

Quoteand i kinked my translated library ojects
Do you mean object files or library files? Object files should NOT be copied and reused. They should be created by the compiler what it is using them. Libraries on the other hand can be copied, but if you use c++ they should also be made by the same linker version that are using them...

Quoteit is depending von win 10 in the ressource file?
What resource file? You have to know if your program uses any system file...

What if you start your program with the debugger? Where does it stop?