In Access 2002 how would I reference the field 'ID' in the form 'Main Sub1' in the before insert event? I want to have the code be something like:
Private Sub Form_BeforeInsert(Cancel As Integer)
Forms!Salutation1![ID] = Forms!Main sub1![id]
End Sub
It's been a long time since I've done any access or vb programming so I apologize for the dumb question.
Private Sub Form_BeforeInsert(Cancel As Integer)
Forms!Salutation1![ID] = Forms!Main sub1![id]
End Sub
It's been a long time since I've done any access or vb programming so I apologize for the dumb question.