Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello everyone,
I am dealing with large assemblies and i want to create a better overview of the structure browser.
I want to create a ilogic that checks if a "purchased" folder is created, and if not -> create it. After i want it to put all my purchased files into this folder. I have been searching for a iLogic but couldn't find it, i could only find a piece of ilogic to create a new folder. Not the check part and move purchased part.
I have now got a piece of iLogic code to create the purchased folder:
Dim oFolderName As String = "Purchased" Dim oDoc As Document = ThisDoc.Document Dim oPane As BrowserPane = oDoc.BrowserPanes.ActivePane Dim oFolder As BrowserFolder = Nothing Try oFolder = oPane.BrowserFolders(oFolderName) Catch oFolder = oPane.AddBrowserFolder(oFolderName, Nothing) End Try
Can somebody help me with this?
Kind regards,
Koen
Solved! Go to Solution.