DBCreator.GoPrevious
Description
Description
Positions on the previous record of the record set. Select should be done first.
Syntax
Syntax
Function GoPrevious
Parameters
Parameters
none
Return value
Return value
none
Example
Code sample
Dim val
If DB.Select() Then
DB.GoBottom()
Do
val = DB.GetFieldValue( "Field1" )
Loop While( DB.GoPrevious() )
End If
See also