Venice
Custm::Insert
 
Inserts a Customer card.
 
void Insert (
    enum eInsertMode eInsertMode
)
 
Parameters
eInsertMode
[in] A value of the 'eInsertMode' enumeration.
 
See Also
CreateCustm
Init
 
Samples
 
C++
 
// Insert a new record using the dialog, initially filled with the default values
pCustm->Init ();
pCustm->Insert (imDialog);

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

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

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