B Bill H. Jul 2, 2005 #1 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
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
A Allen Browne Jul 2, 2005 #2 The form has a NewRecord property, e.g.: If Me.NewRecord You probably want to do that in the Current event of the Form.
The form has a NewRecord property, e.g.: If Me.NewRecord You probably want to do that in the Current event of the Form.