Win 32 error
-
Hello Could anyone help me about the "Win 32 error 267" I get when I run a .exe I just correctly compiled with Visual C++? The associated message is: "Could not execute: invalid directory" As I'm a beginner, it may be a very stupid mistake.... Thank you in advance JET
-
Hello Could anyone help me about the "Win 32 error 267" I get when I run a .exe I just correctly compiled with Visual C++? The associated message is: "Could not execute: invalid directory" As I'm a beginner, it may be a very stupid mistake.... Thank you in advance JET
Is your executable (code) attempting to open a file or a document that does not exist, or does it specify a directory that does not exist ? That is the apparent reason for the error, so you should check your code throughoghly. Then, set breakpoints into the code and use the debugger to determine the point where this error is caused. It might also be that your user account has no execution priviledges on the directory where the executable resides. In this case, contact the Systems Administrator for a solution. -Antti Keskinen ---------------------------------------------- The definition of impossible is strictly dependant on what we think is possible.
-
Is your executable (code) attempting to open a file or a document that does not exist, or does it specify a directory that does not exist ? That is the apparent reason for the error, so you should check your code throughoghly. Then, set breakpoints into the code and use the debugger to determine the point where this error is caused. It might also be that your user account has no execution priviledges on the directory where the executable resides. In this case, contact the Systems Administrator for a solution. -Antti Keskinen ---------------------------------------------- The definition of impossible is strictly dependant on what we think is possible.
Thanks for the answer. In fact the error happened before the entry point of the program, so no breakpoint could be useful. :(( It was in fact in options/settings/debug/working directory: as somebody gave me an example of a project, there was something specified that didn't correspond to a real directory on MY computer.... So I erased this line and now I can continue:-D JET