views:

82

answers:

1

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 Serif uniformly.

A: 

What do you mean by upto one-tenth.

I have a sample code for you, try if it works for you

nupdwn.Minimum = -10;
nupdwn.Maximum = 10;
nupdwn.Increment = 0.25;
nupdwn.DecimalPlaces = 2;
Searock
What I meant was the use of an actual fraction, such as one over ten, not 0.01.
do you mean 1/10 ?
Searock