I have some difficulties in entering some data into TGrid Cells, can someone give me some code example with commentary on how to insert data into a TGrid cell? To be more precise in C++ Builder when I'm using a StringGrid I can use
StringGrid1->Cells[1][0] = "Hello world";
which will insert in the cell of the second column of the first row the "hello world" message. How can I do the same with TGrid? And how can I use TCheckColumn? I have many diffulties because I cannot find any good documentation.
I'm looking but there is no guide on this anywhere.