textbox numeric with 2 decimals

  • Thread starter Thread starter Jose
  • Start date Start date
J

Jose

How obtain a textbox numeric with 2 decimals and formated. Example:
234,898.90. The idea is not permit introduced twice point decimals and show
it professionaly.

Thanks
 
Not sure what you are asking, but maybe the .ToString("N") format is
what you're looking for?
 
Well zacks. Sorry for my bad english. I need a textbox type currency but
without the simbol of currency. Very professional with mask and all. The
numericupdown is a basic control. I need more professional control same a
textbox numeric the Visual FoxPro.
Do you understand me?

Thanks for your comments
 
I only mention currency because it needs the two decimal places. But
the N2 format does not put any type of currency symbol in the string.
All it does is insert the decimal point and the commas.
 
Back
Top