tooltip

  • Thread starter Thread starter Rado
  • Start date Start date
R

Rado

Hello.
I´ve got one problem.
I take on form one listview and one tooltip.
I can in listview properties write something to tooltip.
But I want change this text during program running.
I want somethink like this/but this is wrong/
listview.tooltip="Hello"
Thak for answer.
 
* "Rado said:
I take on form one listview and one tooltip.
I can in listview properties write something to tooltip.
But I want change this text during program running.
I want somethink like this/but this is wrong/
listview.tooltip="Hello"

Add a ToolTip control to your form, then use this code:

\\\
Me.ToolTip1.SetToolTip(Me.ListView1, "Foobar")
///
 
Ken Tucker said:
Hi,

ToolTip1.SetToolTip(listview,"Hello")

Ken

How do you set a button's tooltip text programmatically? I only see a
way to do it at design time.
 
* (e-mail address removed) (Dan) scripsit:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

How do you set a button's tooltip text programmatically? I only see a
way to do it at design time.
 
Back
Top