Excel running into problems with 'tdxmsofficeaddin.class'?

gravanoc

Active Member
Joined
Oct 20, 2015
Messages
346
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
When I opened Excel just now, I received this error dialog:
1662372568783.png


It doesn't look familiar, and nothing in either Excel or COM Add-Ins seems to match. Doing a search for 'tdxmsofficeaddin.class' doesn't give anything valid.
Searching for just "tdx add-in.class" brought up this: TeamDynamix website. It's something used for MS Teams, which I have, but I don't recall installing this add-in, if that's what it is.

Anyone familiar with it?
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
What if you use code to list your add-ins?

VBA Code:
Sub ListAddins()
    Dim AI As AddIn

    For Each AI In AddIns
        Debug.Print "---"
        On Error Resume Next
        Debug.Print "Name : " & AI.Name               'print addin name in immediate window
        Debug.Print "Title: " & AI.Title
        Debug.Print "Author: " & AI.Author
        Debug.Print "Subject: " & AI.Subject
    Next AI
End Sub
 
Upvote 0
What if you use code to list your add-ins?

VBA Code:
Sub ListAddins()
    Dim AI As AddIn

    For Each AI In AddIns
        Debug.Print "---"
        On Error Resume Next
        Debug.Print "Name : " & AI.Name               'print addin name in immediate window
        Debug.Print "Title: " & AI.Title
        Debug.Print "Author: " & AI.Author
        Debug.Print "Subject: " & AI.Subject
    Next AI
End Sub
Thanks for your suggestion. I tried it, but it didn't come up in the results.
 
Upvote 0
Good idea.

VBA Code:
Sub ListAddins()
    Dim AI As AddIn
    
    Debug.Print vbCr & vbCr & "Add-Ins collection" & vbCr
    For Each AI In Application.AddIns
        Debug.Print "---"
        On Error Resume Next
        Debug.Print "Name : " & AI.Name               'print addin name in immediate window
        Debug.Print "Title: " & AI.Title
        Debug.Print "Author: " & AI.Author
        Debug.Print "Subject: " & AI.Subject
    Next AI
    
    Debug.Print vbCr & vbCr & "Add-Ins2 collection" & vbCr
    For Each AI In Application.AddIns2
        Debug.Print "---"
        On Error Resume Next
        Debug.Print "Name : " & AI.Name               'print addin name in immediate window
        Debug.Print "Title: " & AI.Title
        Debug.Print "Author: " & AI.Author
        Debug.Print "Subject: " & AI.Subject
    Next AI
    
    Dim CAI As COMAddIn
    Debug.Print "COM Add-Ins"
    Debug.Print vbCr & vbCr & "COM Add-Ins collection" & vbCr
    For Each CAI In Application.COMAddIns
        Debug.Print "---"
        On Error Resume Next
        Debug.Print "Desc : " & CAI.Description
        Debug.Print "ProgID: " & CAI.progID
        Debug.Print "Guid: " & CAI.GUID
    Next CAI
End Sub
 
Upvote 0
Solution
Thanks, that identified it as 3DxConnexion add-in, which is something my programmable mouse uses. I'll check with them to see what's up.
 
Upvote 0

Forum statistics

Threads
1,214,895
Messages
6,122,128
Members
449,066
Latest member
Andyg666

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top