No Excel events with No Touch Deployment?

  • Thread starter Thread starter shane Carter
  • Start date Start date
S

shane Carter

I have a WinForm app which opens Excel (using Automation)
and traps Excel's Workbook_beforeclose event. The handler
for this event executes when the app is run as a
standalone exe. However, when the app is deployed using No
Touch Deployment technology and accessed from the browser
the events are not triggered, but other features of the
app (like accessing web service etc.) are not affected.
By the way, the app is a strong named one and it is
running with "Full Trust" rights.

Any ideas?
 
I have a similar problem too. Is this because
IEExec is the process running the windows forms
and Excel.exe is not able to determine which
thread called it and who registered the callback
hook?

I would appreciate any comments on this.

O. Baghdadi
 
Did you try a different "Membership Condition" other
than "Strong Name"? Like URL.
 
IEExec only supports Site and URL evidence. If you change
the codegroup Membership condition to Site or URL instead
of Strong Name, it should work.
 
Back
Top