View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
mangesh_yadav[_138_] mangesh_yadav[_138_] is offline
external usenet poster
 
Posts: 1
Default Excel Addins - Index or key


Hi

I am currently setting the Excel Addin "Analysis Toolpak" through th
sub Auto_Open using the following piece of code

Sub Auto_Open()
If (AddIns("Analysis ToolPak").Installed = False) Then
AddIns("Analysis ToolPak").Installed = True
End If
end sub

Now there is a problem if the OS of the user is using another languag
like french or italian. On opening the file, it gives an error sayin
index not found. This is obviously because the text "Analysis Toolpak
is "Utilitaire d'analyse" in french and it does not find the englis
text.

If I use Addins(1) this works fine in english but they are arranged i
ascending order, this would give a problem as I don't know at wha
number would the corresponding addin in another language be in th
list.

Any help on this one. Do these addins have some unique identifier o
key. Or if I can refer to its filename somehow.

Manges

--
mangesh_yada
-----------------------------------------------------------------------
mangesh_yadav's Profile: http://www.excelforum.com/member.php...fo&userid=1047
View this thread: http://www.excelforum.com/showthread.php?threadid=26916