0
How to select multiple items in custom list Description Select each item with “Control” key (Ctrl on keyboard). public function _list_select_multy(in list, in items) { auto rc, count, i, k; auto dvItem[]; count = split(items, dvItem, ","); if (count < 1) { return(E_GENERAL_ERROR); } rc = list_select_item(list, str_trim(dvItem[1])); if (rc != E_OK) { [...] ...

