ArtLoc::View (Interface: ArtLoc)
 
Views an Article Location 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
CreateArtLoc
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pArtLoc->SeekBySysNum (smLast, 0))
    pArtLoc->View ();

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

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

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