Suppl::Update (Interface: Suppl)
 
Updates a Supplier 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
CreateSuppl
SeekBySysNum
 
Samples
 
C++
 
// Update the last inserted record using the dialog
if (pSuppl->SeekBySysNum (smLast, 0))
    pSuppl->Update (umDialog);

C#
 
// Update the last inserted record using the dialog
if (oSuppl.SeekBySysNum (eSeekMode.smLast, 0))
    oSuppl.Update (eUpdateMode.umDialog);

VBS
 
' Update the last inserted record using the dialog
If oSuppl.SeekBySysNum(smLast, 0) Then
    Call oSuppl.Update(umDialog)
End If

VB.NET
 
' Update the last inserted record using the dialog
If oSuppl.SeekBySysNum(eSeekMode.smLast, 0) Then
    oSuppl.Update(eUpdateMode.umDialog)
End If