SOffer::View (Interface: SOffer)
 
Views a Sales Offer.
 
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
CreateSOffer
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pSOffer->SeekBySysNum (smLast, 0))
    pSOffer->View ();

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

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

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