Capturing listbox data to a text field

Can anyone give me some help with this? If I can capture the data from a listbox I use to a text to a text field this would be of great help. Thanks.

You can use Listbox.List(rownumber) to get the string of a row in a listbox.

To get a specific cell

TextField1.text = ListBox1.cell( row, column )

To get the row:

TextField1.text = ListBox1.cell( row, -1 )

To get the column

TextField1.text = ListBox1.cell( -1, column )

To get all the Listbox:

TextArea1.text = ListBox1.cell ( -1, -1 )

To get the documentation:
http://documentation.xojo.com/index.php/Listbox

Thank you all!