搜索
编程论坛
→
开发语言
→
C++论坛
→
『 VC++/MFC 』
→ 请教如何把BYTE类型转换成CString类型?
标题:
请教如何把BYTE类型转换成CString类型?
只看楼主
ylxhcm
等 级:
新手上路
帖 子:6
专家分:0
注 册:2006-10-26
楼主
问题点数:0 回复次数:1
请教如何把BYTE类型转换成CString类型?
BYTE bt=0x1c;
CString m_strData;
我想把bt的值赋给m_strData,以便在对话框中显示出来?
如何做?
搜索更多相关主题的帖子:
BYTE
CString
类型
对话框
strData
2007-03-07 09:57
johan
等 级:
新手上路
帖 子:13
专家分:0
注 册:2005-3-17
第
2
楼
得分:0
LPBYTE CString_To_LPBYTE(CString str)
{
LPBYTE lpb=new BYTE[str.GetLength()+1];
for(int i=0;i<str.GetLength();i++)
lpb[i]=str[i];
lpb[str.GetLength()]=0;
return lpb;
}
2007-03-07 10:12
2
1/1页
1
参与讨论请移步原网站贴子:
https://bbs.bccn.net/thread-122837-1-1.html
关于我们
|
广告合作
|
编程中国
|
清除Cookies
|
TOP
|
手机版
编程中国
版权所有,并保留所有权利。
Powered by
Discuz
, Processed in 0.258861 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved