Hopefully this should be an easy question. In java i think it\'s compareTo().
compareTo()
How do I compare 2 string variables to determine if they are the same?
I think this String.Equals is what you need.
Dim aaa = "12/31" Dim a = String.Equals(aaa, "06/30")
a will return false.