Skip to main content
Is there a better way to find a worklist item in a work list other than looping through all the items in a work list as the example code shows.

.Value = cboApprover.SelectedItem.Value; 
oWorkListItem.Finish();
}
}


Is there a getter using the serial number that might speed up the process?

Mike
Depending on whether or not you've got the worklist items serial number, you can directly call the OpenWorklistItem([SerialNumber]) method. Also have a look at the WorklistCriteria object.

Regards,
Ockert

Reply