Hello,
What is the property in vb.net which does the same task as the tooltiptext property in vb 6?
Thanks
Printable View
Hello,
What is the property in vb.net which does the same task as the tooltiptext property in vb 6?
Thanks
In vb.net there is a tooltip contol, in your win form add tooltip control and in code you can write
toolTip.SetToolTip(button1,"Text for tooltip")
When you run program button1 will show 'Text for tooltip'.
regard j
Or you can use the property in the properties window. Once you put a tooltip control on a form, all controls on the form will have a tooltip property. Just fill in that field with the text you want the tooltip to display.