How to replace numbers with more user-friendly text in a NumericUpDown?

I want the funcionality of a NumericUpdown (cycle through the 12 possible values) but want to display month names rather than 1..12.

Possible?

Upvotes: 1

Views: 185

Answers (1)

LarsTech
LarsTech

Reputation: 81635

Try using the DomainUpDown control, which is sort of the same thing as NumericUpDown, but for text.

Upvotes: 3

Related Questions