대소문자 변경

CString strFileNameParse = _T("abcd");

strFileNameParse.MakeUpper();//ABCD
strFileNameParse.MakeLower();//abcd

+ Recent posts