windows - RC2247 : Cannot open Rc file : Resource explorer cannot load resource ; Load failed -


i have win 32 project i'm working on , resource file working fine till yesterday. when try open resource file edit, crashes , gives me following error:

 c://program files/microsoft sdks/windows/v6.0a/include/prsht.h(0)  error rc2247: symbol name long 

can tell me might going wrong or into. rc file simple dialog box static text , progress bar.

i had error well. approach mentioned in http://social.msdn.microsoft.com/forums/{...} link (in comment michael walz) should work. here's have do:

find part windows headers included. might "windows.h" include, or if use mfc, <afxres.h> include. add "prsht.h" header after "windows.h" include (this did trick me). surround 2 lines containing apstudio_hidden_symbols, hide lines resource editor. should this:

#define apstudio_hidden_symbols #include "windows.h" #include "prsht.h" #undef apstudio_hidden_symbols 

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -