nca_combo_set_item
| Combo Box Object Functions |
Sets a new item in a combo box.
int nca_combo_set_item( LPCSTR name, LPCSTR item_name );
| name | The logical name of the combo box. |
| item_name | The item to set in the combo box. |
The nca_combo_set_item function writes item_name into the combo box name.
Return Values
Parameterization
All arguments of this function may be parameterized using standard parameterization.
Example
In the following example, the nca_combo_set_itemfunction writes a new entry "Pro Forma" into the Invoices combo box.
nca_combo_set_item("INVOICES_EDI_FACTOR_QUALIFIER_0",
"Pro Forma");

