For instance:
On Error REsume Next
Dim Copy as MailItem
Set Copy=Item.Copy
If Err.Number Then
Copy.Delete
Set Copy=Nothing
Else
Copy.Move ...
Endif
--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
--
www.VBOffice.net --
Am Wed, 6 Dec 2006 11:07:02 -0800 schrieb Rayo K:
Thanks.
I thought about that and it could probably work. The problem is that the
error only occurs when I use the item.copy.move method. The result is that
the code terminates with a copy already made (I don't understand why it
can
copy an email into the folder but not move it).
So I need to 'trigger' a potential error event before that code executes,
without actually changing anything if the error occurs. So I don't know
how
to apply an error handler to this situation. Any ideas?
-Rayo
"Michael Bauer [MVP - Outlook]" wrote:
Do you use an error handler? A simply On Errot Goto should prevent your
code
from "crashing".
--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --
Am Tue, 5 Dec 2006 06:01:01 -0800 schrieb Rayo K:
I have a macro that synchronizes my Outlook sent items with my MSN
account
sent items (for when I send mail via the website or another computer).
The
macro seems to work fine as long as the connection remains. However, if
the
connection is lost and it shifts to offline mode, the prgoram crashes.
Is there a way for VB to check if the target folder is "online"? I
think
that if I run that check before trying to access the folder, it will
work.
Thanks
Rayo