|
Updates a Purchase Invoice. |
|
|
void Update ( enum eUpdateMode eUpdateMode ) |
|
|
Parameters | eUpdateMode | [in] A value of the 'eUpdateMode' enumeration. | | Remarks |
| A document can always be modified using the dialog (eInsertMode = imDialog or eInsertMode = imDialogFromData). The use of other modes is possible, but the changes will be limited to the data of the header. |
| 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 (pPInvce->SeekBySysNum (smLast, 0))
pPInvce->Update (umDialog);
|
|
|
C# |
|
// Update the last inserted record using the dialog
if (oPInvce.SeekBySysNum (eSeekMode.smLast, 0))
oPInvce.Update (eUpdateMode.umDialog);
|
|
|
VBS |
|
' Update the last inserted record using the dialog
If oPInvce.SeekBySysNum(smLast, 0) Then
Call oPInvce.Update(umDialog)
End If
|
|
|
VB.NET |
|
' Update the last inserted record using the dialog
If oPInvce.SeekBySysNum(eSeekMode.smLast, 0) Then
oPInvce.Update(eUpdateMode.umDialog)
End If
|
|