|  | 
			
				| Updates a Direct Debit Mandate card. | 
			
				|  | 
			
				| 
						
							|  | void Update ( enum eUpdateMode eUpdateMode
 )
 |  | 
			
				|  | 
			
				| 
						| Parameters |  | eUpdateMode |  | [in] A value of the 'eUpdateMode' enumeration. |  |  |  | Remarks |  | 
		
	|  | Updating a record destroys the object positioning that was previously established via a SeekBy-method and the GetNext/GetPrevious-methods. The results of calling GetNext or GetPrevious after an update are not guaranteed. |  |  
							|  |  
							| See Also |  
							|  |  | 
			|  | 
			| Samples | 
			|  | 
			
				| 
						
							|  | C++ |  
							|  | // Update the last inserted record using the dialog
 if (pDdMan->SeekBySysNum (smLast, 0))
 pDdMan->Update (umDialog);
 
 
 |  | 
			
				| 
						
							|  | C# |  
							|  | // Update the last inserted record using the dialog
 if (oDdMan.SeekBySysNum (eSeekMode.smLast, 0))
 oDdMan.Update (eUpdateMode.umDialog);
 
 
 |  | 
			
				| 
						
							|  | VBS |  
							|  | ' Update the last inserted record using the dialog
 If oDdMan.SeekBySysNum(smLast, 0) Then
 Call oDdMan.Update(umDialog)
 End If
 
 
 |  | 
			
				| 
						
							|  | VB.NET |  
							|  | ' Update the last inserted record using the dialog
 If oDdMan.SeekBySysNum(eSeekMode.smLast, 0) Then
 oDdMan.Update(eUpdateMode.umDialog)
 End If
 
 
 |  |