Message 1 of 3
Activate designview with iLogic not working.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have the following code to change the design view in a PART document.
It is working in one part but not in another part.
The part where it is working it also behaves weirdd because it leaves the other design view also activated.
Check the pic attached.
Here is the code:
Dim odoc As PartDocument Dim ocompdef As ComponentDefinition odoc = ThisApplication.ActiveDocument ocompdef = odoc.ComponentDefinition ocompdef.RepresentationsManager.DesignViewRepresentations.Item("Bolted").Activate iLogicVb.UpdateWhenDone = True ThisApplication.ActiveView.Update()