Can you point me in the right direction? I want to combine the address
fields into one textbox. Then I want to click a button to create an
envelop. Thank you.
(Title + " " ) & (FName + " " ) & LName & (" " + Suffix) &
(vbNewLine + AddressLine1 ) &
(vbNewLine + AddressLine2 ) &
(vbNewLine + AddressLine3 ) &
(vbNewLine + PostCode)
This kind of assumes there will always be an LName, but everything else is
optional and will disappear if Null. For explanation, see Help files on
concatenation operators.
Can't remember off hand whether vbNewLine is legal in a ControlSource - you
may have to change them all to chr(13)+chr(10)
Hope that helps.
Tim F