Hello,

I need to make a search engine search for multiple words from one command button.

This line works fine and will find "hello".

VB6 CODE:
RTFText2.Find "HELLO", RTFText2.SelStart + 1, Len(RTFText2.TextRTF)

This is what I want to do.

RTFText2.Find "HELLO" OR "GOODBYE" OR "OKAY", RTFText2.SelStart + 1, Len(RTFText2.TextRTF)

How can I do this?