CellObject - a sample fragment please!
Alfred

Hello Nicholas,
Some time ago, I bought ProfDHTMLEdit and I liked it so that is why I am looking at ProfGrid - it is my third attempt to get a grid component that does what I want without busting a gut.
Like lots of others, when I try out a new component, I like to get something working quickly - usually demo examples are my starting point. You don't seem to offer any.
Next, I resort to Google and check out for fragments of code on the Internet and usenets. There is virtually nothing relevant out there. Not a word on experts-exchange.com which is quite an accomplishment. I am sure you have heard of the proverb "don't hide your light under a bushel"
Lastly, I search focusing on site:profgrid.newsgrouphosting.com or site:profgrid.com. In my search on the word CellObject, I only could find the "explanation" in your documentation. There is not even a fragment to illustrate its usage.
The following works:
ProfGrid1.Cells[2,2].Button := true;
ProfGrid1.Cells[2,2].Value := 'toto';
But his does not:
ButtonX := TButton.Create(ProfGrid1);
ButtonX.Caption := 'Hi there';
ProfGrid1.Cells[2,3].CellObject := ButtonX;
Any ideas?