Application.Dialogs property (Word)

Returns a Dialogs collection that represents all the built-in dialog boxes in Word. Read-only.

Syntax

expression. Dialogs

expression A variable that represents an Application object.

Remarks

For information about returning a single member of a collection, see Returning an object from a collection.

For a list of built-in dialog boxes, see the WdWordDialog enumeration.

Example

This example displays the built-in Find dialog box, with "Hello" in the Find What box.

Dim dlgFind As Dialog 
 
Set dlgFind = Dialogs(wdDialogEditFind) 
 
With dlgFind 
 .Find = "Hello" 
 .Show 
End With

This example displays the built-in Open dialog box showing all file types.

With Dialogs(wdDialogFileOpen) 
 .Name = "*.*" 
 .Show 
End With

This example prints the active document, using the settings from the Print dialog box.

Dialogs(wdDialogFilePrint).Execute

See also

Application Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.