TheWiseGuy
MIS
I am trying to combine (display)address data into a single TEXT box (similar to OUTLOOKS address box in contacts).
The problem is that I need a CHR() for CTRL+ENTER. CHR(13) does not work. See below
Private Sub ZipCode_AfterUpdate()
[Text14].Value = Trim([Street].Value) & " " & ChrW(13) & Trim([City].Value) & ", " & Trim([State].Value) & " " & Trim([ZipCode].Value)
End Sub
Also, does Access 2000 have an equiv to Excel's "PROPER" function.
Thanks for anyone's help
The problem is that I need a CHR() for CTRL+ENTER. CHR(13) does not work. See below
Private Sub ZipCode_AfterUpdate()
[Text14].Value = Trim([Street].Value) & " " & ChrW(13) & Trim([City].Value) & ", " & Trim([State].Value) & " " & Trim([ZipCode].Value)
End Sub
Also, does Access 2000 have an equiv to Excel's "PROPER" function.
Thanks for anyone's help