ReClassEx icon indicating copy to clipboard operation
ReClassEx copied to clipboard

compile error 1>ReClassEx.rc(1): error RC2135: file not found: Visual

Open lyqingye opened this issue 4 years ago • 5 comments

I found resource errors using vs2015 compilation

lyqingye avatar Jul 14 '19 07:07 lyqingye

Exactly the same issue happens with me on vs2017

1>ReClassEx.rc(23): error RC2135: file not found: 0x09 1> 1> 1>ReClassEx.rc(73): error RC2135: file not found: 128 1> 1> 1>ReClassEx.rc(75): error RC2135: file not found: 313 1> 1> 1>ReClassEx.rc(77): error RC2135: file not found: 314 1> 1> 1>ReClassEx.rc(79): error RC2135: file not found: 315 1> 1> 1>ReClassEx.rc(81): error RC2135: file not found: 316 1> 1> 1>ReClassEx.rc(83): error RC2135: file not found: 317 1> 1> 1>ReClassEx.rc(85): error RC2135: file not found: 318 1> 1> 1>ReClassEx.rc(87): error RC2135: file not found: 319 1> 1> 1>ReClassEx.rc(89): error RC2135: file not found: 320 1> 1> 1>ReClassEx.rc(91): error RC2135: file not found: 321 1> 1> 1>ReClassEx.rc(93): error RC2135: file not found: 322 1> 1> 1>ReClassEx.rc(95): error RC2135: file not found: 323 1> 1> 1>ReClassEx.rc(97): error RC2135: file not found: 324 1> 1> 1>ReClassEx.rc(99): error RC2135: file not found: 325 1> 1> 1>ReClassEx.rc(101): error RC2135: file not found: 326 1> 1> 1>ReClassEx.rc(103): error RC2135: file not found: 327 1> 1> 1>ReClassEx.rc(105): error RC2135: file not found: 328 1> 1> 1>ReClassEx.rc(107): error RC2135: file not found: 329 1> 1> 1>ReClassEx.rc(109): error RC2135: file not found: 330 1> 1> 1>ReClassEx.rc(111): error RC2135: file not found: 331 1> 1> 1>ReClassEx.rc(113): error RC2135: file not found: 332 1> 1> 1>ReClassEx.rc(115): error RC2135: file not found: 333 1> 1> 1>ReClassEx.rc(117): error RC2135: file not found: 352 1> 1> 1>ReClassEx.rc(119): error RC2135: file not found: 355 1> 1> 1>ReClassEx.rc(127): error RC2135: file not found: 128 1>

Replacing the relative path with absolute path doesn't help either. I'm out of ideas what could cause this.

ghost avatar Jul 24 '19 06:07 ghost

@lyqingye @Unc3nZureD Make sure you have MFC installed. You can check this in the Visual Studio Installer.

ajkhoury avatar Jul 26 '19 15:07 ajkhoury

I ran into this error, it may be worth checking your ReClassEx.rc encoding, as if it is in UTF-8 (like I had) then it breaks the resource compiler further details from SO. I wound up using VS Code to save it out as DOS encoding and the compilation finished fine.

dvermeulen avatar Aug 13 '19 07:08 dvermeulen

I ran into this error, it may be worth checking your ReClassEx.rc encoding, as if it is in UTF-8 (like I had) then it breaks the resource compiler further details from SO. I wound up using VS Code to save it out as DOS encoding and the compilation finished fine.

i agree this

stonedreamforest avatar Aug 15 '19 09:08 stonedreamforest

The problem is indeed the encoding. Just open the file 'ReClassEx.rc' on notepad++ go to enconding, and change UTF-8 to ANSI.

lguilhermee avatar Oct 13 '19 23:10 lguilhermee