怎摸把int型变量显示到标题栏上,我用CString转换时报错 问题点数:20、回复次数:2Top
int a;//a为你想要转换的值 …… CString str; str.Format("%d",a); str中即为转换后的字符串。Top
多谢楼上的兄弟Top