mhenry1384

768
reputation
62 views

Registered User

name mhenry1384
member for 1 year
seen 16 mins ago
website
location Ann Arbor, MI
age 39
I work for Ilium Software. C++, C++/CLI, C#, Python, ASP.NET, Win32, WinCE, Palm OS
1d
comment How to track down a Blue Screen of Death triggered by an (usermode) application
I got a user's minidump and discovered the problem was in windrvnt.sys which was apparently used by an old version of FolderLock (3rd party application). Told him to uninstall FolderLock and it fixed the bluescreen. I assume the other users will be similar.
1d
comment WinDbg symbol resolution
Leave out the semicolon at the end. Dunno why StackOverflow keeps adding that.
1d
comment WinDbg symbol resolution
Works for me: windbg.exe -y "SRV*c:\websymbols*msdl.microsoft.com/download/symbols";
1d
comment Any decent C# profilers out there?
Not free for a commercial license (but still cheap, $200).
1d
comment How to track down a Blue Screen of Death triggered by an (usermode) application
I'm embarrassed that I didn't know the OS created minidumps when it bluescreens (by default). I just tried reproducing using osronline.com/article.cfm?article=153 and it does.
Dec
18
comment Catching LoadLibrary() errors gracefully
For my purposes, this works great. Do LoadLibarary(), use GetModuleFileName() to get the path of the library I just loaded, then call your function.
Dec
18
comment Predicting that the program will crash
You need to do more than that, see danielmoth.com/Blog/2004/…
Dec
18
comment How to track down a Blue Screen of Death triggered by an (usermode) application
I know how to generate a minidump when my application crashes, but how do you generate a minidump when the OS crashes? I mean, the OS has crashed so there's nothing to write out the dump.
Dec
17
asked How to track down a Blue Screen of Death triggered by an (usermode) application
Nov
18
comment How to return an array of .NET objects via a COM method
So I can't just return an array, I have to write my own collection class and expose that? Disappointing, but I suppose not too difficult.
Nov
16
asked How to return an array of .NET objects via a COM method
Nov
15
comment How to get the FxCop custom dictionary to work?
I think you mean to say "put it in your project folder" not "put it in your solution folder".
Nov
12
revised How to dispose of a NET COM interop object on Release()
switched destructor and finalizer
Nov
12
asked How to dispose of a NET COM interop object on Release()
Nov
11
asked How does .NET/COM work with multiple versions registered via Regasm?
Oct
21
awarded  Popular Question
Oct
2
awarded  Yearling
Sep
8
comment Open a URL in a new browser process
matthews is correct, at least on Vista this always returns the path to Firefox. Looks like maybe HKCU\Software\Microsoft\Windows\Shell\Associations\UrlAssociations\http\UserChoice is what you want.
Aug
19
asked What does AddressFamily.FireFox refer to in .NET sockets?
Aug
19
comment Windows RegKey - Default Browser Application Path
You almost certainly want the "HKEY_CLASSES_ROOT" one, NOT the HKEY_LOCAL_MACHINE one. HKEY_CLASSES_ROOT will always return the browser the user will be expecting.
Aug
19
comment How can a bookmarklet access a Firefox extension (or vice versa)
Although you can access the Components object it looks like trying to access any useful method/property on that object such as classes or QueryInterface() gets your permission denied. So I guess it's just not possible.
Aug
18
asked How can a bookmarklet access a Firefox extension (or vice versa)
Jul
28
comment MSTest executing all my tests simultaneously breaks tests - what to do
What do you mean by "an unexpected exception"? I tried throwing .NET and native (C++) exceptions and TestCleanup() appears to always be called.