Hi, if the setting of some form controls changes from one record to another you should use the Current event. As for settings differentiating between new and existing records I prefer using the NewRecord property, i.e.
If Me.NewRecord Then
...
Else
...
Endif
Best,
Jiri