ComAp::View (Interface: ComAp)
 
Views a Commercial Purchase Agreement.
 
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
CreateComAp
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pComAp->SeekBySysNum (smLast, 0))
    pComAp->View ();

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

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

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