Display text box data in a label

G

goplayoutside

I have three fields that make up a primary key in most of my tables. The
data is entered in a text box. I want to display in a label at the top of a
form which shows all three text boxes. For example:

Data 1 textbox1
Data 2 tetxtbox 2
Data 3 textbox 3

Label Name textbox1textbox2textbox3. On the form it is just for display.

Thank you.
 
R

Rick B

In an unbound text box on your form put the following...


=[SomeFieldName] & [SomeFieldName2] & [SomeFieldName3]
 
G

goplayoutside

Rick B You are the best. Thank you.

Rick B said:
In an unbound text box on your form put the following...


=[SomeFieldName] & [SomeFieldName2] & [SomeFieldName3]


--
Rick B



goplayoutside said:
I have three fields that make up a primary key in most of my tables. The
data is entered in a text box. I want to display in a label at the top of a
form which shows all three text boxes. For example:

Data 1 textbox1
Data 2 tetxtbox 2
Data 3 textbox 3

Label Name textbox1textbox2textbox3. On the form it is just for display.

Thank you.
 
Top