Dear programmers,
I want to implement English language feature in the following application http://www.codeproject.com/Articles/714651/Desktop-Sharing-using-RDP-APIs-and-Socket
.
I followed this http://stackoverflow.com/questions/12929934/same-resource-identifier-in-different-language-sections-in-an-rc-file-why-is-it post and https://msdn.microsoft.com/en-us/goglobal/bb688160.aspx
Now my peer.rc file code is

//
// Peer.RC2 - Microsoft Visual C++ 不会直接编辑的资源
//

#ifdef string ID IDS_ENUMSTRTEST
#error  Microsoft Visual C++ 
#endif //APSTUDIO_INVOKED


/////////////////////////////////////////////////////////////////////////////
// 在此处添加手动编辑的资源...

/////////////////////////////////////////////////////////////////////////////

That works fine .
But I cannot change the language to English as I want.
Please suggest the appropriate changes in the code that works for me.
Please note that I am using vs2013 ultimate edition for that purpose.
Also when I click on the client software I get the following error that is in Chinese and unable to understand.

image here.
https://www.transferbigfiles.com/3464a589-c488-479a-a2c5-94455bc7d651/ug4vGWwsrMVO1Nnq-WXY3w2

All the resource files and dlls are changed to English but cannot find the reason of displaying the Chinese language.

Peer.rc code is now that compiles fine.
#ifdef string ID IDS_ENUMSTRTEST#error Microsoft Visual C++ #endif //APSTUDIO_INVOKED
Thanks

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.