I thought you were exactly right when I read this, unfortunately when I
checked, the only other event (which just is to change the forecolor If) is
also in the current. It also goes to the first record of the table.
Is it possible there is something in the default setting of the form? As I
said I've written a code similar, this is just yes or no msg box, and it
still does it.???
Thanks for your reply regardless!!

Signature
Amanda
> The OnCurrent Event will fire everytime your Customer form opens because the
> form goes from no record to the first customer record. You apparently have
[quoted text clipped - 16 lines]
> >
> > Thanks for your help!!!
Steve - 29 Jul 2008 21:24 GMT
When your opens, is it on the first record?
Try this:
Go to your OnCurrent event code. After the first line (Private Sub OnCurrent
...), put this code:
Exit Sub
The OnCurrent event will fire but none of the code (Except Exit Sub) will be
executed. See if you still get two messages. If not then this tells you that
something in your OnCurrent code is causing the form to go to two different
records.
Steve
>I thought you were exactly right when I read this, unfortunately when I
> checked, the only other event (which just is to change the forecolor If)
[quoted text clipped - 33 lines]
>> >
>> > Thanks for your help!!!