DTPICKER: input date behavior not standard
Posted: Thu Nov 05, 2020 3:21 pm
Is it possible to have the standard input behavior for dates using DTPICKER? I mean, can I just input the digits like in the normal GETs? This is a sample:
EMG
Code: Select all
#include "FiveWin.ch"
#include "Dtpicker.ch"
FUNCTION MAIN()
LOCAL oDlg
LOCAL dDate := DATE()
DEFINE DIALOG oDlg
@ 1, 1 DTPICKER dDate
ACTIVATE DIALOG oDlg;
CENTER
RETURN NIL