views:

70

answers:

1

I was building a VC++ project and i happened to have data some thing like inside Resources.rc2 file

"My data contains "multiple quoted string" and also symbols like "<" ">" "\""

It seems Quotes and <, >, and \ are needed to be escaped.

I'm getting error RC2104 upon compiling with RC.exe in VS08. It terminates the string on first occurance of a quote. What can i do?

+3  A: 

Without knowing more about your RC file, try:

Resource Compiler Error RC2104

Jim H.