Sales::GetPrevious (Interface: Sales)
 
Gets the previous Sales Document.
 
VARIANT_BOOL GetPrevious ()
 
Return value
True if the file was successfully positioned on the previous record, otherwise false.
 
Remarks
The order in which the previous record is sought, is determined by the preceding SeekBy-method.
When a filter is in effect (see SetFilter), this method positions on the previous record in the record set determined by the filter, and a call of any SeekBy-method does not modify the sort order nor the result of subsequent calls to this method.
 
See Also
CreateSales
SeekBySysNum
GetDBStatus
GetNext
 
Samples
 
C++
 
// Navigate through the file in reverse order
pSales->SeekBySysNum (smLast, 0);
while (pSales->GetDBStatus () == 0)
{
    // Process record data

    pSales->GetPrevious ();
}

C#
 
// Navigate through the file in reverse order
oSales.SeekBySysNum (eSeekMode.smLast, 0);
while (oSales.GetDBStatus () == 0)
{
    // Process record data

    oSales.GetPrevious ();
}

VBS
 
' Navigate through the file in reverse order
Call oSales.SeekBySysNum(smLast, 0)
While oSales.GetDBStatus() = 0
    ' Process record data

    Call oSales.GetPrevious()
Wend

VB.NET
 
' Navigate through the file in reverse order
oSales.SeekBySysNum(eSeekMode.smLast, 0)
While oSales.GetDBStatus() = 0
    ' Process record data

    oSales.GetPrevious()
End While