What event is fired when one uses the Access add new record selector? I need to put code in that event. I would like the resulting blank form to autopopulate with information. Thank you
Use the form's Current event and look to see if it is a new record:
If Me.NewRecord Then 'Do you population here End If
> What event is fired when one uses the Access add new record selector? I > need to put code in that event. I would like the resulting blank form > to autopopulate with information. > Thank you