Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

1000 separator

Status
Not open for further replies.

Holm78

Programmer
Mar 5, 2002
60
SE
Hi

In my init of the form I put SET SEPARATOR TO '.'
In the options I chose . as separator
and when I run the form nothing is affected.
Nummbers are shown as 1000000 instead of 1.000.000

plz help
 
Hi Holm,

for textbox in your form you have to define

InputMask property

Es. ="999,999,999.99"

If you set separator='.' and point=','
you see 1.000.000,00

If you set separator=',' and point='.'
you see 1,000,000.00 Andrea C.P.
Italy
 
If I put the inputmask to 999,999,999
if I then write 10000 it shows 100,00

I want it to show 1,000 if I write 1000
and 10,000 if I write 10000
and 100,000 if I write 100000 and so on

If I write set sepatator to ',' ... nothing happens it still show 100000.

 
Hi Holm,

You have to write

="999,999,999"

and not

999,999,999

in InputMask property Andrea C.P.
Italy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top