Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 3 of 3 total
Thread Grid Cell-Level Mouseover Hint
Wed, Aug 30 2017 5:52 PMPermanent Link

Douglas Lyman

Is there a way to accomplish a mouse-over hint at the cell level on a grid?
Thu, Aug 31 2017 9:55 AMPermanent Link

Uli Becker

Douglas,

> Is there a way to accomplish a mouse-over hint at the cell level on a grid?

The OnCellUpdate event of a TGridColumn allows that:

   if ACell.Data = '2018' then
      ACell.Hint := 'Current Year';

Uli
Thu, Aug 31 2017 10:55 AMPermanent Link

Douglas Lyman

Thanks Uli!
Image