About 1,630,000 results
Open links in new tab
  1. c# - How do I make a textbox that only accepts numbers ... - Stack Overflow

    Handle the appropriate keyboard events to prevent anything but numeric input. I've had success with this two event handlers on a standard TextBox: if (!char.IsControl(e.KeyChar) && …

  2. How to allow only numbers inside a textbox in Winforms C#

    Jul 24, 2017 · Learn how to prevent the input from non numeric characters inside a textbox in Winforms. To create an input element on your Windows Form that only accepts numbers, you …

  3. C# | NumericUpDown Class - GeeksforGeeks

    Sep 5, 2019 · In Windows Forms, NumericUpDown control is used to provide a Windows spin box or an up-down control which displays the numeric values. Or in other words, NumericUpDown …

  4. NumericUpDown Class (System.Windows.Forms) | Microsoft Learn

    A NumericUpDown control contains a single numeric value that can be incremented or decremented by clicking the up or down buttons of the control. The user can also enter in a …

  5. Set the Format for NumericUpDown Control - Windows Forms

    May 6, 2025 · You can configure how values are displayed in the Windows Forms NumericUpDown control. The DecimalPlaces property determines how many numbers appear …

  6. How to set the Decimal Places in the NumericUpDown in C#?

    Jul 29, 2019 · In NumericUpDown control, you can set a number of decimal places which will display in the up-down control using DecimalPlaces Property. The default value of this …

  7. c# - How do I store the input on a numeric up down value in windows

    Mar 27, 2023 · I'm working on a windows forms assignment and am not good at C#. I have a numeric up-down control that represents a tip and the professor wants me to add whatever the …

  8. Text Box Numeric Entry - Microsoft Q&A

    Nov 20, 2022 · Use a dedicated number TextBox as shown below. private readonly char _decimalSeparator = . …

  9. NumericUpDown Control Overview - Windows Forms | Microsoft …

    May 6, 2025 · The NumericUpDown control looks like a combination of a text box and a pair of arrows that the user can click to adjust a value. The control displays and sets a single numeric …

  10. c# Numericupdown to pass a value to an integer

    Aug 26, 2015 · I'm having a problem passing a numericupdown value into an integer. int count = numericUpDown1.Value; updateCount(count); So, what I want to do is pass the value of the …

  11. Some results have been removed
Refresh