|
Inserts a Supplier card. |
|
|
void Insert ( enum eInsertMode eInsertMode ) |
|
|
Parameters | eInsertMode | [in] A value of the 'eInsertMode' enumeration. |
|
See Also |
|
|
|
Samples |
|
|
C++ |
|
// Insert a new record using the dialog, initially filled with the default values
pSuppl->Init ();
pSuppl->Insert (imDialog);
|
|
|
C# |
|
// Insert a new record using the dialog, initially filled with the default values
oSuppl.Init ();
oSuppl.Insert (eInsertMode.imDialog);
|
|
|
VBS |
|
' Insert a new record using the dialog, initially filled with the default values
Call oSuppl.Init()
Call oSuppl.Insert(imDialog)
|
|
|
VB.NET |
|
' Insert a new record using the dialog, initially filled with the default values
oSuppl.Init()
oSuppl.Insert(eInsertMode.imDialog)
|
|