I have a textbox that gets a value from a calculation. I'm trying to get it to display commas when the value is over 999.99 I've tried Convert.ToDecimal and Convert.ToString but it doesn't seem to work. Here is the code that populates the field. Any help would be greatly appreciated.
IskMade1.Text = Convert.ToDecimal(IPU1.Text) * Convert.ToDecimal(Units1.Text)
The IskMade1 field displays the decimal correctly, but it isn't adding any commas to the number.