首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 嵌入开发 > WinCE >

EVC下将LPBYTE转换成LPWSTR,多谢

2012-02-09 
EVC下将LPBYTE转换成LPWSTR,谢谢!LPBYTElpByte如何转化为LPWSTR类型呢?[解决办法]tempm_Ctrl.InsertItem

EVC下将LPBYTE转换成LPWSTR,谢谢!
LPBYTE   lpByte;
如何转化为LPWSTR类型呢?

[解决办法]
temp=m_Ctrl.InsertItem(i,NameBuffer,ImageDWORD);
m_Ctrl.SetItemText (temp,1,_T( "REG_DWORD "));

strData.Format(_T( "%x "),*((LPDWORD)lpData));
while(strData.GetLength () <8)
strData= "0 "+strData;
swprintf(DataBuffer,_T( "0x%s(%ld) "),strData,*((LPDWORD)lpData));
m_Ctrl.SetItemText (temp,2,DataBuffer);

热点排行