• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    Autodesk Inventor Customization

    Reply
    New Member
    Posts: 1
    Registered: ‎01-07-2013

    conversion of 32bit addin to 64bit

    100 Views, 2 Replies
    01-08-2013 04:46 AM

    I have also been tasked with upgrading an Inventor Addin created for a 32bit XP to use for 64bit Windows 7 and Inventor 2013.  I have converted the programs for VS2010 and the compiles Setup works fine for 32 bit, but not for the 64bit machines.  The present Installer class in the program does use Registration Services which register the dll incorrectly for the 64 bit machines (this I have gleened from other posts), but I still do not understand how to modify the code to create a Setup which will use the 64bit framework regasm. 

     

    The Install Sub (Uninstall looks sim):

     

      PublicOverridesSub Install(ByVal stateSaver As System.Collections.IDictionary)

             

          MyBase.Install(stateSaver)

           

          Dim regSrv AsRegistrationServices = NewRegistrationServices()

         

             regSrv.RegisterAssembly(MyBase.GetType().Assembly, AssemblyRegistrationFlags.SetCodeBase)

     

       EndSub

     

    I have also attempted removing this install/uninstall code and registering the dll manually using regasm with little luck.

     

    Any help or direction would be appreciated.  THANK YOU

    Please use plain text.
    Valued Contributor
    Posts: 99
    Registered: ‎10-20-2001

    Re: conversion of 32bit addin to 64bit

    01-08-2013 05:30 AM in reply to: RWaln

    Inventor 2013 can use registry based installation for 64 bit add-ins but you are far better off using the non-registry based installation. There are lots of posts and articles on how to convert a registry based install to the new style. A search here or on the web should get you pointed in the right direction.

     

     

    Please use plain text.
    ADN Support Specialist
    xiaodong.liang
    Posts: 861
    Registered: ‎06-12-2011

    Re: conversion of 32bit addin to 64bit

    01-13-2013 06:47 PM in reply to: nmunro

    Hi,

     

    firstly, I'd recommend this AU class in which my colleauge Philippe delivered on the best pratise on Inventor add-in. I think the content answers your question.

     

    http://au.autodesk.com/?nd=class&session_id=9028

     

    In addition, I agree nmunro. The registry-free add-in would be more helpful to you.  In API help reference there is one topic 

    [Registry-Free Add-In] which you could get started with.

     



    Xiaodong Liang
    Developer Technical Services
    Autodesk Developer Network

    Please use plain text.