Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
Anonymous
in reply to: Anonymous

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 ----