View Single Post
 
Old 09-17-2018, 11:57 PM
nsv nsv is offline Windows 8 Office 2013
Novice
 
Join Date: Jul 2010
Location: Denmark
Posts: 17
nsv is on a distinguished road
Default Open macro selector (ALT+F8) in VBA

I wonder if it is possible to make a Word document start with the macro selector (ALT+F8) activated; something like this:
Code:
Private Sub Document_Open()

 MsgBox "Instruction:" & vbNewLine & _
 "" & vbNewLine & _
 "This document is a template with a number of macros for selecting the relevant icons."

ShowMacroSelector = True

End Sub
Of course this one does not work, but I hope you get the idea. I know that the instruction 'ShowVisualBasicEditor = True' works, but that is not what I am after.

NSV
Reply With Quote