I
iain
Is there a Form Event Property that can be used to detect if the user clicks
on the Insert New Record Navigation Button?
on the Insert New Record Navigation Button?
Mr. B said:iain,
Yes, you can use the "On Current" event of your form.
You can use code like:
If Me.NewRecord = True Then
MsgBox "This is a new Record!"
End If
Just replace the "Msgbox" with what ever you want to have happen.
-----
HTH
Mr. B
http://www.askdoctoraccess.com/
Doctor Access Downloads Page:
http://www.askdoctoraccess.com/DownloadPage.htm
John,
Slightly confused by your first line. Are you saying that Mr B's
response won't work?