DB.GoPrevious

Description

Positions on the previous record of the record set. Select should be done first.

Syntax

Function GoPrevious

Parameters

none

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

Platform Objects and Methods

DB.sort

DB.AppendFinish