> I need to change a double to a string..... how is
> this done.
double d = 2.0;
String s = String.valueOf(d);
> i have made some sort of calculator, default display
> is 0.0 but when i push buttons i.e. 1 it will appear
> as 0.01, if no text is in the box it will break the
> program.
>
> cheers
Don't quite understand this part.