nca_list_activate_item
| List Object Functions |
Activates an item in a list.
int nca_list_activate_item( LPCSTR list, LPCSTR item );
| list | The logical name of the list. |
| item | The item to activate within the list. |
The nca_list_activate_item function double-clicks an item in a list. The item is indicated by its logical name.
Return Values
Parameterization
The following variable can be parameterized using standard parameterization: item
Example
In the following example, the nca_list_activate_item function activates an item in the navigator list.
lr_think_time(7);
nca_list_activate_item("NAVIGATOR_LIST_0", " Purchase Order Summary");
lr_think_time(22);
nca_set_window("Find Purchase Orders (Vision Operations)");
nca_button_press("FIND_FIND_0");

