string tables
-
hello again :) I have added new item in string table of my project :
IDS_SOMETHING "SomeText"
How to retrieve the string value of the IDS_SOMETHING in my project ? thank you
-
hello again :) I have added new item in string table of my project :
IDS_SOMETHING "SomeText"
How to retrieve the string value of the IDS_SOMETHING in my project ? thank you
Look at CString::LoadString
-
hello again :) I have added new item in string table of my project :
IDS_SOMETHING "SomeText"
How to retrieve the string value of the IDS_SOMETHING in my project ? thank you
You can use LoadString Function for this.... int LoadString(HINSTANCE hInstance, UINT uID, LPTSTR lpBuffer, int nBufferMax ); follow this link.... http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/resources/strings/stringreference/stringfunctions/loadstring.asp[^]
-
hello again :) I have added new item in string table of my project :
IDS_SOMETHING "SomeText"
How to retrieve the string value of the IDS_SOMETHING in my project ? thank you