Anonymous
in reply to:
Anonymous
02-25-2018
09:14 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
02-25-2018
09:14 PM
Hi Craig,
We use stock number to skip frame generator parts, but you could use any iproperty.
Our frame generator parts contain a stock number.
We also use the description iproperty so it skips the frame control sketch.
SyntaxEditor Code Snippet
'---start iLogic ---- 'check for skip it flag SN = iProperties.Value("Project", "Stock Number") Desc = iProperties.Value("Project", "Description") If IsNumeric(SN) = True Then Return ElseIf Desc = "Frame Control Sketch" Then Return Else """DO something here""" End If '---end iLogic ----