Hi, for a while I have had this macro that worked very well, stop using it for the work that requires go for each PC and accommodate all the custom tools, I get used to using external rules.
In red is the name of the external rule that you must put in quotation marks,
You must specify a macro name, I use for example RuleA and Rule B, you can create many macros and then add the macro to a custom button from customize user command
Public Sub RuleA() ' <--- This is what you would tie to a button in a toolbar.
RuniLogic "RulenameA"
End Sub
Public Sub RuleB() '<--- This is what you would tie to a button in a toolbar.
RuniLogic "RulenameB"
End Sub
Public Sub RuniLogic(ByVal RuleName As String)
Dim iLogicAuto As Object
Dim oDoc As Document
Set oDoc = ThisApplication.ActiveDocument
If oDoc Is Nothing Then
MsgBox "Please Open Document"
Exit Sub
End If
Set iLogicAuto = GetiLogicAddin(ThisApplication)
If (iLogicAuto Is Nothing) Then Exit Sub
iLogicAuto.RunExternalRule oDoc, RuleName
End Sub
Function GetiLogicAddin(oApplication As Inventor.Application) As Object
Set addIns = oApplication.ApplicationAddIns
'Find the add-in you are looking for
Dim addIn As ApplicationAddIn
On Error GoTo NotFound
Set addIn = oApplication.ApplicationAddIns.ItemById("{3bdd8d79-2179-4b11-8a5a-257b1c0263ac}")
If (addIn Is Nothing) Then Exit Function
addIn.Activate
Set GetiLogicAddin = addIn.Automation
Exit Function
NotFound:
End Function
I hope it helps to solve your problem, greetings
Please accept as solution and give likes if applicable.
I am attaching my Upwork profile for specific queries.
Sergio Daniel Suarez
Mechanical Designer
| Upwork Profile | LinkedIn