In the line where you are comparing the strings, you should convert both to either Upper or Lower case, that will make the comparison case independant.

VB Code:
  1. If UCase(String1) = UCase(String2)....