-7

Is there a VB.NET equivalent of the UpDown VB6 control? I'm remaking a VB6 user control as a .net winform.

Robert Harvey
  • 178,213
  • 47
  • 333
  • 501
Mike Canner
  • 119
  • 2
  • 9
  • 4
    Very hard to miss the NumericUpDown control in the toolbox. Look around some more, this is supposed to be discoverable. – Hans Passant Sep 09 '14 at 19:46

1 Answers1

4

Yes, the NumericUpDown class.

Represents a Windows spin box (also known as an up-down control) that displays numeric values.

Robert Harvey
  • 178,213
  • 47
  • 333
  • 501