Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello Experts,
is possible to launch a second Inventor from an external rule?
I want to start a second inventor instance to create shrinkwraps of the active document (assembly)
I think the following code is works in other Applications but not in an external rule.
Dim _invApp1 As Inventor.Application Dim _invApp2 As Inventor.Application Dim invAppType As Type = GetTypeFromProgID("Inventor.Application") _invApp1 = CreateInstance(invAppType) _invApp2 = CreateInstance(invAppType) _invApp1.Visible = True _invApp2.Visible = True
How can i run it in ilogic?
Solved! Go to Solution.