Warehouse::View (Interface: Warehouse)
 
Views a 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
CreateWarehouse
SeekBySysNum
 
Samples
 
C++
 
// View the last inserted record
if (pWarehouse->SeekBySysNum (smLast, 0))
    pWarehouse->View ();

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

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

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