View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Peter Beach Peter Beach is offline
external usenet poster
 
Posts: 70
Default Hard Return in large textbox

Hi Todd,

Try something like:

TextBox1.Text = "Hello world" & vbCrLf & "Nice to see you"

HTH

Peter Beach

"Todd Huttenstine" wrote in message
...
Hey guys I have a large textbox that has word wrap
enabled. How do I programmatically insert a hard return
in the textbox?


Thank you

Todd Huttenstine