My program uses a dll with stored bitmaps. Need to save bitmaps from old 16 bit dll and convert to my new 32 bit dll. using rc2dll32 and works great but how do I get the bitmaps into the new dll.
THanks
Thank you
Harvey
Harvey
My program uses a dll with stored bitmaps. Need to save bitmaps from old 16 bit dll and convert to my new 32 bit dll. using rc2dll32 and works great but how do I get the bitmaps into the new dll.
THanks
Harvey,
Do you keep a copy of your bitmaps in files on disk ?
yes
Then include your bitmaps in your RC this way:
one BITMAP "one.bmp"
two BITMAP "two.bmp"
...
so next time when you use RC2DLL32.bat, your bitmaps will be embedded into the DLL
Antonio
Works great. Thanks