Minidump

  • Thread starter Thread starter Fredrik Melin
  • Start date Start date
F

Fredrik Melin

Has anyone here been able to create a _working_ minidump from VB.NET
(managed code) for debugging?

If so, do you want to share the code how you did it?

Regards
Fredrik
 
Yes that gives stacktrace but i asked for a minidump, Stacktrace does not
contain local variables, parameters for current methods, thread information
etc.

But I found the information i needed, you cannot do a minidump on managed
code because it stores its information in other memory locations, only way
to do it is to do a full dump, but thats kind of not an option for me (need
to mail the dump..and a full dump is huge)

Regards
Fredrik
 
Hi,

There is an article in next months msdn magazine about doing
minidumps on manged code with sos. Sorry the article isnt available yet.
Here is a link to sos.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsdebug/html/vxtsksosdebugging.asp

Ken
--------------------------
Yes that gives stacktrace but i asked for a minidump, Stacktrace does not
contain local variables, parameters for current methods, thread information
etc.

But I found the information i needed, you cannot do a minidump on managed
code because it stores its information in other memory locations, only way
to do it is to do a full dump, but thats kind of not an option for me (need
to mail the dump..and a full dump is huge)

Regards
Fredrik
 
Hi!

Is it possible to create a dump at runtime from a normal user pc via code,
that i can send via email?



wolfgang
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top