I can use the following code in Word to show the Edit->Find dialog box:
Code:
Dim wordApp As New Word.Application
With wordApp
.Visible = True
.Documents.Open strFile
.Dialogs(wdDialogEditFind).Show
.ActiveDocument.Close
.Quit
Wend
Set wordApp = Nothing
There is no xlDialogEditFind index though. How can I search with the Excel Edit->Find dialog?