2018年7月8日 星期日

[C++]CSTRING TCHAR 互相轉換


CString>TCHAR*的轉化可以用函數GetBuff()
!!!!!!使用前注意!!!!!!!!!  需加入 #define _CRT_SECURE_NO_WARNINGS 在程式開頭(stdafx.h)
CString csbuf;
csbuf.Format(L"cstring");
int cnt = csbuf.GetLength();
TCHAR* Msg = NULL;
Msg = new TCHAR[cnt+1];//記得+1
_tcscpy(Msg, csbuf);
delete[]Msg;//刪除動態創建
TCHAR*>CString的轉化
TCHAR szTchar[18] = L"TCHAR";
 CString  str;
 str.Format(_T("%s"),szTchar);  

沒有留言:

張貼留言

[SQL]顯示千分位與小數顯示

  CONVERT ( data_type [ ( length ) ] , expression [ , style ] ) CONVERT style參數說明 1  (expression為 money 或 smallmoney型別): 0 : 預設,保留小數位後兩位,並四捨...