01-21-2022
06:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
01-21-2022
06:22 AM
Try replacing this line:
If IsNothing (oTypes_Selected) Then Exit While
with this one:
If String.IsNullOrEmpty(oTypes_Selected) Then Exit While
or this one:
If oTypes_Selected = "" Then Exit While
Also, try replacing this line:
iProperties.Value("Custom", "NyfanRooting") = oText
with this one:
iProperties.Value("Custom", "NyfanRooting") = iProperties.Value("Custom", "NyfanRooting") & ", " & oText
If that last line doesn't work, try getting the existing value of that iProperty to a variable first, then use that variable in stead of the second iProperties.Value() call in that line of code. (I assume you want each selected text to follow the one before, with a comma between them, similar to what your image showed.)
Wesley Crihfield
(Not an Autodesk Employee)