-Frank
Microsoft Excel MVP
Dolphin Technology Corp.
http://isaacsf.home.mindspring.com/vba
Geoffrey Gladstein wrote in message <363CA131...@earthlink.net>...
Frank Isaacs wrote:
I'm using Win95. I don't know of anything installed for encryption except
for Netscape.
-Frank
Microsoft Excel MVP
Dolphin Technology Corp.
http://isaacsf.home.mindspring.com/vba
Geoffrey Gladstein wrote in message <363D23C8...@earthlink.net>...
Frank Isaacs wrote:
First of all--thanks very much for your help.
Anyway, the box that the message is in has a heading "PC Crypto add-in for
Microsoft Excel" --- Is it possible that this is a program I downloaded from
the net -- if so how do I get rid of it? I can't find any .xla programs that
sound like this, and all the .xla programs seem to be original microsoft
programs.
By the time you get through diagnosing this, though, it may be that a wipe &
re-install will be easier. Not necessarily recommended, but potentially
easier...
HTH -
-Frank
Microsoft Excel MVP
Dolphin Technology Corp.
http://isaacsf.home.mindspring.com/vba
Geoffrey Gladstein wrote in message <363E699C...@earthlink.net>...
The following macro which I changed to utilize a named sheet instead of wiping
out whatever sheet is first. It will list all the addins and whether to addin
box is checked off or not. It may give you further insight because it also
lists the datasets.
Sub EnumerateAddIns()
Worksheets("AddinsSheet").Rows(1).Font.Bold = True
Worksheets("AddinsSheet").Range("a1:d1").Value = _
Array("Name", "Full Name" & " " & Now(), "Title
EnumerateAddIns()", "Installed")
For i = 1 To AddIns.Count
Worksheets("AddinsSheet").cells(i + 1, 1) = AddIns(i).Name
Worksheets("AddinsSheet").cells(i + 1, 2) = AddIns(i).FullName
Worksheets("AddinsSheet").cells(i + 1, 3) = AddIns(i).Title
Worksheets("AddinsSheet").cells(i + 1, 4) = AddIns(i).Installed
Worksheets("AddinsSheet").cells(i + 1, 5).Value = i
Next
Worksheets("AddinsSheet").Range("a1").CurrentRegion.Columns.AutoFit
End Sub
HTH, I neglected to add a comment where the macro came from so I can't tell
you, but I have found it useful. (Think it came from MS KB)
David McRitchie
My Excel Pages: http://members.aol.com/dmcritchie/excel/excel.htm