Hi,

I am tring to draw text to the window to show the current year in a simulation.

int iyear;

Code:
CRect crect(10,250,150,300);
CString string = "Year : ";

pDC->DrawText(string,crect, DT_LEFT);
I would like to display the value of iyear after "Year: " either by adding it onto 'string' or by some other way.

thanks.