processing emails

  • Thread starter Thread starter tim
  • Start date Start date
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
 
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.
 
Back
Top