SDeliv::View (Interface: SDeliv)
 
Views a Sales Delivery.
 
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
CreateSDeliv
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pSDeliv->SeekBySysNum (smLast, 0))
    pSDeliv->View ();

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

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

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