You mean like this?Is there any way to Call the Built-In Function that gets called when you hit the "Find All" button of the "Find and Replace" dialog box?
Application.Dialogs(130).Show
SendKeys ("%i")
DoEvents
SendKeys ("%i")
Application.CommandBars.FindControl(ID:=1849).Execute
This is great. What purpose does sending ALT+i serve? It seems to work without it.Is this what you are after?
VBA Code:SendKeys ("%i") DoEvents SendKeys ("%i") Application.CommandBars.FindControl(ID:=1849).Execute
This one does not include the "Find All" option.You mean like this?
Code:Application.Dialogs(130).Show