M
mwaller
I need to disply the navigation menu (specifically the 'go to page...'
dialog where all the pages are listed) programatically through a VB
macro (in response to a button press).
There's plenty of advice about on how to prevent this dialog being
displayed, but none on how to show it! (Google is not always my
friend!)
Is this dialog available in VB through the document model, or can I
mimic a right button click programatically to display it?
I've tried iterating through the available commandbars using the
following, but I get two commandbars that I cannot seem to show or do
anything with
For Each cmdbar In CommandBars
If cmdbar.Name = "Slide Show" Then
MsgBox "'Slide show'command bar is in the collection."
End If
Next
Any help gratefully received
mwaller
dialog where all the pages are listed) programatically through a VB
macro (in response to a button press).
There's plenty of advice about on how to prevent this dialog being
displayed, but none on how to show it! (Google is not always my
friend!)
Is this dialog available in VB through the document model, or can I
mimic a right button click programatically to display it?
I've tried iterating through the available commandbars using the
following, but I get two commandbars that I cannot seem to show or do
anything with
For Each cmdbar In CommandBars
If cmdbar.Name = "Slide Show" Then
MsgBox "'Slide show'command bar is in the collection."
End If
Next
Any help gratefully received
mwaller