Original title: [RESOLVED] Tips on making VB6 program DEP compatible?
So I made some now big project and gave it for testing to the people, and they suddenly report that the program immediately crashes when they try to run it. First I didn't know about Data Execution Prevention until I searched on the Internet about that crash (I typed into Google "BEX error"). I found a solution - either the DEP has to be completely disabled or the program has to be put on its exclude list, but of course that wasn't so elegant and therefore I'm focused these days on solving that problem, without having to do such things and causing one more struggle to the users.
I've recently found that editbin.exe /NXCOMPAT:NO should help, but unfortunately it haven't in my case. Are there any other possible solutions to this problem?