Jun 22, 2004 #1 ddean68 Programmer Sep 6, 2003 26 US Is there a way to format the look of the control tip text. So that rather then one long string, it appears in a boxed window. IE: Rather then typing out in a straight line like this > The box would Format the text in a way such as this?
Is there a way to format the look of the control tip text. So that rather then one long string, it appears in a boxed window. IE: Rather then typing out in a straight line like this > The box would Format the text in a way such as this?
Jun 22, 2004 #2 PHV MIS Nov 8, 2002 53,708 FR Have you tried to insert some vbLf character to split the text ? (typed not tested) Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244 Upvote 0 Downvote
Have you tried to insert some vbLf character to split the text ? (typed not tested) Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
Jun 22, 2004 1 #3 RoyVidar Instructor Jun 16, 2000 6,606 NO If you intend to do it manually, use either CTRL+ENTER or SHIFT+ENTER to create linebreaks. Using code, you should be able to use something like this: [tt]me!txtSomeControl.ControlTipText = "This" & vbcrlf & _ "is" & vbcrlf & "a" & vbcrlf & "test!"[/tt] Roy-Vidar Upvote 0 Downvote
If you intend to do it manually, use either CTRL+ENTER or SHIFT+ENTER to create linebreaks. Using code, you should be able to use something like this: [tt]me!txtSomeControl.ControlTipText = "This" & vbcrlf & _ "is" & vbcrlf & "a" & vbcrlf & "test!"[/tt] Roy-Vidar
Jun 22, 2004 Thread starter #4 ddean68 Programmer Sep 6, 2003 26 US Thanks Roy very simple solution. Star for you Upvote 0 Downvote