PInvce::View (Interface: PInvce)
 
Views a Purchase Invoice.
 
void View ()
 
Remarks
This method can only be used if user interface is allowed (parameter bWithUserInterface is set to true in the Logon method), because a record can only be viewed using the dialog.
 
See Also
CreatePInvce
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pPInvce->SeekBySysNum (smLast, 0))
    pPInvce->View ();

C#
 
// View the last inserted record
if (oPInvce.SeekBySysNum (eSeekMode.smLast, 0))
    oPInvce.View ();

VBS
 
' View the last inserted record
If oPInvce.SeekBySysNum(smLast, 0) Then
    Call oPInvce.View()
End If

VB.NET
 
' View the last inserted record
If oPInvce.SeekBySysNum(eSeekMode.smLast, 0) Then
    oPInvce.View()
End If