Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
Owner2229
in reply to: Anonymous

Hi, aren't you trying to create new part using your template? For it works the code below:

 

Dim g_App As Inventor.InventorServer = ThisApplication
Dim oNewPart As AssemblyDocument
oNewPart = g_App.Documents.Add(DocumentTypeEnum.kPartDocumentObject, , True)

Else use the folowing: (False to open it invisibly)

 

oApp = Marshal.GetActiveObject("Inventor.Application")
oDocs = oApp.Documents
oDoc = oDocs.Open("C:\Template.ipt", False)
Consider using "Accept as Solution" / "Kudos" if you find this helpful.
- - - - - - - - - - - - - - -
Regards,
Mike

"Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - John F. Woods