ListBox.LastIndex

From Xojo Documentation

Read-Only Property (As Integer )
IntegerValue = aListBox.LastIndex

Supported for all project types and targets.

The number of the last row added with the AddRow, AddFolder, or InsertRow method. LastIndex is zero-based. LastIndex defaults to -1. Use this to get the row number when getting or setting values in a multi-column ListBox. See the section on Multi-column listboxes in the Notes section.

Example

This example project consists of a two-column ListBox and two TextFields for the entry of first and last names. A PushButton creates a new row in the ListBox and adds the contents of the TextFields to the ListBox.

PeopleList.Addrow("")
PeopleList.Cell(PeopleList.LastIndex, 0) = FirstNameField.Text
PeopleList.Cell(PeopleList.LastIndex, 1) = LastNameField.Text
PeopleList.ListIndex = PeopleList.LastIndex // select the newly added row
FirstNameField.SetFocus