Xbasic
INDEX.FIND_FIRST Function
Syntax
as P = Find_First()
Description
Returns the first key value.
Discussion
The .FIND_FIRST() method returns a pointer to the first key value.
Example
dim t as P
dim i as P
dim x as P
t = table.open("customer")
i = t.index_primary_put("Lastname")
x = i.find_first()
? x
= Key = "Abrams "
Record = 32.000000See Also