From the site:
| FAQs | |
| NumericUpDown | |
| ||
| This is because of a bug in the .NET Framework. When tooltips are set on a control that hosts other controls within it (like the NumericUpDown), tooltips are not shown on those child controls. To workaround this issue, do the following in code: [C#] foreach ( Control c in numericUpDown1.Controls ) [Visual Basic] Dim c As Control Contributed from George Shepherd's Windows Forms FAQ |

2 comments:
hey...May i ask how to make the value at the numeric up down button set as default(which is zero)????
Some problem present in this workaround.
When we move mouse from one child control to another then we have blinking and dancing of ToolTip. It happens because on hovering mouse on over child control new tooltip shown in new location with same text.
Post a Comment