Hello,
To dispaly the value of variable B of type double in a MFC text
control, I am using the following three lines
CString maxA;
double B=0.00;
maxA.Format("%f ",B);
Everything is and the numbers are diplayed like '2.987654'. I would,
however, want the numbers to be displayed upto only three digits
after decimal point. Would someone tell me please how can it be done?
Thanks.