Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm trying to find a way to have the model reference used in my .DWG rule be updated automatically when the model name changes. I use a "template" file with specific rules for when a view is turned on or off based on the solid model parameter. When I change the name of the model (save as), the parameter still references the "template" file name as shown. Is there a way to reference this parameter without having to manually update the code?
If Parameter("F-F Template.ipt.parameter_name") = Parameter("F-F Template.ipt.other_parameter_name") Then
ActiveSheet.View("VIEW4").View.Suppressed = True
Else
ActiveSheet.View("VIEW4").View.Suppressed = False
End If
Solved! Go to Solution.