Question : Converting Double to CString

hi..
does anyone know how to convert double to CString?

thx

Answer : Converting Double to CString

CString a;
a=a+"xxxx";

double no = 9.0

CString tmpVal;
tmpVal.Format("%lf", no);

a=a+tmpVal;

Rosh :)
Random Solutions  
 
programming4us programming4us