Hi,
Adding a Picklist or otherwise a dropdown list of content to a StringGrid Column programatically can be achieved:
StringGrid1.Columns.Items[0].PickList.CommaText:='This,That,More,Less ';
This applied to all the cells in that column. All the cells in this column will have this dropdown list.
But what if:
1. You just want a specific cell to have that list and the others have no drop down list?
2. You want each cell in that column to have its own specific list content.
Any ideas? Thanks.