- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi there,
I have created an overrule in AutoCAD with a regapp name of "OVERRULE_1". Added it to a polyline and away we go. Everything is fine. I have then created another overrule with a new appname " OVERRULE_2" and this one won't work unless I start the session again. I have been able to separate them out adding extra value in the xdata. But this essentially means only one app name for all my overrules and separated through x-data. Is this the correct way?
When it comes to start up I tried to start them up the same way but it only ever chooses the first one and loads that Ok.
If rat.Has("OVERRULE_1") = False Then
If Draw.Overruling = False Then
ObjectOverrule.AddOverrule(RXClass.GetClass(GetType(Line)), Draw.theOverrule, True)
End If
DrawOverrule.Overruling = True
End If
If rat.Has("OVERRULE_2") = False Then
If Draw.Overruling = False Then
ObjectOverrule.AddOverrule(RXClass.GetClass(GetType(Line)), Draw.theOverrule, True)
End If
DrawOverrule.Overruling = True
End If
Ta,
Maritn.
Solved! Go to Solution.