Hi, This is a mystery to me. I've tried simplifying my code to see where the problems arise..but I can't make it any simpler..and the NumberFormat still won't accept 0, or 0.0 as numbers.
try
{
Double.parseDouble(jTxtFAmount.getText());
}
catch(NumberFormatException ex)
{
jTxtArea.append("The amount entered is illegal\n"+ex.getMessage()+"\n");
}
I'd just as well say, you can't have a zero balance, because that's what the exception keeps catching.
Thanks.