|
Seeks a Sales Invoice by its Intrastat status. |
|
|
VARIANT_BOOL SeekByItrStatus ( enum eSeekMode eSeekMode ) |
|
|
Key information | | This method uses key number 8 (See SwapKey). | | This key allows duplicates. | | This is a null key, only the records where pIntrastat is true are in the index. |
| | Key segment information | | | Parameters | eSeekMode | [in] A value of the 'eSeekMode' enumeration. | | Return value |
True if the record with the given properties was found, otherwise false. |
|
See Also |
|
|
|
Samples |
|
|
C++ |
|
// Process all records that still need Intrastat data
pSInvce->SeekByItrStatus (smFirst);
while (pSInvce->GetDBStatus () == 0)
{
// Process record data
pSInvce->GetNext ();
}
|
|
|
C# |
|
// Process all records that still need Intrastat data
oSInvce.SeekByItrStatus (eSeekMode.smFirst);
while (oSInvce.GetDBStatus () == 0)
{
// Process record data
oSInvce.GetNext ();
}
|
|
|
VBS |
|
' Process all records that still need Intrastat data
Call oSInvce.SeekByItrStatus(smFirst)
While oSInvce.GetDBStatus() = 0
' Process record data
Call oSInvce.GetNext()
Wend
|
|
|
VB.NET |
|
' Process all records that still need Intrastat data
oSInvce.SeekByItrStatus(eSeekMode.smFirst)
While oSInvce.GetDBStatus() = 0
' Process record data
oSInvce.GetNext()
End While
|
|