| |
| Seeks a Sales Invoice by its system number. |
| |
 |
VARIANT_BOOL SeekBySysNum ( enum eSeekMode eSeekMode, LONG lSysNum ) |
|
| |
| 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. | | | | Remarks |
 | This method seeks the file using the key 'SIH_SYS' (key number 0). |
|
| |
| See Also |
 |
CreateSInvce |
 | The UNIT4 C-Logic Description File 'Isi_h.cld' in the Cld-directory in the system path of your Venice installation. |
|
|
| |
| Samples |
| |
 |
C++ |
| |
// Seek the record with system number = 56
if (pSInvce->SeekBySysNum (smEqual, 56))
{
// Process record data
}
|
|
 |
C# |
| |
// Seek the record with system number = 56
if (oSInvce.SeekBySysNum (eSeekMode.smEqual, 56))
{
// Process record data
}
|
|
 |
VBS |
| |
' Seek the record with system number = 56
If oSInvce.SeekBySysNum(smEqual, 56) Then
' Process record data
End If
|
|
 |
VB.NET |
| |
' Seek the record with system number = 56
If oSInvce.SeekBySysNum(eSeekMode.smEqual, 56) Then
' Process record data
End If
|
|