<Sue Mosher> VB Code question

  • Thread starter Thread starter Ray Batig
  • Start date Start date
R

Ray Batig

Greetings,

With Sue Mosher's help via
http://www.outlookcode.com/d/code/setsavefolder.htm, I was able to save my
out going mail to folders vs. the standard Sent folder and then some!!

I find that when I reply to a Meeting Invitation, after clicking Send and
clicking OK to accept Inbox (the default),
I get a run time error 438. If I debug, the error is at the line below
marked with the >><<.

End If


I found out that if you go to Debug and kill VB, the invitation ends up in
the deleted folder.................

Can some one tell me what is going on and how to adjust the code to avoid
the error?

What apperas to be happening is that the invitation is some special case.
When you click on Send your calendar is updated and the invitation itself is
deleted.

TIA

Ray
 
Code questions should be posted to the appropriate programming newsgroup.

Check for the type of the outgoing item. You only want to run your code if
the Item.Class = olMail. You can also check for "IPM.Note" as the beginning
of the Item's MessageClass property.
 
Thanks for your help! I posted it here because this is the NG that I got the
code link from Sue. Sorry.
 
Back
Top