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?
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?