Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
CGVJM6DF
497 Views, 8 Replies

Add-In missing from Add-In Manager

HI

 

I tray to do an Add-In in VS 2022 for Inventor 2024.2 "Following" this tutorial: https://www.youtube.com/watch?v=QROrJdg0NQ8

All it is good but whatever I do I can't see the Add-In in to the Add-In Manager...

I did it befor for Inventor 2022 following the same tutorial and it wase ok but now....

 

Can somebody help me?

Frederick_Law
in reply to: CGVJM6DF

Not gonna watch the video :winking_face_with_tongue:

 

Addin folder and file should be in %appdata%\Autodesk\ApplicationPlugins

It'll need the .dll and .addin files.

<Addin Type="Standard">
  <!--Created for Autodesk Inventor Version 21.0-->
  <ClassId>{addin class ID}</ClassId>
  <ClientId>{addin class ID}</ClientId>
  <DisplayName>AssemCount</DisplayName>
  <Description>AssemCount</Description>
  <Assembly>AssemCount.dll</Assembly>
  <LoadOnStartUp>1</LoadOnStartUp>
  <LoadAutomatically>1</LoadAutomatically>

  <!--LoadBehavior  0:Start with Inventor -->
  <!--LoadBehavior  1:Start with part -->
  <!--LoadBehavior  2:Start with assembly -->
  <!--LoadBehavior  3:Start with presentation -->
  <!--LoadBehavior  4:Start with drawing -->
  <!--LoadBehavior 10:On Demand -->

  <LoadBehavior>2</LoadBehavior>
  <UserUnloadable>1</UserUnloadable>
  <Hidden>0</Hidden>
  <SupportedSoftwareVersionGreaterThan>21.0</SupportedSoftwareVersionGreaterThan>
  <DataVersion>1</DataVersion>
  <UserInterfaceVersion>1</UserInterfaceVersion>
</Addin>
CGVJM6DF
in reply to: Frederick_Law

Tanks @Frederick_Law 

 

Nothing...:pensive_face:

Frederick_Law
in reply to: CGVJM6DF

What do you mean by "nothing"?

What did you check or try?

You can't find the folder?

You can't find the files?

JelteDeJong
in reply to: Frederick_Law

Sometime ago I wrote a tutorial about creating an addin. Maybe the part "Help: My addin won't load" is some help to you.

Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.

EESignature


Blog: hjalte.nl - github.com

CGVJM6DF
in reply to: JelteDeJong

HI @JelteDeJong 

 

I have try your example too, but nothing works! I can't see them in Add-In Manager

JelteDeJong
in reply to: CGVJM6DF

You should have created an *.addin file. And have saved it on 1 of the locations I wrote about. Can you share that file?

Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.

EESignature


Blog: hjalte.nl - github.com

CGVJM6DF
in reply to: JelteDeJong

Do you mean this file:

CGVJM6DF_0-1706175631701.png

Unfortunately I am not allowed to drag the file here....

This is what it is in this file.

CGVJM6DF_1-1706175761405.png

 

JelteDeJong
in reply to: CGVJM6DF

I'm not familiar with this way of viewing XML files. (I like to open them with notepad) Anyway, I see potential problems.

  • The dll name is surrounded by square brackets. They should not be there.
  • If I'm correct your <SupportedSoftwareVersionGreaterThan> is for Inventor 2023. I don't know which version you are working with but I would set it to 16 (Inventor 2015) for debugging purposes. Just to be sure that is not the problem.

Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.

EESignature


Blog: hjalte.nl - github.com