Numericupdown control bug

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

Hi All

I am using a numericupdown in a VB.net 2005 App and set the
interceptarrowkeys property to false when not in edit mode

The numericupdown still scrolls the value when I click on the arrows??

Is there a known bug in this control??


Regards
Steve
 
Hi Steve,

UpDownBase.InterceptArrowKeys property indicates whether the user can use
the UP ARROW and DOWN ARROW keys to select values.

If the InterceptArrowKeys property is set to true and the spin box (also
known as an up-down control) has focus, the user can use the UP ARROW and
DOWN ARROW keys to select values.

However, as long as a NumericUpDown is enabled, the user could scroll the
value by clicking the up or down buttons of the control, no matter whether
the InterceptArrowKeys property is set to true or false.

Hope I make some clarifications.

If you have any question, please feel free to let me know.

Sincerely,
Linda Liu
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
 
Linda

thanks for the reply

I misunderstood what the Intercept arrowkeys meant

All clear now

I am now just setting the increment property to 0 when i want to disable the
control

kind regards
steve
 
Back
Top