What's the VBA version of "\n" in LISP

What's the VBA version of "\n" in LISP

Anonymous
Not applicable
274 Views
2 Replies
Message 1 of 3

What's the VBA version of "\n" in LISP

Anonymous
Not applicable
Hi all.

Should be the easiest q ever.

Thanks
Tore
0 Likes
275 Views
2 Replies
Replies (2)
Message 2 of 3

Anonymous
Not applicable
I'm assuming \n is newline as it is in most other
programming languages. The VBA version would be "vbNewLine" or
"vbCrLf"

 

 

Tim Riley

 

 


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
Hi
all.

Should be the easiest q ever.

Thanks
Tore

0 Likes
Message 3 of 3

Anonymous
Not applicable
vbLf or Chr(10) = Linefeed character

See help, Visual Basic constants for complete list
0 Likes