Indicates the total number of records associated with the dataset. Syntax: property RecordCount : integer; Description: Examine RecordCount to determine the total number of records in the dataset. Applications might use this property with RecNo property to iterate through all the records in a dataset, though typically record iteration is handled with calls to First(), Last(), MoveBy(), Next() and Prior() methods. See also: RecNo property, First(), Last(), Next(), Prior(), MoveBy() methods |