if(VarContainingString =/!= OtherVarContainingString) Bug
Posted: 17 Oct 2019, 19:52
I think that this should speak for it's self.
Code: Select all
Var1:="+1"
Var2:="1"
msgbox,% Var1 "`n" Var2 "`nClearly they are different."
if( Var1 != Var2 )
msgbox, they are different but you won't get to see this message
Var1 = +1
Var2 = 1
msgbox,% Var1 "`n" Var2 "`nClearly they are different."
if( Var1 != Var2 )
msgbox, they are different but you won't get to see this message