Text Box Update To NULL Value

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mpdavidson
    New Member
    • Sep 2007
    • 3

    Text Box Update To NULL Value

    I am currently working in MS access and have a form with 3 unbound textboxes on it. These textboxes feed their information into a table via an append query. I have a button that runs this query and feeds the information to the table as I planned, but I cannot get the textboxes to update to a null value after I click the button. Is there someway I can do this without having to close and then reopen the form?
  • jamesd0142
    Contributor
    • Sep 2007
    • 471

    #2
    if i understand your query correctly...

    text1.text = ""

    Comment

    • QVeen72
      Recognized Expert Top Contributor
      • Oct 2006
      • 1445

      #3
      Hi,

      What code u have used to populate data to textbox...?

      REgards
      Veena

      Comment

      • mpdavidson
        New Member
        • Sep 2007
        • 3

        #4
        The Textboxes are manually updated by the user. The information that the user inputs get appended into a table through an update query.

        Comment

        • mpdavidson
          New Member
          • Sep 2007
          • 3

          #5
          Got it! I just worte:

          me.textboxname = null

          Autoupdates to null values after i click the button. Thank for the help

          Comment

          Working...