PayWork::SeekByTicking (Interface: PayWork)
 
Seeks a Payment card in the work file that ticks an entry.
 
VARIANT_BOOL SeekByTicking (
    enum eSeekMode eSeekMode,
    LONG lTickSysNum
)
 
Key information
This method uses key number 7 (See SwapKey).
This key allows duplicates.
This is a null key, only the records where pTickSysNum is not 0 are in the index.
 
Key segment information
Segment NameTypeOrderCollation
pTickSysNumLONGAscending-
 
Parameters
eSeekMode
[in] A value of the 'eSeekMode' enumeration.
lTickSysNum
[in] The system number of the entry that is ticked by the payment you want to seek.
 
Return value
True if the record with the given properties was found, otherwise false.
 
See Also
CreatePayWork
 
Samples
 
C++
 
// Seek the payment in the working file that thicks the entry with system number 215
if (pPayWork->SeekByTicking (smEqual, 215))
{
    // Process record data
}

C#
 
// Seek the payment in the working file that thicks the entry with system number 215
if (oPayWork.SeekByTicking (eSeekMode.smEqual, 215))
{
    // Process record data
}

VBS
 
' Seek the payment in the working file that thicks the entry with system number 215
If oPayWork.SeekByTicking(smEqual, 215) Then
    ' Process record data
End If

VB.NET
 
' Seek the payment in the working file that thicks the entry with system number 215
If oPayWork.SeekByTicking(eSeekMode.smEqual, 215) Then
    ' Process record data
End If