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

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

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

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