ankurpraja Posted August 18, 2017 Posted August 18, 2017 Hello, I am working on an iLogic form where i can define the size of a gusset plate as shown in the picture. I am stuck at one point where i want a combo box in ilogic form with 3 options (chamfer, fillet and hole). And that will define which feature is active and make other 2 features suppress. Making a combo box is not a big deal but I am not able to find an ilogic rule where i can say that 'if feature A is active then feature B and C are suppressed. Any solution for above? Thanks in Advance Quote
BIGAL Posted August 19, 2017 Posted August 19, 2017 Whilst this is inventor in Autocad DCL I would use 3 radio buttons these can be made that as you select another the other button is turned off. You should be able to fit 3 easy. Quote
twdant Posted October 16, 2017 Posted October 16, 2017 Something like this should work: 'suppress all 3 features at first Feature("Feature A").IsActive = False Feature("Feature B").IsActive = False Feature("Feature C").IsActive = False 'activate relevant feature Select oFeature Case A Feature("Feature A").IsActive = True Case B Feature("Feature B").IsActive = True Case C Feature("Feature C").IsActive = True End Select Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.