DecimalFormat df = (DecimalFormat)NumberFormat.getNumberInstance();
DecimalFormatSymbols symb = df.getDecimalFormatSymbols();
symb.setDecimalSeparator('.');
df.setDecimalFormatSymbols(symb);
Is there a solution to force dbswing to a least recognise the dot "." as an
alternative to the comma "," ?
Thanks
I don't quite understand what you are trying to do. If you could
provide a clearer example. If i understand correctly (I don't think iI
do) One option would be to process the Text Field before
posting/processing it, ex:
TextField.getText().replaceAll("." , ",");
hth,
n perez
regards,
N Gasnier
"n perez" <nmp...@water.ca.gov> a écrit dans le message de news:
46c37da1$1...@newsgroups.borland.com...