Hello
Is it possible to use / link resources from a RC-file
and load resources from a DLL the same time ?
I want to save hight resolution images to a extra DLL
and normal resources like dialogs and other controls to a normal RC-file
because I want to keep the EXE small in size
As long I load the IMAGES from a DLL and all other controls
are defined from code, it works perfect.
The logic is used in my sample to show animated images.
It would be perfect to load dialogs and other controls from resource as well.
with using :
hResources := GetResources()
SET RESOURCES TO "IMAGES.dll"
I can call images from the DLL
but how I can call the needed resources from the RC-file ?
sample :
DEFINE DIALOG oDlg RESOURCE "TEST" ; // from RC
FONT oFont1 TITLE "Image-test" TRANSPARENT
REDEFINE BITMAP oImage ID 110 OF oDlg RESOURCE "Internet.bmp" ADJUST // from DLL
because of < SET RESOURCES TO "IMAGES.dll >
the resources defined in the RC-files are ignored.
any idea ?
regards
Uwe