This topic has not yet been rated - Rate this topic

Dialogs Object (Word)

A collection of Dialog objects in Word. Each Dialog object represents a built-in Word dialog box.

Use the Dialogs property to return the Dialogs collection. The following example displays the number of available built-in dialog boxes.

MsgBox Dialogs.Count

You cannot create a new built-in dialog box or add one to the Dialogs collection. Use Dialogs(Index), where Index is the WdWordDialog constant that identifies the dialog box, to return a single Dialog object. The following example displays the built-in Open dialog box.

dlgAnswer = Dialogs(wdDialogFileOpen).Show

For more information, see Displaying built-in Word dialog boxes .

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.