ArtWrh::Insert (Interface: ArtWrh)
 
Inserts an Article Warehouse card.
 
void Insert (
    enum eInsertMode eInsertMode
)
 
Parameters
eInsertMode
[in] A value of the 'eInsertMode' enumeration.
 
See Also
CreateArtWrh
Init
 
Samples
 
C++
 
// Insert a new record using the dialog, initially filled with the default values
pArtWrh->Init ();
pArtWrh->Insert (imDialog);

C#
 
// Insert a new record using the dialog, initially filled with the default values
oArtWrh.Init ();
oArtWrh.Insert (eInsertMode.imDialog);

VBS
 
' Insert a new record using the dialog, initially filled with the default values
Call oArtWrh.Init()
Call oArtWrh.Insert(imDialog)

VB.NET
 
' Insert a new record using the dialog, initially filled with the default values
oArtWrh.Init()
oArtWrh.Insert(eInsertMode.imDialog)