
Hrmm, dont know if this is right but it sure has me frustrated, Help Please
Quote:
> BillingComments = txtBillingComments & Chr(10) & Chr(13) &
> FormatDateTime(Now, vbShortDate) & " - " & txtMiscBillingDescription & " ("
> & txtMiscBillingAmount & ")"
> This is what I am trying to do with my variable, and it is tied into the
> same problem I was having a few weeks ago which still isnt quite fixed but,
> whether I insert Chr(10) & Chr(13) or Chr$(10) & Chr$(13) , my control will
> still see it as a little square or my rich text bix will see it as a bolded
> pipe.
FINALLY!! You posted enough code to see what you're about. You're
appending a linefeed, then a carriage return, which the TextBox does
*not* interpret as "start a new line, please" - so all it can do is
display some weird symbols for the non-printable characters you're
appending. Try reversing that order to the correct 'carriage return,
linefeed', or dumping your two Chr functions and replacing them with the
VB constant vbCrLf.
Hope this helps.
--
Jim in Cleveland
If you're writing to me, in my address
change "REAL_Address.see.below" to "worldnet.att.net"
"What's so funny 'bout peace, love & understanding?"
- Nick Lowe