http://bugs.winehq.org/show_bug.cgi?id=2795
------- Additional Comments From tony_lambregts@telusplanet.net 2005-14-03 19:41 ------- So the error is in a windows messagebox? Please provide a screenshot if this is the case.
Finding real reason for the problem is fairly easy.
run the program with:
WINEDEBUG=+relay wine program_name 2>&1 | tee filename.out
Find the part in the log where the message box is built and delete the lines following it.
The reason it displays the message box should be in the last 1000 lines before the message box. To get those line use the following commands.
tail -n 1000 filename.out > report_file
Attach the report file to this bug.