in my Panel, i have " TSpeedButton
. There are no Tab Order property to order this 3 speed button.
How can organize speed button on my panel?
in my Panel, i have " TSpeedButton
. There are no Tab Order property to order this 3 speed button.
How can organize speed button on my panel?
TSpeedButton
derives fromTGraphicControl
and so does not accept input focus. This is why there is noTabOrder
property.If you wish your buttons to be able to receive input focus then you need to use a different button class. For example,
TButton
orTBitBtn
.