Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
A.Acheson
in reply to: OliverXL5YM

Can you remove it manually? Edit the occurrence name in the assembly. It will take you longer to prepare a code to replace the occurrence name but if you really need to you can use the String.Replace method to remove the prefix number and "-" Character. Replace it with a blank string ""

 

Dim TestString As String = Occ.Name
   
Dim aString As String = Replace(TestString, "12345-", "") 
 Occ.Name = aString
If this solved a problem, please click (accept) as solution.‌‌‌‌
Or if this helped you, please, click (like)‌‌
Regards
Alan