So I am working on a project where I call the export window in Inventor via the Inventor API like so :
Dim Commander As CommandManager
Commander = ThisApplication.CommandManager
Dim Controller As ControlDefinition
Controller = Commander.ControlDefinitions.Item("AppFileExportCADFormatCmd")
Call Controller.Execute()
This code works just fine for opening the "Save As" window in Inventor but my VB program will hang on the line
Call Controller.Execute()
Until I close the "Save As" window.
My aim is to open up the window and then automatically press the Save button, but the only thing stopping me is the "freeze" at the Call line.