View Full Version : DBGrid Problem
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.
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
vBulletin® v3.8.7, Copyright ©2000-2013, vBulletin Solutions, Inc.