ArtWrh::View (Interface: ArtWrh)
 
Views an Article Warehouse 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
CreateArtWrh
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pArtWrh->SeekBySysNum (smLast, 0))
    pArtWrh->View ();

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

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

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