VS2019: How to resolve the “unknown sub-lang: 0x8” message in Resource View?

前端 未结 6 850
有刺的猬
有刺的猬 2021-01-12 19:06

I have recently started using Visual Studio 2019 for my C++11 project. VS2019 converted the project and it compiles into an executable. But I can\'t open my resource (.rc) f

6条回答
  •  失恋的感觉
    2021-01-12 19:58

    The problem is not related to the language setting, but the RC file is stored incorrectly. My file was in ANSI format. As soon as I opened the file with Windows Notepad and saved it as Unicode, I was able to open and edit the resource project in the studio again. (0xFF 0xFE was missing)

提交回复
热议问题