两个字符串比较StrComp问题?dim strT1 as string
dim strT2 as string    strT1="abcd"
    strT2="ABCD"    if strT1=strT2 then
       print "1:="
    else
       print "1:<>"
    end if    if StrComp(strT1,strT2,vbBinaryCompare)=0 then
       print "2:="
    else
       print "2:<>"
    end if请问这两种比较结果会永远一样吗???