How to close an Instance of an inventor using inventor api?

How to close an Instance of an inventor using inventor api?

Anonymous
Not applicable
1,246 Views
1 Reply
Message 1 of 2

How to close an Instance of an inventor using inventor api?

Anonymous
Not applicable

I cal an instance of an inventor using inventor api ,vb.net code. here is my code

 

inventorApp = CreateObject("Inventor.Application", "")

inventorApp.Visible = True

 

 

My doubt is and how can I close this inventor instance.I tried 

 

inventorApp.Visible = False

 

but not working. Anyone have any idea??

0 Likes
Accepted solutions (1)
1,247 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable
Accepted solution
inventorApp.Quit
set inventorApp = Nothing

 You can close the inventor instance by using the above code

0 Likes