Message 1 of 2
iLogic created folders disappearing from model tree
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I use this iLogic rule to create some model tree folders inside an assembly file :
Dim oDoc As Document = ThisApplication.ActiveDocument
Dim oPane As BrowserPane = oDoc.BrowserPanes.ActivePane
Dim oTopNode As BrowserNode = oPane.TopNode
Dim oFolder As BrowserFolder
Dim MyArrayList As New ArrayList
MyArrayList.Add("Boulonnerie")
MyArrayList.Add("Quincaillerie - Composantes achetées")
MyArrayList.Add("Plans, axes et Points")
For Each oVal In MyArrayList
Try
oFolder = oTopNode.BrowserFolders.Item(oVal)
Catch
oFolder = oPane.AddBrowserFolder(oVal)
End Try
Next
However whenever I drag/drop a part to the folder it justs disappear...
Any idea what could be going on?