ArtSrl::Insert (Interface: ArtSrl)
 
Inserts a Serial Number card.
 
void Insert (
    enum eInsertMode eInsertMode
)
 
Parameters
eInsertMode
[in] A value of the 'eInsertMode' enumeration.
 
See Also
CreateArtSrl
Init
 
Samples
 
C++
 
// Insert a new record using the dialog, initially filled with the default values
pArtSrl->Init ();
pArtSrl->Insert (imDialog);

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

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

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