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.

link|improve this question

74% accept rate
Alternatively, if there is a complementary font that looks exactly like Microsoft Sans Serif and supports fractional characters (up to one-tenth), I would also accept that as an answer. – MarkP Sep 1 '10 at 16:16
feedback

1 Answer

up vote 0 down vote accepted

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;
link|improve this answer
What I meant was the use of an actual fraction, such as one over ten, not 0.01. – MarkP Sep 1 '10 at 16:27
do you mean 1/10 ? – Searock Sep 1 '10 at 16:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.