简体   繁体   中英

excel not responding after closing Find menu that is opened with vba

I have created a button in a excel sheet that opens the Find menu (ctrl+f).

Sub Button6_Click()

Application.Dialogs(xlDialogFormulaFind).Show

End Sub

After the search is done and one closes this menu excel doesn't respond anymore and closes itself. Any ideas why?

Also, I don't get the exact same find dialog as when I use ctrl+f. Is there maybe a way to use keyboard-functions in vba?

Why not use ctrl+f instead of the button. Because my colleagues are not quite good with excel and that already is too much to remember for them :)

This is how to mimic a key press in VBA ^ is Ctrl

Sub Button6_Click()

Application.SendKeys ("^f")

End Sub

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM