[求助]改变输出字体属性?
代码为:
CString str;
CTime time;
time=time.GetCurrentTime();
str=time.Format("星期:%A\n时期:%B:%d:%Y\n时间:%H:%M:%S");
MessageBox(str,"现在的时间为",MB_OKCANCEL | MB_ICONEXCLAMATION | MB_ICONWARNING);
CTime time;
time=time.GetCurrentTime();
str=time.Format("星期:%A\n时期:%B:%d:%Y\n时间:%H:%M:%S");
MessageBox(str,"现在的时间为",MB_OKCANCEL | MB_ICONEXCLAMATION | MB_ICONWARNING);
它输出的为英文,我想要中文显示怎么弄啊?
还有就是怎样改变MessageBox输出字体的属性和编辑框字体的属性?