I am trying to run the PowerPrep GRE studying software (from www.gre.com) under WINE. I can launch the main PPGRE.EXE program, but at one point it needs to launch another program, and when it tries to do so, WINE complains: wine: Unhandled exception (thread 000d), starting debugger... err:seh:EXC_DefaultHandling Unhandled exception code c0000005 flags 0 addr 0x446865ff And then the program exits ("Wine failed with return code 1"). Is this something I can fix with configuration changes, or am I just out of luck? I didn't change the standard config file. I did modify the PATH variable using regedit. It's a fresh WINE install (downloaded this morning; never installed it before). Fedora Core 3. Thanks very much for any help you can give! Jessica
On Fri, 27 May 2005 14:12:32 -0400, Jessica Perry Hekman wrote:> wine: Unhandled exception (thread 000d), starting debugger... > err:seh:EXC_DefaultHandling Unhandled exception code c0000005 flags 0 addr 0x446865ffIt means the program crashed, at minimum we need either a backtrace or a +tid,+relay,+seh trace. To get a backtrace when it crashes the Wine-dbg> prompt should appear. Use the "bt all" command. To get a trace, run it like so: WINEDEBUG=+tid,+relay,+seh wine whatever.exe 2>/tmp/log then in a text editor (be warned, it might be quite large!) load it up and search for the first "trace:seh" line, then send us the part of the log starting 200 lines above that until 200 lines below. thanks -mike