Jim,
If a text control, on a form, is "bound" to a field in your table, any
data entered into that text control will be stored in that field of your
table.
"Bound" means that the ControlSource property of that text control is
set
to the appropriate field name from your table
If that value must be passed to another control on the form, and saved
in
the table, then that second field must be bound also.
Say you had a field called FirstName, bound to [FirstName] in your
table... and another field on the form called Other, bound to field
[Other]
in your table.
In order to pass that value from FirstName to Other, use the
AfterUpdate
event of FirstName with this code...
Me.Other = Me.FirstName
A text control must be bound to a field in your table (ControlSource)
in
order to save the value entered into it.
A text control with a (ControlSource) calculation such as =FirstName
will
display the FirstName value, but will not store it.
hth
Al Camp
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions
I am trying to create a button that when clicked will take text from a
field
in a form and put it into a field in the table from where the form was
created. Is this possible?
I have tried using the Expression Builder (=[Combo51] =
[Combo42] )...but
the text does not get into the table field. Thoughts??