View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
[email protected] aaronfude@gmail.com is offline
external usenet poster
 
Posts: 26
Default Order of Excel Addin

As it always happens, right after I post I find a workaround (but not a
solution). The following ugly hack fixes the problem:


' If Not oAddin.Installed Then oAddin.Installed = True
oAddin.Installed = False
oAddin.Installed = True

Still, I would like to hear your opinion on what is going on!

Aaron Fude