PerPay::View (Interface: PerPay)
 
Views a Periodical Payment card.
 
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
CreatePerPay
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pPerPay->SeekBySysNum (smLast, 0))
    pPerPay->View ();

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

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

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