Hello everyone,
Can you help me with a solution for my problem.
I would like that when the custom property "Tappen" is "yes" the text Tappen appears in my docable window. Example 1
If "No" is stated
Tappen then no text appears in the docable window. Example 2.
If this "Yes / No" parameter will exist in all documents you should add it to your template. Create a "True/False" User Parameter.
Once that is done, you can then go into your form and select the "Tappen" property and set the "Enabling Parameter" to your Yes / No parameter.
If you would like to use iLogic to control when this "Tappen" parameter is true and false I can help with that too, but you'd need to describe how you would like it to work.
Hi all,
Happy new year
I have here an example of the .ipt I want to use
I am a beginner in programming
Yes I found what went wrong thanks C_Haines_ENG
gr Jos
Your code is not prepared for this property, but you need to add code similar to this sample
'Assign x_TappenProp
Dim x_TappenProp = x_PartDoc.PropertySets.Item("Inventor User Defined Properties").Item("Tappen")
If x_TappenProp.Value Then
Me.lblTappen.Text = "Tappen"
Else
Me.lblTappen.Text = ""
End If
But here are few notes to your code:
Can't find what you're looking for? Ask the community or share your knowledge.