Hi, I have a question regarding the use of CInt and/or Char member functions. Let's say I have an input string, Dim input As String = "7.5" and I need to check if this string(number) is either 7 or 8 (or so on....), I use the CInt function and compare the value using If-statement. "7.5" is supposed to return false to me but CInt now turns it into 8 (so it returns true now) Any ideas to fix that? thanks.