Question
Pro Program EXECUTE same part in an assembly with different parameters
Is it possible to use an Execute statements to drive different parameters to the same model in an assembly?
I want to be able to do something like this where I can pass different values to the parts without having to duplicate the part.
EXECUTE PART TEST1(5)
WIDTH = WIDTH
HEIGHT = HEIGHT
END EXECUTE
EXECUTE PART TEST1(6)
WIDTH = WIDTH + 5
HEIGHT = HEIGHT + 5
END EXECUTE


