Related possibly to
https://support.dataaccess.com/Forum...esult-in-64bit
and thus to
https://support.dataaccess.com/Forum...DF_LOCALE_CODE

I put shortcuts into my cMyDateform so that a single key B (or b) could (for instance) insert the month-start date, E for month end, Y for Year start, and T for Today. Since 20.1 it has ceased to work whether in 32 or 64 bit machines. As all my chosen keys are in the low aAscii range I though it just just work. Suggestions?

Code:
    //idea from from csyintellisense mixin, allow hot keys in dates
    Procedure Key Integer iKey Returns Integer
        Date dToday dTemp dDateNow 


        Move (CurrentDateTime()) to dToday


        If ((Character(iKey) = "T") OR (Character(iKey) = "t")) Begin
            Set Value to dToday
        End
        Else If ((Character(iKey) = "B") OR (Character(iKey) = "b")) Begin
             Get FirstDayInMonth dToday to dTemp
             Set Value to dTemp
        End