RunTime error in dev

Hello,
I work a project on dev-c++ and I have the following problem.
The data is taken from a file with a specific, xml-like, representation.When I enter a file with wrong representation the programs starts but says that the proccess failed due to wrong data(I have written a small amount of code to examine it).But when I enter the file that I actually want to use it as input,the following message appears.Do you have any ideas?

http://img156.imageshack.us/my.php?image=runtimehh1.jpg
Last edited on
There's a number of reasons that can cause that error. I think the most common is stack corruption. You should check your array bounds and make sure you're not crossing them.
The same code runs successfully,on another man's pc.This is his code.
Although I will try to see if I do bounds extension.

----------------------------------------------------

Any other reasons?
Last edited on
A missing DLL?
I dont use dll.Actually I dont know how to make one.
Are you sure none of the libraries used by the project (if any) use any DLLs? Missing DLLs are the only reason I know that can cause a Windows binary to run in one system and fail in another. Unless it was compiled for AMD64, which I don't think MinGW (or at least the version of MinGW that comes with the last release of Dev-C++) is capable of.
I dont know.I use string and fstream and iostream libs.
Topic archived. No new replies allowed.