Cntry::SeekByDutNam (Interface: Cntry)
 
Seeks a Country card by its Dutch name.
 
VARIANT_BOOL SeekByDutNam (
    enum eSeekMode eSeekMode,
    BSTR bsNameNld
)
 
Key information
This method uses key number 5 (See SwapKey).
This key allows duplicates.
 
Key segment information
Segment NameTypeOrderCollation
pNameNldBSTRAscendingCase insensitive
 
Parameters
eSeekMode
[in] A value of the 'eSeekMode' enumeration.
bsNameNld
[in] The Dutch name of the country card you want to seek.
 
Return value
True if the record with the given properties was found, otherwise false.
 
See Also
CreateCntry
 
Samples
 
C++
 
// Seek the country with Dutch name 'Zwitserland'
if (pCntry->SeekByDutNam (smEqual, "Zwitserland"))
{
    // Process record data
}

C#
 
// Seek the country with Dutch name 'Zwitserland'
if (oCntry.SeekByDutNam (eSeekMode.smEqual, "Zwitserland"))
{
    // Process record data
}

VBS
 
' Seek the country with Dutch name 'Zwitserland'
If oCntry.SeekByDutNam(smEqual, "Zwitserland") Then
    ' Process record data
End If

VB.NET
 
' Seek the country with Dutch name 'Zwitserland'
If oCntry.SeekByDutNam(eSeekMode.smEqual, "Zwitserland") Then
    ' Process record data
End If