I need a text box that:
(1) only accepts digits as characters.
(2) automatically continues to format numeric values with commas as the user types into it.
For example,
1 becomes 1.00
10 becomes 10.00
100 becomes 100.00
1000 becomes 1,000.00
10000 becomes 10,000.00
100000 becomes 1,00,000.00
How to achieve that?