|  | 
			
				| Seeks a Country card by its Dutch name. | 
			
				|  | 
			
				| 
						
							|  | VARIANT_BOOL SeekByDutNam ( enum eSeekMode eSeekMode,
 BSTR bsNameNld
 )
 |  | 
			
				|  | 
			
				| 
						| Key information |  |  |  |  |  | Key segment information |  |  |  |  |  | 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 |  
							|  |  | 
			|  | 
			| 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
 
 
 |  |