new record on form

  • Thread starter Thread starter Bill H.
  • Start date Start date
B

Bill H.

how do I test for being at a new record on a form?

if they are not at a new record, i want to lock a couple of formfields
 
The form has a NewRecord property, e.g.:
If Me.NewRecord

You probably want to do that in the Current event of the Form.
 
Back
Top