>> > is there a secure way to redirect/copy all error messages like "Access >> > violation" (including all other error information) to a file? >> >> Yes. Close stderr and reopen it with another filename. >> >> Close(StdErr); >> Assign(StdErr,'/dev/null'); >> Rewrite(StdErr); >Should it work under DOS/ GO32V2, too ? Yes. Jonas