Programatically Invoke "Pack & Go" wizard.

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

Guest

How to Programatically Invoke "Pack & Go" wizard of PowerPoint (or any other
MS office Program. I can then use the same concept for Powerpoint)?

Thanks in advance.
 
Hey I have tried Something might be this thing will help you to invoke "Pack
& Go" wizard of PowerPoint .

sub test
Dim sld as CommandBars
For Each sld In Application.CommandBars
If sld.Name = "Menu Bar" Then
If sld.Controls.Item(1).Caption = "&File" Then
sld.Controls.Item(1).Controls.Item(10).Execute
End If
End If
Next
End Sub

cheers
Amrish
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top