Hi,
I Just want to read the , as the decimal point
So a 0,5 (1/2) is interpreted at 0.5 (US)
When I Specify 6.`2 I usually tell cw that , is the desimal (fraction) portion.
But with 4.30 when I have a format(6.`2) on a string field (that shows up correctly) as 0,5 (registered in an win32 app), and Edit this in my web-app using the same format (6.´2), when the field is displayed in the update screen it shows correctly 0,5 .
if I hit [Save], it gets stored as 5
What differences from the previous version is that I could do some sort of workaround, typing the-us-decimal-point 0.5 (But the format was 6.`2), then the data was saved correctly and displayed as 0,5 (as my format still is 6.`2) .
Now however if I enter 0,5 or 0.5 it is still saved as 5,0 (would be 5.0 with a format of 6.2)
In other words, I would like to enter
1,2 = 1.2 (us)
1.500,44 = 1,500.44 (us)
1,5 = 1.5 (us)
and so forth
Cheers
Tor-Bjarne