// Set 1 : multi selection
int asm_prt_sels;
ProSelection *prt_asm_sel_array;
status = ProSelect("prt_or_asm",-1, NULL, NULL, NULL, NULL, &prt_asm_sel_array, &asm_prt_sels); //set 1
ProSelection asm_prt_sels_copy;
status = ProSelectionCopy(prt_asm_sel_array[0], &asm_prt_sels_copy); //manual array number
// set 2 : single selection
ProSelection *asm_array;
int asm_sel;
status = ProSelect("prt_or_asm", 1, NULL, NULL, NULL, NULL, &asm_array, &asm_sel); // set 2
ProSelection asm_sel_copy;
status = ProSelectionCopy(asm_array[0], &asm_sel_copy);
************************************************************************************************************************************************
Hi all,
Initally I tried to access set 1 array below after set 2, which is not working. It works only when I put manal array number (prt_asm_sel_array[0]) with equivalant proselection copy, I can access successfully acess below to set 2.
But if user picks dynamic "n" number of set 1 selections , then how to access "n" number of equivalant proselection copy, below to set 2.
Thanks.