i'm currently wanting to port my C++ programs to C++/CLI so i can create the User interface there instead of doing it in pure WIN32. The problem is my program does some CORRECT and LEGITIMATE writes to some external process. Unfortunately C++/CLI throws an exception when i allow it to do so with the following exception message
Code:An unhandled exception of type 'System.AccessViolationException' occurred in Memory.exe Additional information: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
Is there any possible way for me to ignore/let this Read/Write to protected memory happen?




Reply With Quote