Is there any way to paint specific cells on Delphi's TStringGrid without using the OnDrawCell event, for instance if I click a button the specified cells will be painted depending on their content.
|
feedback
|
|
To keep the painting persistent, the way you should do this is as follows:
--jeroen | |||||||||
feedback
|
|
No, that is not possible. The next time Windows decides to redraw the control (something you can't really control), everything you have drawn will be overpainted by the Control's You have to use the event approach to do custom painting like that as Jeroen points out. | |||
|
feedback
|
| |||||||||||||||||
feedback
|