Should I expect the message "yes" or "no" from the following code? local $value = 0
if $value = "abcdef" Then
msgbox(0,"","yes")
else
msgbox(0,"","no")
endif Note: $value can contain both numbers or texts in my program and I want the test to be Case insensitive...