Q:carriage return in ToolTip

  • Thread starter Thread starter Guest
  • Start date Start date
Button2.ToolTip = "Here are some " & _
vbCrLf & _
" returns and some " & _
vbCrLf & " more"

HTH
 
Thanks for the reply. I set this in the property pane in the visual studio
and run my web based application. When I move my mouse over the button I see
whole thing as a string. What am I missing?
 
No, you need to do this programatically. Put it in your page_load event.
 
Back
Top