DB.GetRecordNumber
Description
Description
Returns the current record number. The range of this value is from 0 to GetRecordCount() - 1. Select must be called prior to making calls to this method.
Syntax
Syntax
Function GetRecordNumber
Parameters
Parameters
none
Return value
Return value
int - the record number
Example
This sample is not yet available.
Dim current
If DB.Select() Then
DB.GoRandom( 25 )
current = DB.GetRecordNumber() ' current is 25 now
End If
See also