Hi Dan,
You could use scripting to change the format.
In the OnOnline scripting event you can add this code:
dim TxtObj as xpTextObject
dim Temp as long
self.getObjectByName("Text1", TxtObj)
Temp = clng(TxtObj.Text)
TxtObj.Text = String.Format("{0:0,0}",Temp)
This will get the value from the textfield called Text1, convert it into a long integer and afterwards puts it back in the same textfield but with the correct formatting.
You do would need to check if it's using commas.
Greets,
Kenneth
#XPression