TextBox Format Numbers

B

Bruno Coelho

Hi, People, how are you? i'm having troubles with Textbox Format's, i want to
put the number 33.33 but he turn the number only 33, i already tried the
format properties and it stays in the same, so if you have any sugestion, i
would appreciate
thanks
 
R

Rick Brandt

Bruno said:
Hi, People, how are you? i'm having troubles with Textbox Format's, i
want to put the number 33.33 but he turn the number only 33, i
already tried the format properties and it stays in the same, so if
you have any sugestion, i would appreciate
thanks

Check the "Field Size" of your field in table design view. Chances are you have
it set to a size that doesn't support fractional values (Byte, Integer, or Long
Integer). For decimal support you have to use Single or Double, or use a Data
Type of Currency or Decimal.
 
Top