vb.net - Change the increase value of numericupdown -


i looking while how change increase value of numericupdown in vb.net , can't find resources online.

what mean is, when have numericupdown value 1,000 , minimum of 0, maximum of 100,000, want make when clicks increase arrow, value increase 1,000 example.

you can control minimum , maximum values this:

me.numericupdown1.minimum = 0 me.numericupdown1.maximum = 100000 

you can define increment this:

me.numericupdown1.increment = 1000 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -