increase the code of symbols
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
How to convert string “ABC” to “BCD” into UNICODE? CString strSource; strSource = L"ABC"; TCHAR SourceFile[100]; _tcscpy(SourceFile, strSource ); MessageBox(SourceFile); // display "ABC" - OK! below 3 operators are unproperly ! SourceFile[0] ++; SourceFile[1] ++; SourceFile[2] ++; MessageBox(SourceFile); // display ">BC"
-
How to convert string “ABC” to “BCD” into UNICODE? CString strSource; strSource = L"ABC"; TCHAR SourceFile[100]; _tcscpy(SourceFile, strSource ); MessageBox(SourceFile); // display "ABC" - OK! below 3 operators are unproperly ! SourceFile[0] ++; SourceFile[1] ++; SourceFile[2] ++; MessageBox(SourceFile); // display ">BC"