AnAcc::View (Interface: AnAcc)
 
Views an Analytical 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
CreateAnAcc
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pAnAcc->SeekBySysNum (smLast, 0))
    pAnAcc->View ();

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

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

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