ArtLoc::Update (Interface: ArtLoc)
 
Updates an Article Location 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
CreateArtLoc
SeekBySysNum
 
Samples
 
C++
 
// Update the last inserted record using the dialog
if (pArtLoc->SeekBySysNum (smLast, 0))
    pArtLoc->Update (umDialog);

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

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

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