linking textfields

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

Guest

have 3 textboxes in my form. i want to take the
information from all the 3 textfields and put them under
1 field in a table. how to do that?
 
have 3 textboxes in my form. i want to take the
information from all the 3 textfields and put them
under 1 field in a table. how to do that??
------------
You can concatenate the values of three textboxes into one field in a table:

mytable.myfield = me!textbox1 & me!textbox2 & me!textbox3

Hope this helps,
 
Back
Top