Message 1 of 12
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have an Ilogic rule that selects the right drawing view based on the drawing file name which is also the iassembly member name, and it works for iparts and iassemblies but for iassemblies I also need to select the right member for the "parts list" too. I am have some difficulty doing this, here is the rule that selects the drawing view.
Dim oView As DrawingView oView = ActiveSheet.View("VIEW1").View docname=ThisDoc.FileName(False) 'without extension oView.ActiveMemberName = docname 'MessageBox.Show(docname, "Title")
Solved! Go to Solution.