Add-Ins Question

C

CWillis

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".
 
D

Dave Peterson

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.)
 
D

Dave Peterson

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.
 
C

CWillis

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.
 
D

Dave Peterson

I'd still look for the solution to the real problem though. Something ain't
right.
 
Top