I added a pop-up dialog to my installer project which validates some aspects of user input. In addition to strings which announce the result of the validation, I want to display a green check or a red cross next to each item being validated.
I created these symbols as SVG graphics and added them to Themes/Images. Obviously they were converted to ICO format. I assigned the properties CHECKMARK and CROSSMARK to the files.
In the dialog, I added an "icon" type control with Use Indirection=True, Indirect Property=CHECKMARK, and another "icon" control with Property=CROSSMARK. However, both icons are invisible in the dialog editor and at execution time.
Where is my error?
Thank you
Hans