Calling target.hash_table.Count will count the number of indexes in the hash table.
trg.hash_table.Count()
This function returns an integer with the number of indexes in the hash table.
Sample
'---------- Start ----------
Function Start
Dim table
trg.hash_table.Add "a", 8
set table = trg.hash_table.Clone()
trg.Message( table.Find( "a" ) )
End Function
See also