Rule Error Connection Busy

D

Darren

Connection busy
After assigning a macro to an email rule I occasionally get the error
message

Rule Error

The operation could not be completed because the connection is busy
performing other tasks. Please try again later.

I attempted to fix the problem by adding the code

Sub HyperLinkRule(myItem As Outlook.MailItem)
Dim PauseTime, Start
PauseTime = 10 ' Set duration.
Start = Timer ' Set start time.
Do While Timer < Start + PauseTime
DoEvents ' Yield to other processes.
Loop

It has not helped?

Is there a way to test if the connection is busy?
 

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