| |
| Inserts a Direct Debit Mandate 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
pDdMan->Init ();
pDdMan->Insert (imDialog);
|
|
 |
C# |
| |
// Insert a new record using the dialog, initially filled with the default values
oDdMan.Init ();
oDdMan.Insert (eInsertMode.imDialog);
|
|
 |
VBS |
| |
' Insert a new record using the dialog, initially filled with the default values
Call oDdMan.Init()
Call oDdMan.Insert(imDialog)
|
|
 |
VB.NET |
| |
' Insert a new record using the dialog, initially filled with the default values
oDdMan.Init()
oDdMan.Insert(eInsertMode.imDialog)
|
|