Re: NumericUpDown - No maximum or minimum Programming Software Development by ddanbe NumericUpDown does not work with [B]integer [/B]but with the data type [B]decimal[/B] It ranges from +-1.0 X 10e-28 to +-7.9 X 10e28. Re: visual c++ numeric updown help Programming Software Development by jonsca NumericUpDown is a Winforms control in .NET. @OP- I tried a … the way to go (I'm not completely dismissing the NumericUpDown but it may have been designed (but to what purpose… Re: NumericUpDown Programming Web Development by kvprajapati >I want to coded NumericUpDown betwwen to Numbers 2,5 [URL="http://www.asp.net/ajax/ajaxcontroltoolkit/Samples/NumericUpDown/NumericUpDown.aspx"]NumericUpDown[/URL] tutorial. NumericUpDown Programming Web Development by abrarHuniedi I want to coded NumericUpDown betwwen to Numbers 2,5 How I can do that??? NumericUpDown Control help!!!! Programming Software Development by bbman With the command"NumericUpDown Control" I would run a command based on the number selected in NumericUpDown Control example If I select the number 5 in the Control NumericUpDown instruction must be repeated 5 times/x5 PS: sorry for my English but I am Italian Re: NumericUpDown Control help!!!! Programming Software Development by bbman thanks the only problem is that if I increase the NumericUpDown control ... you run the instructions, but I would like that if I click button1, the instructions are executed according to the times selected with the command NumericUpDown Re: NumericUpDown Control help!!!! Programming Software Development by Antenka Ok, we're one step closer! :) Now, take a look at [URL="http://msdn.microsoft.com/en-us/library/system.windows.forms.numericupdown.aspx"]NumericUpDown Class[/URL] and replace the "//THERE?????" with a value from your control. Re: NumericUpDown Control help!!!! Programming Software Development by bbman thanks the only problem is that if I increase the NumericUpDown control ... you run the instructions, but I would like that if I click button1, the instructions are executed according to the times selected with the command NumericUpDown Re: NumericUpDown Control help!!!! Programming Software Development by bbman …(); proc.WaitForExit();[/CODE] repeats based on the number selected in NumericUpDown Control NumericUpDown - No maximum or minimum Programming Software Development by tdeck Is there a way to use the NumericUpDown control without a maximum or minimum value? Re: NumericUpDown - No maximum or minimum Programming Software Development by tdeck … number. I'm fine with casting the value of a NumericUpDown as long as I can get around the range restrictions… Re: NumericUpDown - No maximum or minimum Programming Software Development by ddanbe Well that's why the Minimum and Maximum are there for, they are meant to be used. If a NumericUpDown would return an integer it would not be needed, but sorry for you it returns a decimal...:'( numericupdown.value generates error when converting to string Programming Software Development by AngelicOne … when loaded, will read the inserted value made by the numericupdown.value, using the following code [CODE]numericUpDown1.Value = dt.Rows… NumericUpDown to Int Programming Software Development by Zephyr- Hey, For some reason the numericUpDown is a decimal or a double or one of those ;) I find that annoying, but whatever. So how do I use it as an int? Int32.Parse(); only works for strings. How to use NumericUpDown? Programming Software Development by darcee … websites but the thing is i want to use the NumericUpDown tool in Vb.net 2008, for example i choose 10… in NumericUpDown then i click the button then it will process or… accounts... please give me an idea on how to use NumericUpDown... i try to play the code using if else but… Help with NumericUpDown and a remainder Programming Software Development by WildBamaBoy I have a group with 7 different NumericUpDown boxes in it. Above those I have a label that …tells how many choices you have remaining. When the NumericUpDown goes up, the remainder goes down. However it also goes… down when a NumericUpDown goes down as well. It needs to go [U]UP… Re: How to use NumericUpDown? Programming Software Development by kvprajapati [b]>How to use NumericUpDown?[/b] Put following code in handler of click event, [code] .. For i As Integer = 1 To NumericUpDown1.Value 'Put your code Next .. [/code] Simple Timer with Progress Bar and NumericUpDown Programming Software Development by xairzx … im creating a simple timer.it have NumericUpDown and Progress Bar. i use NumericUpDown to set the timer in minutes.I also… Re: Help with NumericUpDown and a remainder Programming Software Development by abelLazm Have you checked [URL="http://msdn.microsoft.com/en-us/library/system.windows.forms.numericupdown.aspx"]this link[/URL] Trying to use numericUpDown values in simple calculation Programming Software Development by Triryche I am trying to use the values from numericUpDown boxes. With the execptoin of totalRunTime, all variables in this …sample of code are from numericUpDown boxes. I have tried declaring totalRunTime as an int, decimal… Re: Trying to use numericUpDown values in simple calculation Programming Software Development by Triryche Thanks for your reply. Everything is from a NumericUpDown box, except for totalRunTime. Error 1 Operator '+' cannot be applied to operands of type 'decimal' and 'System.Windows.Forms.NumericUpDown' Re: Trying to use numericUpDown values in simple calculation Programming Software Development by Triryche initialHold is the name property of a NumericUpDown box. Create a new thread for each item in a numericupdown? Programming Software Development by kytro360 … to create a new thread for each item in a numericupdown. I want each thread to perform an object. I have… C++ change textBox font size with a NumericUpDown. Programming Software Development by juss2022 … named "textBox1" Here is the function of the NumericUpDown: [CODE]private: System::Void numericUpDown2_ValueChanged(System::Object^ sender, System::EventArgs… How to create a Drawing Application in VB.NET (VS2008)? Programming Software Development by slowly_but_sure ….Forms.Label Me.Tolerance = New System.Windows.Forms.NumericUpDown CType(Me.Tolerance, System.ComponentModel.ISupportInitialize).BeginInit() Me… Private WithEvents Tolerance As System.Windows.Forms.NumericUpDown Protected Overrides Sub Finalize() MyBase.Finalize() … Re: Vb.net Help!!!!! Programming Software Development by anansiva [QUOTE=jimmer12;506406]hi i have a numericupdown box on my first form and in the next form i want the number selected in the numericupdown box to produced that number of text boxs in the next form.[/QUOTE] ans; if it s windows application,use below code in form2 text box.text=form1.numericupdown.value Vb.net Help!!!!! Programming Software Development by jimmer12 hi i have a numericupdown box on my first form and in the next form i want the number selected in the numericupdown box to produced that number of text boxs in the next form. Re: Vb.net Help!!!!! Programming Software Development by Jx_Man u mean that value from the numericupdown will read in next from? i suggest to use public shared variable to accomodate the value from numericupdown.then u can call the variable in other form. Re: how to signal WinForm control input out of range? Programming Software Development by BobLewiston …have to dummy up my own custom version of a NumericUpDown control, screen the input, and then pass acceptable …input to the real NumericUpDown control. That would just circumvent the whole ease of …use of the real NumericUpDown control. Surely Microsoft would have seen this one coming… datagrid value to textbox Programming Software Development by Riekus007 … displaying the data and just populate one text box or numericupdown with a value the datagrid displays 3 columns that is… i want to load the amount in a textbox or numericupdown can someone please help struggeling for 2 hour now please…