Hi,
Wow! That's pretty cool.
I get it to run fine.
For other who want to try, my .dna file has
<DnaLibrary Name="AsyncCommand Test" Language='C#'
RuntimeVersion="v4.0">
<Reference Name="System.Windows.Forms" />
<Reference Name="Microsoft.Office.Interop.Excel" />
<![CDATA[
.... your code with an extra bracket at the end ....
]]>
</DnaLibrary>
I don't see any problems trying it a few times on my machine (XP,
Excel 2007).
Is there a reliable way to get the crash?
I only have the following thoughts:
1. Are you sure the Application object is happy in the case where it
crashes? I know you say it crashes in Application.Run, but maybe you
can put a call to Application.Version or something friendly, just to
check the object is really set up. There is an extra path in
ExcelDnaUtil.Application which will certainly be a problem if called
from the async thread since it uses the C API.
2. Maybe you need to set up a real SynchronizationContext on Excel's
thread - not sure exactly how to do this though (Message Hook?, make a
windows forms control?).
According to this you can call SynchronizationContext.Current in a
WorkbookActivate handler:
http://www.calvert.ch/geodesix/source/multitasking.htm
I don't really understand why this works.
It certainly interesting to me and I'll think about it more.
For now it just works fine here....
-Govert
On Jan 21, 7:47 pm, ngm_google_groups <
naju.manche...@gmail.com>
wrote: