Exception

J

Jason

A message box appears when I try and send a meessage from my Win-Form through
Outlook asking for access to send an email. It works fine if I click
"Accept", but I receive an exception when I click "Deny". Is a try/catch the
only way I can handle this? I would not expect any exceptions when I click
the "Deny" button.

For reference, here is the exception: "Operation aborted (Exception from
HRESULT: 0x80004004 (E_ABORT))"

Thanks
 
S

Sue Mosher [MVP-Outlook]

If you click Deny, Outlook raises an error. Therefore, your code should handle that exception.
 
K

Ken Slovak - [MVP - Outlook]

If you're getting an exception a try...catch block is the way to go to avoid
an unhandled exception.

You don't say what versions of Outlook you are supporting or anything else
much about where and how the code is running, so it's hard to say anything
else. But I'd be looking to avoid the security prompts completely and avoid
that whole situation instead of leaving it to the user to handle the
security prompt.

See http://www.outlookcode.com/article.aspx?id=52 for information on
avoiding the security entirely.
 

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

Top