copy text

  • Thread starter Thread starter Martin
  • Start date Start date
M

Martin

I have two text boxes on a form, one is called txtClass
and the other txtSite. I also have employee information
that I keep on the form. What I would like to do is open
up the first record enter the correct info in txtClass &
txtSite and then create some kind of command button where
this information would update on all the remaining
records, instead of having to enter the same information
on all records one by one. Is there a way I can do this?
 
Or, if the values to be entered in txtClass and txtSite will *always* be the
same, you can set a Default Value in the table's design for each of those
fields.
 
Cheryl,
They will not be the same, They'll change from time to
time. How can I approach this if I wanted to update all
the remaining records? For example txtSite would = "Los
Angeles" and txtClass would = "Advanced", how can I update
these text box values on all the remaining records?
 
Now I am not sure what process we are talking about ... If you have a bunch
of existing records which need to have values for txtSite and txtClass
changed, then perhaps an Update Query is what you need.
 
Back
Top