Well - the fact that VBE7.DLL appears there might point you to a possible issue.
The exception code "0xc0000005" means Access Violation - this might happen if a pointer is invalid (e.g. some COM object was unloaded prematurely, and something referencing it tried to access it later).
* Does this only happen when your add-in is loaded?
* Does any of your code interact with the VBA object model (e.g. manipulate VBA projects somehow)?
* Does any of your code interact with the COM object model on a thread other than the main Excel thread?
* Do you have any dangerous calls like Marshal.ReleaseComObject or Marshal.FinalReleaseComObject anywhere?