I need to add two values and print the following format: $1.498,80.
Exemple:
I need to print this value like coin using point and comma 1.234,45
Thank you your attention.
Exemple:
Code:
Item_A = 549,40; Item_B = 949,40; Total = Item_A + Item_B; -- I need to print this value like coin using point and comma 1.234,45 Label.SetText("value_total", ""..Total.."");
Thank you your attention.
Comment