Tagged Questions

3
votes
3answers
331 views

Can i hide Value in NumericUpDown control?

Lets say we have 0 displayed in value field of the control and i want that if the value is 0 - display string.Empty (i know that the type of value is decimal and there can be no string inserted ...
2
votes
1answer
100 views

How can I calculate textbox values' total with numericUpDown?

I am trying to make a small pizza order form, but I have a problem with the calculations. After selecting a pizza, the unit price and total calculations are ok. But selecting additions introduces a ...
2
votes
1answer
143 views

Microsoft Visual C# ComboBox/Listbox

Is it possible to have my comboBox, numericUpDown, and ListBox connected together? I want to make the numericUpDown to be the limit of the choices that you could made taht will be displayed in the ...
2
votes
1answer
411 views

Having text inside NumericUpDown control, after the number

Is it possible in WinForms to show a text inside a NumericUpDown control? For example I want to show the value in my numericupdown control is micro ampers so it should be like "1 uA". Thanks.
2
votes
2answers
336 views

Numericupdown force thousandsseperator to update text each keypress

When I use a numbericupdown object with thousandsseperator set to true it only updates the text to display the commas correctly when it loses focus. Is there a way to force it to refresh each time ...
2
votes
1answer
413 views

Numericupdown mousewheel event increases decimal more than one increment

I'm trying to override the mousewheel control so that when the mouse wheel is moved up or down it only increases the value in the numericupdown field by 1. I believe it is currently using what is ...
2
votes
3answers
653 views

Stagger increments in C# NumericUpDown control

I am facing some trouble trying to configure a particular configuration for a NumericUpDown control in c#. Basically, I have seen that I can set the Increment interval, but I would like to manage the ...
2
votes
1answer
802 views

Data binding fails when changing numbers on numericUpDown

I have a databinding like this: numericUpDown1.DataBindings.Add("Value", myBox1, "Width"); Whenever myBox1.Width changes it will update numericUpDown1.Value. The problem is when entering new ...
2
votes
3answers
1k views

WinForms: NumericUpDown (.NET CF 3.5) and real numbers

NumericUpDown seems to be only dealing with integers. How can I modify it (?), so I can use doubles as Value and Increment?
2
votes
4answers
4k views

New C# Programmer - Adding two numericUpDown values together?

I'm fairly new to C# programming. I am making a program for fun that adds two numbers together, than displays the sum in a message box. I have two numericUpDowns and a button on my form. When the ...
1
vote
1answer
61 views

Get handle of NumericUpDown's edit part

A NumericUpDown has 2 handles/controls: the outer spinbox, and the inner edit textbox-like control. I need to get the handle of the inner textbox control. NumericUpDown.Handle gives the outer handle. ...
1
vote
2answers
60 views

Do function on only 1 Control of NumericUpDown

I let a supertooltip (from DotNetBar) appear on every control of NumericUpDown. But I only need a supertooltip on the TextBox of NumericUpDown. Here is my current code: foreach (Control c in ...
1
vote
1answer
342 views

Custom number picker?

Is there an easy way to make a number picker for windows phone 7 that is similar to the timepicker control? I want go have custom ranges of 0-99 : 0-59 . 0-9. Google, bing, and msdn seem to be very ...
1
vote
1answer
221 views

how to get string value entered in numericupdown silverlight control?

I am using silver-light numeric up-down control. Control is set for decimal numbers. Maximum limit 28 and minimum limit is -28 Increment steps are 0.25 using this control in dutch culture so it ...
1
vote
1answer
49 views

Looking for neat, intuitive, idiomatic way to clip the values I set in NumericUpDown control using C#?

I am using the code below to achieve the functionality I desire: when the user is editing a value in a particular NumericUpDown control, and presses either k, K, m, or M, I want the currently entered ...
1
vote
1answer
211 views

How make two way binding numericUpDown to member class

I need twoway binding configClass.RaMsize to numericUpDown. BindField(this.upDownRamSize, "Value", configClass, "RaMsize");//all right this.upDownRamSize.Value = 1213;// configClass.RaMsize - not ...
1
vote
2answers
429 views

How can I sync the values of NumericUpDown and TrackBar controls in WinForms?

I have simple Windows Forms application (not WPF), and I have two controls on it: TrackBar NumericUpDown I want to make some binding between them so if one of them has its value change, the other ...
1
vote
2answers
425 views

numericUpDown prevent rounding int

I'm using numericUpDown with C# to represent integers. But there is a problem representing "big values". For instance if I assgin 127 to numericUpDown, it's displayed correctly. However, if I assign ...
1
vote
1answer
305 views

Retrieving “invalid” value from a NumericUpDown Validating event

When the user enters a value above numericUpDown.Maximum, the control's value is automatically set to the maximum. I'd like to display a MessageBox when this occurs, but I'm not able to do that ...
1
vote
1answer
604 views

Winforms: Embedded NumericUpDown control inside ListView

say in my ListView say with 4 columns (Description, Price Per Unit, Quantity, Total Price). I would like to make the third column editable, and embedded NumericUpDown control for the Quantity column. ...
1
vote
1answer
199 views

How do I force redisplay of UpDown Boxes?

How can I force the redisplay of the value of the UpDown box? I have an application that has a number of UpDown boxes for setting values of a configuration file before loading the file onto an ...
1
vote
2answers
474 views

Can NumericUpDown control do this?

I'm experimenting with the NumericUpDown control and have a question regarding its' flexibility. Basically, what I would like to do is display year ranges like so: 2006-2007; 2007-2008; 2008-2009; ...
0
votes
2answers
83 views

How to detect MouseDown on any non-TextBox control?

TextBoxes and NumericUpDowns have the odd property of not allowing you to deselect them once they are selected. When my user selects a NumericUpDown and clicks else-where on the form, the ...
0
votes
1answer
348 views

How to set TabIndex of TextBox inside NumericUpDown control Silverlight

I am using a NumericUpDown control in my Silverlight application. I have an issue when using tab to navigate through controls in Silverlight page. Case 1: When my control focus is on NumericUpDown ...
0
votes
2answers
163 views

How do I read Text property of silverlight toolkit NumericUpDown control?

I want to read value entered in the NumericUpDown control. How do i read it? XAML Layout is follows <StackPanel Style="{StaticResource StackPanelStyle_LableValue}"> ...
0
votes
2answers
180 views

Variable increment step in WinForm NumericUpDown control depending on whether Shift/Ctrl/etc. are pressed

What I want is somewhat similar to what happens in a WinForm designer in Visual Studio, say VS2010. If I place a button and select it and use arrow keys, it will move around by 5 pixels in whatever ...
0
votes
4answers
101 views

C# Assign to an Array with many NumericUpdown Objects

Ok so I am making a sudoku solver for fun (yes I know it's already been made many times over) so to let people input there values before solving I used numericalupdown (81 one of them to be exact) and ...
0
votes
1answer
89 views

How to protect yourself from argumentOutOfRangeException

I have numericUpDown control minValue - 0 maxValue - 100. I create binding to this control. If the value changes to 101 will be the exception, which I do not need, and I would like to value is not ...
0
votes
1answer
264 views

c#: TextChanged is only validating 4 of my NUD, the rest are not working

I have got a form with several NumericUpDown controls that I want them to run a function everytime the user types in them. I modified the ValueChanged events to TextChanged on all of them, but only 4 ...
0
votes
1answer
132 views

How do I force the value of a subclassed textbox?

I, like so many, need to create a Numeric textbox control in WPF. I've made good progress so far, but I'm not sure what the right approach is for the next step. As part of the control's spec, it ...
0
votes
2answers
289 views

C# WindowsForms NumericUpDown “cannot equal x value” property?

Due to my application being a quadratic root solver, and receiving input from a NumericUpDown in the form of 0 will throw a divide by zero error, I was wondering if it was possible to be able to ...
0
votes
4answers
817 views

c# WinForms can you get the NumericUpDown text area

Is it possible to get the text area of a NumericUpDown control? I'm looking to get it's size so that I can mask it with a panel. I don't want the user to be able to edit AND select the text. Is this ...
0
votes
1answer
401 views

Getting value of NumericUpDown moves caret position, can I stop this?

I've noticed that when I request the Value of a NumericUpDown control in a C# app, the caret is reset to position 0. This is annoying because my app is periodically grabbing the value of the control, ...
0
votes
1answer
271 views

Fractions in a NumericUpDown/DomainUpDown

Is it possible to display fractions in a NumericUpDown or a DomainUpDown? I know there are some fonts that have various fraction characters, but I would like to keep my form using Microsoft Sans ...
0
votes
1answer
263 views

Problem with NumericUpDown type

When i do something like this: public static void BindData<T>(this System.Windows.Forms.Control.ControlCollection controls, T bind) { foreach (Control control in controls) { ...
0
votes
1answer
333 views

ModalPopUp NumericUpDownExtender Problem

My Code is: <body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <asp:Button ID="Button1" ...