i have many vb6 project with .res file with some strings in it. I have to create another vb6 project for extract them.
i tried to use
hModule = LoadLibraryEx("c:\project\CGUO_SPESOMETRO.Res", _
0&, LOAD_LIBRARY_AS_DATAFILE)
But it doesn't work because LoadLibraryEx load only .dll file
How can i do?
Thanks
This extracts a text file/string from a resource embedded in an exe (it makes a menu from a text file).
Note VB can't make this type of resource. I use ResHacker to add the resource to a VB made Res file.
PS: As to your res file, add to a new VB project, and a blank module with Sub Main, and compile as a DLL.