P
Pass-the-reality
On my form, I set up a button (through wizard) for adding a new record. When
you select the "add new record" button, a new form comes up. However, an ID
number is not added until you actually type into the form. This causes a
problem when several associates have AutoNum listed in the field and not an
actually record number. Under the VB I have the below - Is there anything I
can add that once the New Record is selected, the ID number will update?
Private Sub Command74_Click()
On Error GoTo Err_Command74_Click
DoCmd.GoToRecord , , acNewRec
Exit_Command74_Click:
Exit Sub
Err_Command74_Click:
MsgBox Err.Description
Resume Exit_Command74_Click
End Sub
you select the "add new record" button, a new form comes up. However, an ID
number is not added until you actually type into the form. This causes a
problem when several associates have AutoNum listed in the field and not an
actually record number. Under the VB I have the below - Is there anything I
can add that once the New Record is selected, the ID number will update?
Private Sub Command74_Click()
On Error GoTo Err_Command74_Click
DoCmd.GoToRecord , , acNewRec
Exit_Command74_Click:
Exit Sub
Err_Command74_Click:
MsgBox Err.Description
Resume Exit_Command74_Click
End Sub