Prev: spin objects on the x-axis?
Next: Zoom out and leave content in one corner of the slide in ppt?
From: juwen on 2 Jun 2010 02:03 How to open a password protected powerpoint file by Excel macro? by the way,the cipher is known. Is it possible to do this? Thanks in advance,
From: Gordon on 2 Jun 2010 02:43 "juwen" <juwen(a)discussions.microsoft.com> wrote in message news:99826EBC-7070-47A1-AAB5-4151CB24196E(a)microsoft.com... > > How to open a password protected powerpoint file by Excel macro? by the > way,the cipher is known. > > Is it possible to do this? > > Thanks in advance, > > > How is this related to PowerPoint?
From: John Wilson john AT technologytrish.co DOT on 2 Jun 2010 10:20 As far as I know in PowerPoint there's no method of opening a password protected file using vba from Excel (or even in directly PowerPoint vba) Unlike in Excel you cannot specify the password as an argument. -- john ATSIGN PPTAlchemy.co.uk Free PPT Hints, Tips and Tutorials http://www.pptalchemy.co.uk/powerpoint_hints_and_tips_tutorials.html "juwen" wrote: > > How to open a password protected powerpoint file by Excel macro? by the > way,the cipher is known. > > Is it possible to do this? > > Thanks in advance, > > >
From: Chirag on 2 Jun 2010 14:58 PowerPoint does not natively provide a way to open password-protected presentations. You might want to look at my free openppt.dll that allows you to supply a password to open a password protected presentation. To use it from Excel, you would have to create an instance of PowerPoint using CreateObject() and pass the instance as the first parameter to the OpenPresentation() function. More information on openppt.dll is available at http://officeone.mvps.org/openppt/ - Chirag PowerShow - View multiple PowerPoint slide shows simultaneously http://officeone.mvps.org/powershow/powershow.html "juwen" <juwen(a)discussions.microsoft.com> wrote in message news:99826EBC-7070-47A1-AAB5-4151CB24196E(a)microsoft.com... > > How to open a password protected powerpoint file by Excel macro? by the > way,the cipher is known. > > Is it possible to do this? > > Thanks in advance,
From: king21c on 2 Jun 2010 22:56 I am doing as follows: 1.Place the openppt.dll in the Windows folder (C:\Windows). 2.plug-in a new module 3.write code in new module: '--------------------------------------------- Sub Test() Dim Pres As Presentation Set Pres = OpenPresentation(Application, _ "d:\prespass.ppt", "123", _ False, False, True) End Sub '----------------------------------------------- Error: Run-time Error'424' Object Required How I am going to do. Thank you "Chirag" <Chirag(a)discussions.microsoft.com> д����Ϣ����:eFIDlWoALHA.4400(a)TK2MSFTNGP05.phx.gbl... > PowerPoint does not natively provide a way to open password-protected > presentations. You might want to look at my free openppt.dll that allows > you to supply a password to open a password protected presentation. To use > it from Excel, you would have to create an instance of PowerPoint using > CreateObject() and pass the instance as the first parameter to the > OpenPresentation() function. > > More information on openppt.dll is available at > http://officeone.mvps.org/openppt/ > > - Chirag > > PowerShow - View multiple PowerPoint slide shows simultaneously > http://officeone.mvps.org/powershow/powershow.html > > "juwen" <juwen(a)discussions.microsoft.com> wrote in message > news:99826EBC-7070-47A1-AAB5-4151CB24196E(a)microsoft.com... >> >> How to open a password protected powerpoint file by Excel macro? by the >> way,the cipher is known. >> >> Is it possible to do this? >> >> Thanks in advance, >
|
Next
|
Last
Pages: 1 2 Prev: spin objects on the x-axis? Next: Zoom out and leave content in one corner of the slide in ppt? |