Jacob Adams
Jacob Adams

Reputation: 3994

In Word, Programmatically Open New Document Dialog

I am looking for a way to programatically open the "New Document" dialog in Word 2007. It is the same one you get when you select File->New . You can also open it using the FileNew macro or the "New..." menu command. However, I have been unable to find a way to do this programmatically.

I have tried:

Application.Run MacroName:="FileNew"

and

Dialogs(wdDialogFileNew).Show

and

CommandBars.FindControl(ID:=5746).Execute

but both of these open the old dialog, not the new one that word 2007 uses.

Upvotes: 2

Views: 1416

Answers (3)

ColinBruce
ColinBruce

Reputation: 49

You could get the Command ID for the button and execute it?

Dim c As CommandBarControl
Set c = CommandBars.FindControl(ID:=18)
c.Execute

Control ID 18 is the word application ID for the New... button.

Upvotes: 1

Nick Spreitzer
Nick Spreitzer

Reputation: 10588

If a 'real' VBA command exists for open that dialog, I can't find it. However, I did find this utterly lame workaround via some quick googling:

SendKeys "%"
SendKeys "F"
SendKeys "N"

It does what you want though! Found it here http://www.eggheadcafe.com/software/aspnet/32228837/new-file-dialog-in-word-2.aspx

Upvotes: 2

Zoli
Zoli

Reputation: 1137

I think that you can just use:

Documents.Add

without any parameters.

Upvotes: 0

Related Questions