Header
PowerPoint tips, hints and tutorials that will change your presentations for ever!

INDEX

 

Jigsaws
Sounds
Video
Custom Shows
vba code
NaviSlides
Games for teachers
Bullets
Triggers
Security
Flash Cards
Multiple Instances
PowerPoint 2007
Mail Merge
Random events
Animation
Hyperlinks
Set spellcheck language


Home buttonTutorial buttonContact buttonProducts button

AddIns in PowerPoint

AddIns can be very useful but sometimes they can cause problems and you may want to check what AddIns you have,

In 2007 and 2010 you can go to Options > AddIns to check and there are similar checks in earlier versions (Tools menu) but this may not reveal AddIns that are loaded for all users from the HKLM hive of the registry.

This code can still miss some AddIns but will give you a better idea!

Sub chex()
Dim oadd As AddIn
Dim ocom As COMAddIn
Dim strrep As String
Dim strloaded As String
strrep = "AddIns" & vbCrLf & "--------" & vbCrLf
For Each oadd In Application.AddIns
If oadd.Loaded = 0 Then strloaded = " /Not Loaded" Else strloaded = " /Loaded"
strrep = strrep & oadd.Name & strloaded & vbCrLf
Next
strrep = strrep & vbCrLf & "Com AddIns" & vbCrLf & "--------------" & vbCrLf
For Each ocom In Application.COMAddIns
If ocom.Connect = False Then strloaded = " /Not Connected" Else strloaded = " /Connected"
strrep = strrep & ocom.Description & strloaded & vbCrLf
Next ocom
MsgBox strrep
End Sub

Don't know how to use - see here

 

 

Back to the Index Page

POWERPOINT BLOG

Articles on your favourite sport

Free Microsoft PowerPoint Advice, help and tutorials, Template Links
This website is sponsored by Technology Trish Ltd
© Technology Trish 2007
Registered in England and Wales No.5780175
PowerPoint® is a registered trademark of the Microsoft Corporation