Hi!
I have a table and would like to show the text of selected cell in a separate text field. The selection is done via mouse: just click on the cell and show the text.
I thought that should be pretty easy because I already use accessing a whole row via mouse (e.g. with the following line):
user := table.accessRow(table.row).itemObject.User;)
...but how did it work for the cell? All the accessCell-methods are based on delivering row- and column-number but these are supposed to be generated after clicking on a particual cell.
Appreciate any help! Thanks!