Automatically Update a Field in Table

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

Guest

I have created a simple form to enter just one piece of data and I need to
update a column of a table with this data automatically with a click of a
button. How do I do that? Thanks.
ck
 
Are you saying that the form is NOT bound to the table, and the control on
the form is NOT bound to the underlying field? (that would be one approach)

You could add code to the button click that updates the record in the
table...
 
Do you mean you want to update FieldX for *all the Records* in TableY with
the value entered in the ControlZ on your Form?
 
Van, that's precisely what I'm looking at. I've solved this by attaching an
update query to the button based on parameter value prompt for the user to
enter. Would you do it the same way?
ck
 
Back
Top