How to read japanese string from the string table (.rc file).
-
i want to load japanese string from the string table. can any body tell me the encoding format of .rc file (in Gereral) in Visual Studio 2005.
-
i want to load japanese string from the string table. can any body tell me the encoding format of .rc file (in Gereral) in Visual Studio 2005.
sumit.durg wrote:
.rc file (in Gereral) in Visual Studio 2005.
Look at the solution part, which is at the end of this page: Internationalization Cook book - Unicode .RC in VS 2005[^]
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
-
sumit.durg wrote:
.rc file (in Gereral) in Visual Studio 2005.
Look at the solution part, which is at the end of this page: Internationalization Cook book - Unicode .RC in VS 2005[^]
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
Can you tell me how to read japanese string from string table
-
Can you tell me how to read japanese string from string table
Try
CString::LoadString(IDS_STRING);
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
-
Can you tell me how to read japanese string from string table
in continuation with try CStringW::LoadString!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
Never mind - my own stupidity is the source of every "problem" - Mixturecheers, Alok Gupta VC Forum Q&A :- I/IV Support CRY- Child Relief and You/codeProject$$>
-
Try
CString::LoadString(IDS_STRING);
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
Does it work for other languages? ;P
-
Try
CString::LoadString(IDS_STRING);
Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP
How i should i use CString::LoadString(IDS_STRING);
-
How i should i use CString::LoadString(IDS_STRING);
RTFM!