


The manual and help file do not include mention of the following TList features;
================================================================================

METHOD:     RowToItemIndex 
	Applies to TListGrid objects

This method converts from a Row number within a TList Grid object to an Index value for TList.

	For example:
		Sub GridCellDblClick(GridCell As TListGridCell, Button As Integer)
		' user has clicked on a grid cell,
		' lets identify which index item this belongs to
		Index = GridCell.Grid.RowToItemIndex(GridCell.Row)
			End Sub
			
================================================================================