Popup Class Details of how Checkmark Icon is determined

You can specify your own ICON, these checks are from Clarion\Images. I link them so use Tilde ~FileName. Instead of PROP:Icon you can use its decimal value 31848

PRAGMA('link(CheckOn.ico)')  !same as PRAGMA('project(#pragma link(CheckOn.ico))') 
PRAGMA('link(CheckOff.ico)') !same as PRAGMA('project(#pragma link(CheckOff.ico))')

P=POPUP('['& PROP:ICON &'(~CheckOn.ico)] This is Checked' & |
              '|-|[31848(~CheckOff.ico)] This is NOT Checked' )

image

2 Likes