码迷,mamicode.com
首页 > 其他好文 > 详细

unicode下char*和CString

时间:2016-12-08 23:22:39      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:har   string   message   对话   转换   str   txt   send   nbsp   

1、对话框打印char*

 char* info="";

::MessageBoxA(this->m_hWnd, info, "", MB_OK);

2、CString转char*

int nLen;
char * wsabuf = NULL;
#ifdef _UNICODE
//CString转换成char*
USES_CONVERSION;
wsabuf = W2A(send_txt_str);//send_txt_str为CString消息
#else
#endif

 

unicode下char*和CString

标签:har   string   message   对话   转换   str   txt   send   nbsp   

原文地址:http://www.cnblogs.com/judes/p/6146795.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!