Venice
Balan::View
 
Views the Monthly Balances.
 
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
CreateBalan
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pBalan->SeekBySysNum (smLast, 0))
    pBalan->View ();

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

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

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