It is possible to do something, for example if the movie is comedy the template use a funny figure, and if is horror use a different figure.
Other way to explain is if in the ptint templates we can make different template figures appear in function of different movie fields (like category, range...)
Print Templates...
It is possible.
In the Report Designer, put the different pictures that you would like so make available for categories.
Then for each picture, in its properties window, click on the "Memo" button. Then click the "Script" option, and in the bottom part of this window enter :
begin
Visible := [Category] = 'Action';
end;
This will make this picture visible only if the category is Action
So you can put this for each picture, changing the category name for each one, and when you have finished put all the pictures at the same place on the report, only the one that corresponds to the action will be visible.
In the Report Designer, put the different pictures that you would like so make available for categories.
Then for each picture, in its properties window, click on the "Memo" button. Then click the "Script" option, and in the bottom part of this window enter :
begin
Visible := [Category] = 'Action';
end;
This will make this picture visible only if the category is Action
So you can put this for each picture, changing the category name for each one, and when you have finished put all the pictures at the same place on the report, only the one that corresponds to the action will be visible.