We're still investigating each report that is coming in. The memory addresses and descriptions are helpful, but barring a repeatable crash, it will still be difficult to come to a conclusion on what's causing this. What would help, though, would be if you had a crash dump for each crash, that you could then attach to a post here.
Here's how you can have Windows create a crash dump:
Windows XP
1. Run c:\windows\system32\drwtsn32.exe -i
(this will register Dr. Watson as your "just in time" debugger)
2. Whenever you get a crash and you see the "Please tell Microsoft about this problem..." dialog, click "Don't Send".
3. Browse to the C:\Documents and Settings\All Users\Application Data\Microsoft\Dr Watson folder. The dump and log files are there. Keep in mind that if you have a second crash, it should overwrite the previous dump.
Windows Vista
Dr. Watson is not available in Vista, and its replacement (Windows Error Reporting) is very flaky, when it comes to generating crash dumps. So your best bet is to use windbg.
2. Run C:\Program Files\Debugging Tools for Windows\windbg.exe -I
(this will register windbg as your "just in time" debugger)
3. When you get a crash, windbg should start up automatically. At that point, in to its command window type .dump /ma c:\temp\mydump.dmp to generate the dump file.
I'm cross-posting this info in the Tips'n'Tricks forum
thread.
Luis