|
Seeks a Purchase Delivery by its system number. |
|
![](Trans1P.gif) |
VARIANT_BOOL SeekBySysNum ( enum eSeekMode eSeekMode, LONG lSysNum ) |
|
|
Key information | ![](Box12412.gif) | This method uses key number 0 (See SwapKey). | ![](Box12412.gif) | This is a unique key. |
| | Key segment information | | | Parameters | eSeekMode | [in] A value of the 'eSeekMode' enumeration. | lSysNum | [in] The system number of the record you want to seek. | | Return value |
True if the record with the given properties was found, otherwise false. |
|
See Also |
|
|
|
Samples |
|
![](Box12412.gif) |
C++ |
|
// Seek the record with system number = 56
if (pPDeliv->SeekBySysNum (smEqual, 56))
{
// Process record data
}
|
|
![](Box12412.gif) |
C# |
|
// Seek the record with system number = 56
if (oPDeliv.SeekBySysNum (eSeekMode.smEqual, 56))
{
// Process record data
}
|
|
![](Box12412.gif) |
VBS |
|
' Seek the record with system number = 56
If oPDeliv.SeekBySysNum(smEqual, 56) Then
' Process record data
End If
|
|
![](Box12412.gif) |
VB.NET |
|
' Seek the record with system number = 56
If oPDeliv.SeekBySysNum(eSeekMode.smEqual, 56) Then
' Process record data
End If
|
|