What is the best way to compare in DF20.1 64bit from existing coding of
Code:
 
If ((left(sText,1) > ".") Begin
where sText = "*" which returns false in 64bit but true in 'old style'

This code returns true but is this the best solution?
Code:
If (Ascii(Left(sText,1)) > Ascii(".")) Begin
Julie