I extrapolated from the following Forum Post to figure out how to set ToolTips for my RadSpinEditor Control: http://www.telerik.com/community/forums/winforms/ui-controls/tooltip-does-not-work-on-radtextbox.aspx
I was able to set the ToolTip for the Up and Down Buttons of the Control but the one for the Text Box part of it doesn't appear to be working. See code sample below:
Telerik Q1 2009 (v2009.1.9.414), VS 2005 (v8.0.50727.762 SP.050727-7600), XP SP3 on Core2Duo 2.99GHZ with 3GB.
I was able to set the ToolTip for the Up and Down Buttons of the Control but the one for the Text Box part of it doesn't appear to be working. See code sample below:
With CType(rspnNumPastUnits.RootElement.Children(0), RadSpinElement) | |
With .TextBoxItem | |
.AutoToolTip = True | |
.ToolTipText = "0 = Unit-To-Date" | |
End With ' -- | |
With .UpButton | |
.AutoToolTip = True | |
.ToolTipText = "0 = Unit-To-Date" | |
End With ' -- | |
With .DownButton | |
.AutoToolTip = True | |
.ToolTipText = "0 = Unit-To-Date" | |
End With ' -- | |
End With ' -- CType(rspnNumPastUnits.RootElement.Children(0), RadSpinElement) | |
Telerik Q1 2009 (v2009.1.9.414), VS 2005 (v8.0.50727.762 SP.050727-7600), XP SP3 on Core2Duo 2.99GHZ with 3GB.