With the current version there is an error when using the keyboard in the PopupDate.
In _dccalen.prg the following lines ( 565-574 ) should be changed, extra parameters must be added, otherwise an error appears since the vars aren't defined by a default in _dccalen2:
Code: Select all
...
ELSEIF mp1 = xbeK_ESC
_DCCalen2(aPopDate,DCCALEN_ABORT,bIsHoliday,aColors,bAction,nScale)
lOk := .f.
ELSEIF mp1 = xbeK_ENTER
_DCCalen2(aPopDate,DCCALEN_EXIT,bIsHoliday,aColors,bAction,nScale)
ELSEIF _DCHotKey( DC_LangMsg(DCMSG_OK), mp1)
_DCCalen2(aPopDate,DCCALEN_EXIT,bIsHoliday,aColors,bAction,nScale)
ELSEIF _DCHotKey( DC_LangMsg(DCMSG_CANCEL), mp1)
_DCCalen2(aPopDate,DCCALEN_ABORT,bIsHoliday,aColors,bAction,nScale)
ENDIF
...