Back on my form with a ton of financial data entry textboxes but I want to have the data formatted at runtime, as I enter the data.
I have a format declared as
Public Const cFmtCurrency = "##,###,###" ' don't need decimal for the local China currency
What would be the least compicated way to have these textboxes (19 of them) format the Long Integer values as I enter the data. I think a Lost Focus event would be silly; there must be a better, more efficient way.
Also want to use this format when I retreive records from the db (don't see a reason to mask data in db)
Ideas, comments, suggestion?