> I am trying to create Outlook Appointments for our field staff from an
> access query that is being pulled from our SQL DB. I am using Visual
[quoted text clipped - 80 lines]
>
> I hope this is an easy fix because I am close to losing my mind.
Hi BeginnerBen,
your question should be posted to microsoft.public.access.modulescoding or
microoft.public.access.interopoledde
In the meantime if I understand your problem I think you have to cancel
from your code the following instuctions:
> For IntI = 0 To rstCustomers.RecordCount - 1
....
> rstCustomers.Edit
> rstCustomers.Update
> IntI = IntI + 1
....
> Exit For
...
> Next
you have the do ... loop and so, the for cycle should be unnecessary
Your Exit For before the Loop instruction close the For cycle but also the
Do..loop nested inside the For.
Bye

Signature
Cinzia
---------------------------------------