Add image to Listbox rows

I’m populating a listbox with SQL data.

For Each row As DatabaseRow In rs

ListTasks.AddRow( _
row.Column("Task_Id"), _
row.Column("Task"), _
cDate, _
row.Column("Status") _
)

ListTasks.RowImageAt([b]CurrentRowNumber[/b]) = Plus_Blue_16x16

Next

Ho do I get the CurrentRowNumber ? Just add a counter n=n+1 or is there a better way?

well it used to be

ListTasks.lastIndex

ListTasks.LastAddedRowIndex

Thanks Dave