Does anyone know a method other than string table to store strings in resource..
cause i would like to store only one or two string …and avoid string table as if i use FindResource() function it will load a whole block of strings
Does anyone know a method other than string table to store strings in resource..
Share
Store each string separately as a Binary resource. In this case you can load each string separately by its ID.
Code below will extract resource with “ResId” from “RES_SECTION”, where
RES_SECTION is custom section defined by user when resource is added, and
ResId is id of the resource.
Do not forget to add correct error handling for above function calls.