Whether or not the form is bound will make a difference. If bound and you're on a record, that record will have all of its editable fields wiped out. In that case you'd go to a new record, not clear the fields.
If not bound, then you can loop over text boxes and combo boxes and set them to null. However, some controls that have values cannot be set to null (option and toggle buttons are 2 types, IIRC). Something like (untested):
VBA Code:
Dim ctl As Control
For Each ctl in Me.Controls
If ctl.Type = acTextbox Or ctl.Type = acComboBox Or... <list them here Then ctl = Null
Next
It's also common to use the tag property of the controls you want to affect. If the tag was SetNull:
VBA Code:
Dim ctl As Control
For Each ctl In Me.Controls
If ctl.Tag = "SetNull" Then ctl = Null
Next