All is on a frame. I have an action list, there is an action with an image, the image appears in the action. I have assigned the action to a tool button but the image doesn't appear on it.

enter image description here

Why? Delphi XE.

Thanks!

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

You have to assign the imagelist to the toolbar's Images property.

link|improve this answer
Ok, I thought I was wrong to assign an image list to the action list and to the tool bar. Thanks! – maxfax Aug 4 '11 at 17:21
@maxfax Yeah, I too sometimes wonder why can't the "action consumer" read the image info directly from the action, without the need to assign imagelist twice. – ain Aug 4 '11 at 17:25
Because ImageIndex is just an integer offset. And you might link the toolbar's Images property to your SmallImages (16x16) or LargeImages (32x32) depending on your needs. – Warren P Aug 4 '11 at 18:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.