Contents Index FindNext method Insert method

UltraLite for MobileVB User's Guide
  UltraLite for MobileVB API Reference
    ULTable class

FindPrevious method


Prototype 

FindPrevious( [ num_columns As Long = 32767 ] ) As Boolean
Member of UltraLiteAFLib.ULTable

Description 

Move backwards through the table from the current position, looking for the previous row that exactly matches a value or set of values in the current index.

The current index is that used to specify the sort order of the table. It is specified when your application calls the Open method. The default index is the primary key.

For more information, see Open method.

On failure it is positioned before the first row (BOF).

Parameters 

num_columns    An optional parameter referring to the number of columns to be used in the FindPrevious. For example, if 2 is passed, the first two columns are used for the FindPrevious. If num_columns exceeds the number of columns indexed, all columns are used in FindPrevious.

Returns 

True if successful.

False if unsuccessful (BOF).


Contents Index FindNext method Insert method