No property, but put code in the form's Load event to set it to blank:
Private Sub Form_Load()
Me!MyTextBox = Null
End Sub

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
> Is there a property that i can set on a text box that every time I open a
> form the text box will be empty?
jjsaw5 - 17 Jul 2007 18:13 GMT
Alright thank you very much for your help!
Klatuu - 17 Jul 2007 19:32 GMT
If this is a bound control on a bound form, you will replace the value of the
field bound to the control with Null which will will cause a loss of data.

Signature
Dave Hargis, Microsoft Access MVP
> Alright thank you very much for your help!