http://bugs.winehq.org/show_bug.cgi?id=34937
--- Comment #6 from Anastasius Focht focht@gmx.net 2013-11-18 17:29:36 CST --- Hello,
--- quote --- Which traces would be appropriate for a WPF application popups? --- quote ---
well, dialog boxes are most likely the result of prior problems.
First make sure you don't have any lingering processes/services:
--- snip --- $ wineserver -k --- snip ---
Next, start a wine builtin (winecfg, notepad) in terminal to avoid Wine startup sequence in trace log:
--- snip --- $ notepad --- snip ---
Finally start the app in separate terminal using 'append' log mode and following debug channels:
--- snip --- $ WINEDEBUG=+tid,+seh,+relay wine ./foo.exe >>log.txt 2>&1 --- snip ---
At the point where the first popup is shown kill all processes using 'wineserver -k' from separate terminal. This avoids cluttering trace log with exit/shutdown/cleanup sequences from processes.
Regards