Click here to Skip to main content
Licence CPOL
First Posted 28 Jul 2006
Views 29,003
Downloads 194
Bookmarked 30 times

NumericUpDown with unit measure

How to create a NumericUpDown control with unit measure. Support Vista styles!

Screenshot - UpDownEx_with_measure.jpg

This control was designed by CTR (centro-tecnologia-rocci), Rocci Luca & D'Andrea Vito

Introduction

This control is an evolution of the classic control NumericUpDown. The control numericUpDown visualizes and returns through a property value, a decimal value, but what if we need to increment a numeric value also specifying the measure? At this point, our UpDownEx control enters the game. Our control returns a double value and visualizes a type value double and some text that indicates the measure. The increment is relative to the precision of the visualized number.

For example, if you enter a number with three decimal digits, the increment will be in 0.001. Plus every step in the measure stair is automatic, either in increment or in decrement phases.

The code

The UpDownEx code inherits the "Control" class and includes a NumericUpDown standard control and some properties like an Array that indicates the measures.

Private Sub Format()
    Dim str_Format As String
    If UpDown.Value = int_Factor * (int_UnitsActual) And int_UnitsActual > 0 Then
        int_UnitsActual -= 1
        UpDown.Value -= 1
        UpDown.DecimalPlaces -= 1
    ElseIf UpDown.Value = int_Factor * (int_UnitsActual + 1) And _
           int_UnitsActual < str_Units.Length Then
        int_UnitsActual += 1
        UpDown.Value += 1
        UpDown.DecimalPlaces += 1
    End If
    UpDown.Increment = dbl_Decimals(UpDown.DecimalPlaces)
    Dim i As Integer
    str_Format = "#,"
    For i = 0 To UpDown.DecimalPlaces - 1
        str_Format += "#"
    Next
    str_Format += "0."
    For i = 0 To UpDown.DecimalPlaces - 1
        str_Format += "0"
    Next
    dbl_Value = UpDown.Value - (int_Factor * int_UnitsActual)
    Me.TextControl.Text = dbl_Value.ToString(str_Format) & " " & str_Units(int_UnitsActual)
End Sub

Screenshot - NewProperty.gif

Units of measure

  • Factor: Represents the step between two units of measure
  • Maximum: Represents the max value
  • Minumum: Represents the min value
  • MeasureUnits: Represents an array of strings containing the units of measure

Values

  • FormattedValues: Represents the value with the units of measure
  • UnformattedValues: Represents the value
Windows Vista styles are supported:

Screenshot - vistaos.jpg

License

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

About the Author

CTR (centro-tecnologia-rocci)

Web Developer

Italy Italy

Member

Web site www.lucarocci.it

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionGood Try PinmemberSabresite9:44 7 May '12  
GeneralMy vote of 2 PinmvpDave Kreskowiak14:57 8 Mar '10  
GeneralNumeric UpDown Control PinmemberMember 332006022:51 8 Sep '08  
JokeRe: Numeric UpDown Control PinmemberCTR (centro-tecnologia-rocci)22:27 14 Sep '08  
GeneralPretty... Pinmemberwout de zeeuw13:34 17 Jun '07  
GeneralRe: Pretty... PinmemberCTR (centro-tecnologia-rocci)0:31 18 Jun '07  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 17 Jun 2007
Article Copyright 2006 by CTR (centro-tecnologia-rocci)
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid