View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
SteveDB1 SteveDB1 is offline
external usenet poster
 
Posts: 414
Default multi-line controltiptext

Howdie all.
back in 2005, bob Phillips posted the follwoing in response to someone
asking about doing multi-line controltiptext tips.

CreateToolTipLabel CommandButton1, _
"This is a multiline" & vbCr & _
"example of a tooltip." & vbCr & _
"This is the 3rd line " & vbCr & _
"and this is a 4th."

My question is:
Will this idea work if I place the & vbCr & inline for my ControlTipText
string?

"where this string" & vbCr & "is my ControlTipText" & vbCr & "for my tool
tip" & vbCr & "of my text box on a user form."


Thank you.