This Works But Not Applicable...
Quote:
Private Sub Text1_LostFocus()
Text1.Text = Format(Text1.Text, "$0.00")
End Sub
Thank you dcarlson for helping, I really appreciate it...
The format sample above works and I'm currently using this way of formatting a currency field. But it's not efficient in a multiuser environment. Everytime I browse a set of records I have to format the currency field in the 'data_reposition' event because the field does not format the value by itself and don't have the dataformat property, the sample above which I'm currently using causes the data to read and write to the field over and over again because the field is a databound field whenever I move from one record to another. Is there any other OCX controls that has the dataformat property...?
Thank you...