FBook::View (Interface: FBook)
 
Views a Financial Book 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
CreateFBook
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pFBook->SeekBySysNum (smLast, 0))
    pFBook->View ();

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

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

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