| |
| Inserts an Accounting Proposal. |
| |
 |
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
pAccProp->Init ();
pAccProp->Insert (imDialog);
|
|
 |
C# |
| |
// Insert a new record using the dialog, initially filled with the default values
oAccProp.Init ();
oAccProp.Insert (eInsertMode.imDialog);
|
|
 |
VBS |
| |
' Insert a new record using the dialog, initially filled with the default values
Call oAccProp.Init()
Call oAccProp.Insert(imDialog)
|
|
 |
VB.NET |
| |
' Insert a new record using the dialog, initially filled with the default values
oAccProp.Init()
oAccProp.Insert(eInsertMode.imDialog)
|
|