Use OR keyword.

If something = "BLAH" or something = "MORE BLAH" Then
do something.
End if

If you can multiple different cases you want to check you can also user Select Case.

SELECT CASE richtextbox1.txt

CASE 1
do something
CASE 2
do something
CASE 6,7,8,9
do something
END SELECT