Venice
Accnt::View
 
Views an Account 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
CreateAccnt
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pAccnt->SeekBySysNum (smLast, 0))
    pAccnt->View ();

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

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

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