This is not documented anywhere that I can find, but the LongClick of the EditText is valid.
All you have to do is insert this sub:
Sub text_LongClick ' Put your EditTexet name in place of "text"
Return True
End Sub
in your code. It catches the long click, and by returning True it consumes it before the OS acts on it.