AnaProp::View (Interface: AnaProp)
 
Views an Analytical Accounting Proposal.
 
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
CreateAnaProp
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pAnaProp->SeekBySysNum (smLast, 0))
    pAnaProp->View ();

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

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

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