Ruth
Why do your Next Page/Tab buttons try to move to a new record?
If you want to move to the next tab change the value of the multipage/tab.
Private Sub NextTab_Click()
Me.TabCtl0.Value = Me.TabCtl0 + 1
End Sub
To insert that code select the button, goto the Event tab of the property sheet and select [Event Procedure] for the On Click event.
Also, why don't you use the Invoices table as the record source of the form?
That would make it straightforward to add new records, and you could edit/search/delete existing records.
Bookmarks