Hi MVP's,
I have a VB expression that inserts text in a report's textbox:
(code in report's On-Active)
If not isnull(forms!my form!subject1) then
TextBox = "John Doe"
End If
How do I insert a carriage return into the textbox using VB? I would like
to feed multiple lines into the textbox so that my output ends like this:
John Doe
Addres1 #101
Tallahasee, MD 0000
Any information will be greatly appreciated...
--
Thanks a million!
I have a VB expression that inserts text in a report's textbox:
(code in report's On-Active)
If not isnull(forms!my form!subject1) then
TextBox = "John Doe"
End If
How do I insert a carriage return into the textbox using VB? I would like
to feed multiple lines into the textbox so that my output ends like this:
John Doe
Addres1 #101
Tallahasee, MD 0000
Any information will be greatly appreciated...
--
Thanks a million!
Comment