views:

48

answers:

1

I would like to show 2 different tooltips on a control, both shown a the same time. Currently, when one is shown, and I try to show the other tooltip, the previous one disappears. How can I show both of them at the same time?

PS: The two tooltip objects are different.

+1  A: 

You will need to customize the ToolStripDropDown class. I found this article in CodeProject quite helpful in customizing my own tooltips, including popping up multiple tooltips, etc.

http://www.codeproject.com/KB/miscctrl/simplepopup.aspx

code4life