Home > Software engineering >  VS2017 Ribbon Caption display a question mark
VS2017 Ribbon Caption display a question mark

Time:09-24

Problem description:
1, using Mac system, under the Mac installed VMware virtual machine, install Win10 again, then install VS2017, using MFC design under VS2017 with Ribbon interface in a simple small program, compiled, or package installation operation, can show Chinese normal Ribbon, as shown in the figure below,

2, due to other reasons, then the virtual machine to the same, same Win10 installation, installation VS2017 again, and then opens the original program, in compiling environment, Ribbon on all display the correct Chinese Caption, but compile operation, Caption display a question mark (?) , if the original packaging program installation operation, but also display a question mark (?) , as shown in the figure below:


From Internet to somebody in the Caption on the dialog box shows the question mark problems, through the language to Chinese language is not a question mark, but using similar methods to modify language into Chinese here, but the Caption on the Ribbon or a question mark, did not solve,

Which master encountered this problem? What's the solution?

Thank you very much!

CodePudding user response:

For computer no noise, only the binary bytes; To the human brain is gibberish, GBK: 0 xb0 0 xa1, Unicode - 16 LE: 0 x4a 0 x55, Unicode - 16 BE: 0 x55 0 x4a, utf-8 8-0 x95 xE5 0 0 x8a

CodePudding user response:

There should be no related Chinese character

CodePudding user response:

Thank you for your reply, have found the reason, need from the control panel of Win10, reset the "regional and language", select into Chinese,

CodePudding user response:

CXXXApp: : InitInstance
Try SetThreadUILanguage or SetThreadLocale Settings area
  • Related