
09-30-2004, 11:54 AM
|
|
Junior Contributor
|
|
Join Date: Nov 2001
Location: Indianapolis, IN
Posts: 367
|
|
Quote:
|
Originally Posted by MKoslof
That is not alot of information to go on, but if you want to move next, you can check for EOF and then do a .moveNext call.
Code:
If Not rs.EOF Then
rs.moveNext
End If
|
Okay, Here is the code I have for the Add button do you need the code for my comboboxes as well?
Code:
Private Sub Add_Click()
On Error GoTo Err_Add_Click
DoCmd.GoToRecord , , acNewRec
Exit_Add_Click:
Exit Sub
Err_Add_Click:
MsgBox Err.Description
Resume Exit_Add_Click
End Sub
|
|