Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have a rule that reminds people to update the material when they save the file:
materialName = ThisDoc.Document.ComponentDefinition.Material.Name If materialName = "Generic" Then Dim msg = String.Format("Please update material in {0}", ThisDoc.Document.DisplayName) MessageBox.Show(msg, "Generic Material") End If iLogicVb.UpdateWhenDone = True
I would like to have this rule not run when it is using tube and pipe and frame generator parts, that dont have a material. For example when it detects "route", or "skeleton" in the file name.
Solved! Go to Solution.