Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Size of a Tooltip control

Status
Not open for further replies.

saadabc

Programmer
Aug 5, 2004
107
US
is it possible to control the size of a System.Windows.Forms.ToolTip object .... I want the text in the tooltip box to wrap up - otherwise it is getting too wide - it is filling up the entire screen ....

 
Use 'Environment.Newline'

ie

Tooltip1.SetToolTip(Control,"Line1" & Environment.Newline & "Line2")
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top