G Guest Jul 27, 2006 #1 I'm trying to combine two textbox together and I want the result to be place under each other not on the same line.
I'm trying to combine two textbox together and I want the result to be place under each other not on the same line.
D Dirk Goldgar Jul 27, 2006 #2 anunes said: I'm trying to combine two textbox together and I want the result to be place under each other not on the same line. Click to expand... NewText = [Text1] & vbCrLf & [Text2]
anunes said: I'm trying to combine two textbox together and I want the result to be place under each other not on the same line. Click to expand... NewText = [Text1] & vbCrLf & [Text2]
G Guest Jul 27, 2006 #3 Create a new text box and set the control source as [Field1]&[Field2] Or - with a space [Field1]&" "&[Field2] Change the field names to whatever they are.
Create a new text box and set the control source as [Field1]&[Field2] Or - with a space [Field1]&" "&[Field2] Change the field names to whatever they are.