please interpret this stack trace

  • Thread starter Thread starter not_a_commie
  • Start date Start date
N

not_a_commie

I'm using one COM object (a Ghostfill control). Would that somehow be
related to this stacktrace? Or have any other ideas what's causing
this?

Attempted to read or write protected memory. This is often an
indication that other memory is corrupt.
-------------STACK TRACE-----------
at System.Reflection.AssemblyName.EscapeCodeBase(String codeBase)
at System.Reflection.AssemblyName.get_EscapedCodeBase()
at System.Windows.Forms.ThreadExceptionDialog..ctor(Exception t)
at System.Windows.Forms.Application.ThreadContext.OnThreadException
(Exception t)
at System.Windows.Forms.Control.WndProcException(Exception e)
at
System.Windows.Forms.Control.ControlNativeWindow.OnThreadException
(Exception e)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32
msg, IntPtr wparam, IntPtr lparam)
at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG&
msg)
at
System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop
(Int32 dwComponentID, Int32 reason, Int32 pvLoopData)
at
System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner
(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoop
(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.Run(Form mainForm)
at MyClient.Program.Main()
 
I'm using one COM object (a Ghostfill control). Would that somehow be
related to this stacktrace? Or have any other ideas what's causing
this?

The stack trace deals with a COM component or a Windows call. Something is
going outside of the managed space.

The error in question is something trying to get memory it does not control
(or control any more).

If the point in code where this is thrown is near your GhostFill control,
that would be my first option as what is causing the problem. Without
seeing code, I can only guess, however.

Peace and Grace,


--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com

My vacation and childhood cancer awareness site:
http://www.crazycancertour.com

*******************************************
| Think outside the box! |
*******************************************
 
Back
Top