Hi all, this should be an easy one:

How can you show only one decimal place of a Double, not lose the remaining accuracy just only show (eg in a text box) 1dp.

Dim number as Double = 1.2345
textbox1.text = "<here i want to only show 1.2>"

thanks all