11-21-2022
08:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
11-21-2022
08:04 AM
I guess to help avoid this error, you could just replace this:
If Not oStyle.UpToDate Then oStyle.UpdateFromGlobal
...with this:
If Not oStyle.UpToDate Then
Try : oStyle.UpdateFromGlobal : Catch : End Try
End If
It doesn't explain why the error is happening, but helps you keep moving forward.
Wesley Crihfield
(Not an Autodesk Employee)