I created a basic stringtable resource in Visual C++. I am trying to access that resource. However, my program can\'t seem to find the resource. Here:
int m
You could use LoadString directly instead. Here's some text from the MSDN FindResource documentation...
An application can use FindResource to find any type of resource, but this function should be used only if the application must access the binary resource data by making subsequent calls to LoadResource and then to LockResource.
To use a resource immediately...
...use LoadString!