Application.Dialogs Property

Word Developer Reference

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.

Example

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

Visual Basic for Applications
  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.

Visual Basic for Applications
  With Dialogs(wdDialogFileOpen)
    .Name = "*.*"
    .Show
End With

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

Visual Basic for Applications
  
    Dialogs(wdDialogFilePrint).Execute

See Also