Sndry::View (Interface: Sndry)
 
Views a Sundry Document.
 
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
CreateSndry
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pSndry->SeekBySysNum (smLast, 0))
    pSndry->View ();

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

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

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