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

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

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

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