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
Post a Comment