AnaProp::Update (Interface: AnaProp)
 
Updates an Analytical Accounting Proposal.
 
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
CreateAnaProp
SeekBySysNum
 
Samples
 
C++
 
// Update the last inserted record using the dialog
if (pAnaProp->SeekBySysNum (smLast, 0))
    pAnaProp->Update (umDialog);

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

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

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