I currently have one record (with various values) and three user constants with specific assigned values (e.g. names, etc.).
I can compare an edit box against one user like this:
if edit1.text = user1
then xxxx
This is all well, but how do I specify that the edit box must check between the three different users?
Example:
if edit1.text = user1 to user3
then xxxx
How Do I go about doing this?