racemadnss
Registered User.
- Local time
- Today, 13:00
- Joined
- May 18, 2004
- Messages
- 58
How do I make a Return in a text box?
I have this code being put into a textbox:
The Chr(10) & Chr(13) give me Boxes instead of returns
Thanks
I have this code being put into a textbox:
The Chr(10) & Chr(13) give me Boxes instead of returns
Code:
Me.boxBillTo = "Bill Address:" & Chr(10) & Chr(13) & _
Me.BillTo & Chr(10) & Chr(13) & _
Me.BillAddress & Chr(10) & Chr(13) & _
Me.BillCity & ", " & Me.BillState & " " & Me.BillZip
Thanks