Page 1 of 1

DTPICKER: input date behavior not standard

Posted: Thu Nov 05, 2020 3:21 pm
by Enrico Maria Giordano
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:

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
EMG