I assume these are unbound fields? Meaning that the control source of the field is empty (so that it's not tied directly to fields in a table or query)?
You can set a combo box to be blank by setting it to Null. Use code like this:
Me.combo_box=Null
Set a text box to be blank by setting it to a zero-length string like this:
Me.text_box=""