processing emails

T

tim

I have some code that verifies email addresses in
contacts. It loops through ("for each item in items")
until it finds a bad one and then hands control to the
user to edit it. Is there a way to have the code pick up
after where it left off?

thanks
 
K

Ken Slovak - [MVP - Outlook]

Call a procedure in your loop to handle bad addresses. Once the code
returns from that procedure the loop will continue at the point after
the procedure was called.
 
Top