But when you want to use the resource in a report, the kernel does not associate your custom image with a resource ID, and you also do not have a property similar to the menus.
The only solution that you have is to add a Bitmap control to your report, then read out the data that is being stored under the node and return the container as a Bitmap value. Here is the code:
display Bitmap footerImage()
{
;
return SysResource::getResourceNodeData(SysResource::getResourceNode('WIK_MyFooterImage'));
}
Then you just have to pick the footerImage as your DataMethod on the Bitmap control, it is easy like that.
*This post is locked for comments