Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Wie wandle ich ein double wert in einen String um? Von integer in String gehts per "itoa", gibts denn ne ähnliche funktion für double?
Danke schonmal
versuch es mal mit _ecvt ansonsten ähnlich wie itoa.
double a = 25.98675; CString strIrgendwas; strIrgendwas.Format("%f", a);
danke!