mantian

统计

留言簿(2)

阅读排行榜

评论排行榜

2008年12月24日 #

(转)Format用法

     摘要: 把数字转换为字符串,可以用这个方法:
TCHAR szNumber[50];
_itot(dwSettingValue, szNumber, 10);
DrawText(hDC,szNumber,_tcslen(szNumber),&rect2,DT_RIGHT|DT_SINGLELINE|DT_NOPREFIX|DT_NOCLIP);

不过,使用CString的Format,可以简单的将数值转换为字符串。而且功能更多。


  阅读全文

posted @ 2008-12-24 09:39 岳阳 阅读(1109) | 评论 (0)编辑 收藏