Hello,

After I upgraded my development machine and test machine to windows 7 and 8, my programs open a window (cancel, retry or ignore) when a file or disk is not found:

Code:
FILE *fOut = fopen(.......
if (fOut == NULL) {
....
}
It looks that Windows pops up the retry windows before the 'if' command, and this is very annoiyed. Is there any way to say windows to work as it did in previous versions? are more people having this problem or am I the only rare person having this issue?

P.S.: It happens to me also that signal() is not cathing crashes as in windows XP or Vista, now a window appear to notify the user about it. My signal-dedicated function does not work any longer. the same to you?
Thanks.