PDA

View Full Version : DBGrid Problem


N/A
10-29-2000, 06:58 PM
How can I change the property OPTIONS in a DBGrid but at runtime ( example how to change dgrowselect to true if it is false at runtime).Thanks a lot for your answer.

N/A
10-29-2000, 09:49 PM
The OPTIONS property is a set. Use the set
operators to add or remove an option,
for example:

Add: Options := Options + [dgRowSelect];
Remove: Options := Options - [dgRowSelect];

Regards,
Kars van der Hoek