How do you do an "endl" in a word document?
Can“t find the command for it.
Printable View
How do you do an "endl" in a word document?
Can“t find the command for it.
I am guessing you mean:
How do I put an endl into a document that has text in it (or a variable). Take a look at this:
textedit1.text = "Line 1" & chr(13) & chr(10) & "Line 2"
You can use this in documents too.
That worked.
Thanks alot.
Used
word_document_main.Range.InsertAfter(Chr(13))
to change line at the end of the document.