If you like a challenge ...
After a successful search, the found text is selected in the memo field. So:
You could, after the {Ctrl+F}, issue a {Ctrl+C}, to copy the text to the clipboard. Then use
Code:
If _cliptext== ""
to test whether the clipboard contains anything - ie whether your search text was found.
There are certainly pitfalls:
1) Before doing the second and subsequent {Ctrl+F} you will have to deselect the selected text. You can achieve this by using
Code:
Keyb "{RightArrow}{LeftArrow}"
(at the risk of sometimes misplacing the cursor by a character) because moving the cursor will clear the selection.
2) You probably have to clear the clipboard before each search as well:
If you're really keen, I think it could all work ;-)