ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Library Not Registered (https://www.excelbanter.com/excel-programming/415102-library-not-registered.html)

Jay

Library Not Registered
 
I'm running the following code in an Excel macro, to open up a powerpoint
document from within Excel. It works fine on my computer and on the
computers of two other users. When I try to run it on one computer, though,
I get an error message "Library Not Registered" when it gets to the line "Set
app = New PowerPoint.Application". Any thoughts of how to fix this would be
greatly appreciated...THANKS!

Function GetPPT() As PowerPoint.Presentation
'this procedure opens a powerpoint presentation for output
Dim app As PowerPoint.Application
Dim strFile As String


strFile = Application.GetOpenFilename("(*.ppt), *.ppt", , "Open File")

If strFile = "False" Then

Else
Set app = New PowerPoint.Application
app.Visible = msoTrue
Set GetPPT = app.Presentations.Open(Filename:=strFile, ReadOnly:=msoFalse)
End If

End Function


JLGWhiz

Library Not Registered
 
Here is one explanation:

http://support.microsoft.com/kb/274038

"Jay" wrote:

I'm running the following code in an Excel macro, to open up a powerpoint
document from within Excel. It works fine on my computer and on the
computers of two other users. When I try to run it on one computer, though,
I get an error message "Library Not Registered" when it gets to the line "Set
app = New PowerPoint.Application". Any thoughts of how to fix this would be
greatly appreciated...THANKS!

Function GetPPT() As PowerPoint.Presentation
'this procedure opens a powerpoint presentation for output
Dim app As PowerPoint.Application
Dim strFile As String


strFile = Application.GetOpenFilename("(*.ppt), *.ppt", , "Open File")

If strFile = "False" Then

Else
Set app = New PowerPoint.Application
app.Visible = msoTrue
Set GetPPT = app.Presentations.Open(Filename:=strFile, ReadOnly:=msoFalse)
End If

End Function


Jay

Library Not Registered
 
YIKES! Any other advice LOL? I'll keep reading through this to see if I can
figure it out. Thanks,

Jay

"JLGWhiz" wrote:

Here is one explanation:

http://support.microsoft.com/kb/274038

"Jay" wrote:

I'm running the following code in an Excel macro, to open up a powerpoint
document from within Excel. It works fine on my computer and on the
computers of two other users. When I try to run it on one computer, though,
I get an error message "Library Not Registered" when it gets to the line "Set
app = New PowerPoint.Application". Any thoughts of how to fix this would be
greatly appreciated...THANKS!

Function GetPPT() As PowerPoint.Presentation
'this procedure opens a powerpoint presentation for output
Dim app As PowerPoint.Application
Dim strFile As String


strFile = Application.GetOpenFilename("(*.ppt), *.ppt", , "Open File")

If strFile = "False" Then

Else
Set app = New PowerPoint.Application
app.Visible = msoTrue
Set GetPPT = app.Presentations.Open(Filename:=strFile, ReadOnly:=msoFalse)
End If

End Function


Peter T

Library Not Registered
 
In the Tools menu, References, if you see any references marked MISSING,
uncheck close the dialog and start again

Scroll down and check "Microsoft Powerpoint x.0 Object Library" where x
refers to the Office version.

If there's any possibility the file will be used with in lower version,
forget about the reference (indeed remove it if it exists) and adapt to
"Late Binding".
Briefly, this means changing and PP related declarations to "As Object",
also changing any PP constants to their intrinsic values (not that I see any
in your code snippet).

Change
Function GetPPT() As PowerPoint.Presentation
Dim app as PowerPoint.Application
Set app = New PowerPoint.Application
to
Function GetPPT() As Object
Dim app as Object
Set app = CreateObject("powerpoint.application")

Elsewhere you will probably need to change other As PowerPoint.something to
As Object

Code may run slightly slower (though you might not notice) and you will lose
intellisense.

Regards,
Peter T

"Jay" wrote in message
...
I'm running the following code in an Excel macro, to open up a powerpoint
document from within Excel. It works fine on my computer and on the
computers of two other users. When I try to run it on one computer,
though,
I get an error message "Library Not Registered" when it gets to the line
"Set
app = New PowerPoint.Application". Any thoughts of how to fix this would
be
greatly appreciated...THANKS!

Function GetPPT() As PowerPoint.Presentation
'this procedure opens a powerpoint presentation for output
Dim app As PowerPoint.Application
Dim strFile As String


strFile = Application.GetOpenFilename("(*.ppt), *.ppt", , "Open File")

If strFile = "False" Then

Else
Set app = New PowerPoint.Application
app.Visible = msoTrue
Set GetPPT = app.Presentations.Open(Filename:=strFile, ReadOnly:=msoFalse)
End If

End Function





All times are GMT +1. The time now is 08:05 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com