I have the following code in the VB6 project I just inherited.
Case Is > "S"
Case Is > "Q"
Case Is >= "A"
Case Is = "M"
The only one I sort of understand is the Case Is = “M”
What do the “>” (greater than) symbols represent?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Strings can be compared with greater than or less than just like numbers can. It should compare their ascii values, basically.
http://www.vbexplorer.com/VBExplorer/Focus/strings_tutorial_2.asp
http://msdn.microsoft.com/en-us/library/215yacb6(v=vs.80).aspx