Specifying a Timeout for a Dialog Box : Dialogs « Application « VBA / Excel / Access / Word






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

1.Set the contents of the File Name text box in the Save As dialog box in Word and then display the dialog box
2.Returning the Button the User Chose in a Dialog Box
3.cancel a procedure if the user clicked the Cancel button in a dialog box:
4.Display one of Excel's built-in dialog boxes and let the user make the choices: by using the Application object's Dialogs property.
5.To display Excel's Open dialog box
6.Using an Application's Built-in Dialog Boxes from VBA: wdDialogFileOpen