From: Lucio Menci on
Hi all,

I made a program that shows some contextual menu (ContextMenuStrip) that can
have items (ToolStripMenuItem) with some DropDownItems.
To ensure short menu, I setted short Text properties to the
ToolStripMenuItem and a long description on the ToolTipText properties.
When I show that menu, and I hover the cursor on items whitout
DropDownItems, the tooltip appairs normally. If I hover on a item with some
DropDownItems, the tooltip appairs, then after very few milliseconds the
dropdown menu is shown and both the main menu and the dropdown are popped
over the tooltiptext.
If I hover the mouse on an unenable row and then return over the menu with
the dropdown already shown, the tooltip magically runs well.

Can I set the delay of the DropDown menu to 1 millisecond to avoid that it
can be popped over the tooltiptext? or (is the same) can I set the delay of
the tooltiptext to 1 second to permit it to be over the dropdown menu?
That settings are to be done by the program, not by the environment...

Thank you