nca_lov_select_item
| List Object Functions |
Selects an item from a list of values.
int nca_lov_select_item( LPCSTR name,LPCSTR item );
| name | The logical name of the window containing the list of values. |
| item | An item from a list of values. |
The nca_lov_select_item function selects an item from a list of values.
Return Values
Parameterization
The following variable can be parameterized using standard parameterization: name
Example
In the following example, the nca_lov_select_item function selects Addition from the list of values in the Journals window.
nca_edit_click("GLXJEENT.FOLDER_QF.BATCH_NAME.0");
nca_button_press("GLXJEENT.TOOLBAR.LIST.0");
nca_lov_find_value("Journals", "");
nca_lov_retrieve_items("Journals",1,8);
nca_lov_select_item("Journals", "Addition");

