Quote Originally Posted by manish1994 View Post
hi
i have a problem
like i want a code for a word document macro to put the word to a next line

ex
06:00 Pingu Show

like this it sould display
06:00
Pingu Show
Insert the new line ascii character into your test stream. I forget what the ascii character number is for that, so let's say it's 13.
Then if your string is "06:00 Pingu Show" change it to "06:00" & Chr(13) & "Pingu Show"

Be sure to look up the correct number for the ascii "new line" character.
Good luck.