Cannot Clear the text when a Form Loads

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to clear the data which comes up in different text boxes and combo boxes when an Edit Form pops up.

I tried using [textbox].Value = "" command but when the form loads up it shows an error window saying
" You cannot assign value to this object"

If anybody has come uo with such a problem in the past or if anyone has any ideas about it please reply to this post.

Thank You,
AC
 
You write that it's an EDIT form. If so, it's doing what it should.

If you also allow adding new records from this form you might be sure that
the properties for the form are set accordingly. If you always want the
form to open on a new record on load, look up GoToRecord in Help.

HTH
--
-Larry-
--

Andy said:
I want to clear the data which comes up in different text boxes and combo
boxes when an Edit Form pops up.
I tried using [textbox].Value = "" command but when the form loads up it shows an error window saying
" You cannot assign value to this object"

If anybody has come uo with such a problem in the past or if anyone has
any ideas about it please reply to this post.
 
Back
Top