Click here to Skip to main content
15,879,535 members
Articles / Desktop Programming / Windows Forms

Numeric UpDown Control for Hardware Control Applications or Yet Another SpinEdit

Rate me:
Please Sign up or sign in to vote.
4.55/5 (9 votes)
18 Jun 2008CPOL4 min read 43.6K   942   25   5
An article on numeric Up/Down control with some unique features useful for hardware control applications

Introduction

For many of my projects which are mainly related to controlling hardware, I need a numeric UpDown (SpinEdit) control which could easily and quickly change value extending along many orders of magnitude, let's say to change frequency from 1 to 2 GHz and then add 200 Hz more. Unfortunately standard controls provided by Borland VCL or .ET do not satisfy this requirement. A search among third party controls was not successful too as I needed some specific capabilities, most notably the value late update. Under the late update I mean that for hardware control application it is common that SpinEdit controls value on remote device and thus it is desirable to initiate value change by SpinEdit, but postpone the actual Value change until hardware confirms that parameter has been changed.

The simple IgSpinEdit control offered in this article provides the required functionality. It was originally developed for Borland C Builder, but as I started to use .NET some time ago I ported it to C# and improved it a bit. I am not going to discuss the actual code in this article. It is present in the zip file. I will only give a brief explanation of the major properties.

Using the Code

The control is built upon UserControl and provides the following original features:

  • Extra UpDown buttons to control Increment value, which may change between adjustable IncrementMin and IncrementMax. On every Increment change, a position of the digit in the value controlled by Value UpDown is advanced back or forth on one position thus providing quick navigation along wide range numbers. Tooltip gives a clue as to which digital position is currently affected.
  • IncrementVisible property which controls whether or not Increment UpDown buttons are visible.
  • ExternalUpdate property which governs if the Value changes instantly or through external code.
  • Pow2Increment property which, if set, directs the control to generate sequence where the next value is twice as high or twice as low as the previous one. It can generate any base*2^n series, e.g. useful 1, 2, 4, 8 … n^2 (base = 1). In this mode, Increment is controlled by IgSpinEdit itself and thus Increment UpDown buttons are automatically hidden.
  • Flexible visual representation of the Value provided by FormatString property along with ValueAsInt and ValueAsHex properties. ValueAsInt and ValueAsHex do not change the internal representation of the value, which is double, but control how the value is displayed. For example, to show value as Hex, set ValueAsHex to true and FormatString to “0x{0:Xn}”, where n is the number of digits to display. ValueAsHex, if set, also changes Increment multiplier from default 10 to 16 to provide same one digit advance on every hit on Increment UpDown.
  • ValueChanging event which is raised if ExternalUpdate is set to true and value UpDown button has been pressed. The control passes a new value to the handler without updating its internal state. Handler may cancel update by setting e.Cancel or pass new e.Value to external code which should later update internal value state by assigning to Value property directly.
  • ValueChanged event which is raised when Value has been updated internally.

Other properties and events are inherited from UserControl.

The control does not try to prevent all possible erroneous parameter combinations, so please apply common sense while setting control properties and it will work quite well.

The control is accompanied with a simple test application showing how to use the control and allows playing with parameters. The application screenshot is presented at the beginning of the article.

One important thing to note is that IgSpinEdit implements ISupportInitialize interface to handle correct initialization. Fortunately VS Designer automatically handles calls to ISupportInitialize BeginInit()/EndInit() pair, so you should not do it yourself.

For test convenience, an "External update" handler is implemented in the lower left corner of the test application and it handles ValueChanging event of all IgSpinEdit controls. Please note that on application start up, only “Value as Int” has ExternalUpdate set that prevents it from changing value until the Update button is pressed.

Conclusion

This article presents an extended numeric UpDown control which is especially useful for hardware control applications. There is nothing fancy in it, but I found it really useful for my projects. I hope some readers will agree with me.

Feel free to use the provided code in any way you wish. Comments and suggestions are welcome.

History

  • 06-18-2008: Original article

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
New Zealand New Zealand
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
urinspiration17-Jul-10 6:22
urinspiration17-Jul-10 6:22 
GeneralVery Nice! Pin
cj_delgross23-Oct-09 9:42
cj_delgross23-Oct-09 9:42 
GeneralQuestion Pin
Steve Messer12-May-09 5:04
Steve Messer12-May-09 5:04 
GeneralRe: Question Pin
Igor Voynovsky12-May-09 17:55
Igor Voynovsky12-May-09 17:55 
GeneralRe: Question Pin
Steve Messer13-May-09 3:42
Steve Messer13-May-09 3:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.