Create a form that can modify paramaters in an other part

Create a form that can modify paramaters in an other part

jgomis.ext
Enthusiast Enthusiast
256 Views
3 Replies
Message 1 of 4

Create a form that can modify paramaters in an other part

jgomis.ext
Enthusiast
Enthusiast

Hi everyone !

I have create a "skeleton" part to build 2 parts that I have in an assembly.

In my skeleton part I only have sketchs and parameters that I  link in my two part to make them. And for finish I have made an assembly of these two parts.

I would like to create a form in my assembly to modify the parameters of my "skeleton" part and like that all my parts will be update in the same time.

But I don't know how to do it because my parameters are linked and I cannot modify them.

If someone could help me it will be verry verry cool 🙂

 

Thanks

0 Likes
Accepted solutions (1)
257 Views
3 Replies
Replies (3)
Message 2 of 4

bradeneuropeArthur
Mentor
Mentor
can you Pack and Go the files in question?

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

0 Likes
Message 3 of 4

JMGunnar
Collaborator
Collaborator

options 1  

create forms in Assembly then update skeleton from Assembly 

 

options 2 

 

call forms from Assembly  with rule in skeleton "ShowForms"

 

see assembly

 

 

 

 

0 Likes
Message 4 of 4

Luis_Pacheco_3D
Advocate
Advocate
Accepted solution

Try this:

 

1. Create a rule in your assembly with this configuration.

 

Parameter("Skeleton_A:1", "Width") = Width  
'Parameter skeleton = Form data


' Parameter Part1 = Parameter Skeleton
Parameter("Part1:1", "Width") = Parameter("Skeleton_A:1", "Width")
' Parameter Part2 = Parameter Skeleton
Parameter("Part2:1", "Width") = Parameter("Skeleton_A:1", "Width")
 
0 Likes