Add-Ins Question

  • Thread starter Thread starter Guest
  • Start date Start date
I don't see it in Excel or Word (both 2002). Neither does a co-worker. That
doesn't mean it isn't there though. Is there anything we could have done to
turn it off or something we could do to turn it on? I have 26 options in my
pull-down Save as menu. The last is "DIF".
 
I've never seen it either.

I hate to suggest a re-install, but maybe????

(I was hoping someone who had seen this would chime in.)
 
Maybe you could use a little macro to save the file as an addin.

Someone just asked a very similar question and this was my response:

I'd use something like:

Option Explicit
Sub testme()
Dim fName As String
fName = Application.StartupPath & "\" & "custom.xla"
With ThisWorkbook
.IsAddin = True
Application.DisplayAlerts = False
.SaveAs Filename:=fName
Application.DisplayAlerts = True
End With
End Sub


Don't store the .xls in that XLStart folder, either.
 
Thanks Dave, that worked. That navigation toolbar is exactly what I needed.
Well, I really need to be able to stack my tabs at the bottom, but this is
the best possible alternative. Thanks again.
 
I'd still look for the solution to the real problem though. Something ain't
right.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top