Supercharge your PowerPoint productivity with
Supercharge your PPT Productivity with PPTools - Click here to learn more.

Proud member of

PPTools

Image Export converts PowerPoint slides to high-quality images.

PPT2HTML exports HTML even from PowerPoint 2010 and 2013, gives you full control of PowerPoint HTML output, helps meet Section 508 accessibility requirements

Merge Excel data into PowerPoint presentations to create certificates, awards presentations, personalized presentations and more

Resize your presentations quickly and without distortion

Language Selector switches the text in your presentation from one language to another

FixLinks prevents broken links when you distribute PowerPoint presentations

Shape Styles brings styles to PowerPoint. Apply complex formatting with a single click.

Message: Some controls on this presentation can't be activated. They might not be registered on this computer.

Problem

You open a presentation and see an error message like:

Some controls on this presentation can't be activated. They might not be registered on this computer.

Microsoft Office includes several Active-X Controls (also called OLE Controls) that users can add to slides. These are called:

When these are used in presentations, they generally work on any PC that has a copy of PowerPoint (though not in the free PowerPoint viewer).

It's also possible to add other Active-X controls that happen to be installed on their computers. These won't work on other computers unless they happen to be installed there too. If not, the computer user will see the message above.

To prevent the message, try any of the following:

Or simply ignore the message, accept that the controls will not work on your computer and view the presentation as best you can.

Here's a little VBA that'll help locate the problem controls, tell you what slide they're on, they name of the shape containing the control and the "Program ID" of the control, which can give you some idea what type of control it is and possibly where it came from.

Sub ActiveXMarksTheSpot()

Dim oSh as Shape
Dim oSl as Slide

For Each oSl in ActivePresentation.Slides
For Each oSh in oSl.Shapes

If oSh.Type = msoOLEControlObject Then

MsgBox "Slide#: " & oSl.SlideIndex & VBCrLf _
    & "Shape: " & oSh.Name & VBCrLf )
    & oSh.OLEFormat.ProgID 

End If
Next   ' Shape
Next  ' Slide
End Sub

See How do I use VBA code in PowerPoint? to learn how to use this example code.


Did this solve your problem? If so, please consider supporting the PPT FAQ with a small PayPal donation.
Page copy protected against web site content infringement by Copyscape Contents © 1995 - 2022 Stephen Rindsberg, Rindsberg Photography, Inc. and members of the MS PowerPoint MVP team. You may link to this page but any form of unauthorized reproduction of this page's contents is expressly forbidden.

Supercharge your PPT Productivity with PPTools

content authoring & site maintenance by
Friday, the automatic faq maker (logo)
Friday - The Automatic FAQ Maker

Message: Some controls on this presentation can't be activated. They might not be registered on this computer.
http://www.pptfaq.com/FAQ01109_Message-_Some_controls_on_this_presentation_can-t_be_activated-_They_might_not_be_registered_on_this_computer-.htm
Last update 07 June, 2011
Created: