hi
I am trying to add numeric text with thousand seperater format in three textboxes.
Problem is amount after thousand seperate get ignored i.e if text1.text is 1,250.00 text2.text is 3,500.00 and text3.text is 2,100.00 the result in text4.text is 6.00 instead of 6,850.00
Text4.Text = Text1.Text + Text2.Text + Text3.Text
Text4.Text = 1,250.00 + 3,500.00 + 2,100.00 result is 6.00 instead of 6,850.00
if i remove thousand seperater format result is ok.ie 6850.00
can anyone advise what is the problem . i want to use thousand seperater.
thanks