I start working with VB 2005 EE. But I find one trouble.I was put StatusStrip control on design panel and ShowItemTooltips property switch on true. Then I put the Tooltip control on design panel and on the form add some controls. I fill Tooltip on ToolTip1 property with text. I see hint inside popup baloon, but not in the Statusstrip control. What i do wrong

Tool tips in statusstrip
greenmind
I fill event handlers for MouseMove and Mouseleave, but this solution isn't elegant. In Delphi (from the first version) you must write only one procedure and access this procedure to event handler Application.OnHint. This is only 4 lines of code for all application. Why don't work StatusStrip's property ShowItemToolTips
Confused4130
What I am trying to do is display a tool tip in a bubble when the user places the cursor over a particular label on the status strip.
I set the status strip show tool tip property to true and then set the label tool tip text to the text I wanted. I am finding that the tool tip is blinking very quickly when I place the cursor over the label. It should just stay on steady.
Any answers
Thank you
cliffhanger9
cfendya
Thanks for answer! I'll try with your solution and report about results...
GlassWalkerTheurge
xaka
Okay, Here's a snippet of code from a test program (just one of many):
Duie
huahsin68
Here's what you could do:
Put a tooltip control on your form.
Add the Tooltips for each control you want tootips, but also add them to the 'tag' property of the control.
In the Popup event of the tooltip, get the AssociatedControl (passed as an argument), examine the 'tag' of that control, and if it has tag data of the correct type, display it in your status strip.
Then set Cancel to True in the same event: this will stop the actual tooltip from showing (if you want).
It's all a bit of a hack, but it works great.
Benjamin Ray
Muhammet TUR?AK
As far as i can see, the ToolTip will be displayed in either a Balloon or a PopUp "window" (depending on the "isBalloon" property). If you would like to use the StatusStrip control to display a certain "ToolTip" then you could create a ToolStripStatusLabel on the StatusStrip. With either a MouseMove or a specific command, you can fill the .Text property of the ToolStripStatusLabel to display the "ToolTip" you wanted to show in the first place.
Hopefully this will help.
John Roper-Lindsay