09-06-2023
05:13 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
09-06-2023
05:13 PM
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
Or if this helped you, please, click (like)
Regards
Alan