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

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

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

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