I am using a tooltip control for a picturebox control. I would like to display the caption of the tooltip in newline. How to do this?
My picturebox name is help and tooltip name is ttp and I am displaying this tooltip on the mousehover event of the pictureimage.
[CODE=vbnet]Private Sub help_MouseHover (ByVal sender As Object, ByVal e As System.EventArg s) Handles help.MouseHover
tt1.SetToolTip( help, "You can select one of the two setup dialog box.The Setup type dialog boxes views are represented below \r\n Based on the selection of this setup type, The installscript project displays corresponding setup type type during the installation of your application")
End Sub[/CODE]
I am using \r\n to insert a newline. But it doesn't work. Can you help me?
My picturebox name is help and tooltip name is ttp and I am displaying this tooltip on the mousehover event of the pictureimage.
[CODE=vbnet]Private Sub help_MouseHover (ByVal sender As Object, ByVal e As System.EventArg s) Handles help.MouseHover
tt1.SetToolTip( help, "You can select one of the two setup dialog box.The Setup type dialog boxes views are represented below \r\n Based on the selection of this setup type, The installscript project displays corresponding setup type type during the installation of your application")
End Sub[/CODE]
I am using \r\n to insert a newline. But it doesn't work. Can you help me?
Comment