I read somewhere that KIX does not support decimal values, only integers. First, is that still the case? If not, shouldn't this code work....?

$CompVal1 = 5.66

$CompVal2 = GetFileVersion("C:\Program Files\Some Application\App.EXE","FileVersion)
$CompVal2=VAL($CompVal2)

IF $CompVal1 > $CompVal2
? "Something...."
ELSE
? "Something else...."
ENDIF