Venice
DdMan::SeekByName
 
Seeks a Direct Debit Mandate card by its name.
 
VARIANT_BOOL SeekByName (
    enum eSeekMode eSeekMode,
    BSTR bsName
)
 
Key information
This method uses key number 2 (See SwapKey).
This key allows duplicates.
 
Key segment information
Segment NameTypeOrderCollation
pNameBSTRAscendingCase insensitive
 
Parameters
eSeekMode
[in] A value of the 'eSeekMode' enumeration.
bsName
[in] The name of the mandate you want to seek.
 
See Also
CreateDdMan
 
Samples
 
C++
 
// Seek the mandate with name = "Janssens"
if (pDdMan->SeekByName (smEqual, "Janssens"))
    // Process record data

C#
 
// Seek the mandate with name = "Janssens"
if (oDdMan.SeekByName (eSeekMode.smEqual, "Janssens"))
    // Process record data

VBS
 
' Seek the mandate with name = "Janssens"
If oDdMan.SeekByName (smEqual, "Janssens") Then
    ' Process record data
End If

VB.NET
 
' Seek the mandate with name = "Janssens"
If oDdMan.SeekByName (eSeekMode.smEqual, "Janssens") Then
    ' Process record data
End If