Don't apologize, this is the Beginnings forum after all. :)
Take a look at the
System.Math class at the
MSDN Library .Net Framework Reference site for the details of all the math methods you can perform including
System.Math.Round(). I think the specific one you want is
here. You should be able to get all the documentation you need from there.
If I may offer a correction to your terminology. When doing something like rounding, you are not really doing a conversion. Converting implies a change of data type. You could certainly convert a manipulated number if you so choose but you don't need to.
To answer your last question, something like this should work:
lblMyResultLabel.Text = Math.Round(myDecimal, 2).ToString(); //Round to 2 places
Peter
----------------------------------------
Work smarter, not harder.