Error Message when Power Point InVisible Mode

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear All ,

Presentations (unknown member) : Invalid request. The PowerPoint Frame
window does not exist.
This is the Error which i Receve When i set the Visible Property to False
powerpoint.Visible = msoFalse

I have observed that when running Microsoft Word Application in Invisible
Mode through VBA then the processing is faster then visble Mode.

My Question is that :-)
Is that same with PowerPoint application also. If yes then how would i open
a powerpoint applcation with the Visile Mode set to False

Thanks & Regards
Abhishake
 
Abhishake said:
Dear All ,

Presentations (unknown member) : Invalid request. The PowerPoint Frame
window does not exist.
This is the Error which i Receve When i set the Visible Property to False
powerpoint.Visible = msoFalse

I have observed that when running Microsoft Word Application in Invisible
Mode through VBA then the processing is faster then visble Mode.

My Question is that :-)
Is that same with PowerPoint application also. If yes then how would i open
a powerpoint applcation with the Visile Mode set to False


Presentations.Open("filename",,,msoFalse)
' the second and third parameters, left at default here, are
' ReadOnly
' WithTitle
' and can be set true or false depending on your needs
 
Back
Top