Specifying a Timeout for a Dialog Box : Dialogs « Application « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- Application
- Dialogs
Specifying a Timeout for a Dialog Box
Sub dlg2()
With Dialogs(wdDialogToolsOptions)
.DefaultTab = wdDialogToolsOptionsTabUserInfo
.show (15000)
End With
End Sub
Related examples in the same category