Hi @engineeringSEZWD
While that doesn't exist out of the box you can code that up relatively easily. These first three lines will just look for your visible documents. You would next apply a filter for just partdocuments.(not shown). If you want them in a list then add them to an inputlistbox help page here. It can get a relative functionality compared to your image. Of course its relatively crude now but adding in time and knowledge you can build up a utility fairly quickly. The dialogue box Hou show would need good knowledge in visual studio or vba form to create. But you can also do it using win forms and alot of patience.
Listing your visible documents in the ilogic logger.
For Each doc in ThisAppication.Documents.VisibleDocuments
Logger.Info(doc.FullFileName)
Next
And here is the listbox version to allow user selection.
Dim List as New List(Of String)
For Each doc in ThisAppication.Documents.VisibleDocuments
List.Add(doc.FullFileName)
Next
d0 = InputListBox("Prompt",List, defaultEntry, Title := "Dialog Title", ListPrompt := "List Prompt")
Messagebox.Show(d0)
And adding the parts is done in this sample here for a hard-coded path. Written in vba but it just needs to be adapted for ilogic.
If you want to go down that path and have questions just fire away.
If this solved a problem, please click (accept) as solution.
Or if this helped you, please, click (like)
Regards
Alan