EdoWork::View (Interface: EdoWork)
 
Views an electronic document in the work file.
 
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
CreateEdoWork
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pEdoWork->SeekBySysNum (smLast, 0))
    pEdoWork->View ();

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

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

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