DTPICKER: input date behavior not standard

Post Reply
User avatar
Enrico Maria Giordano
Posts: 7355
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Contact:

DTPICKER: input date behavior not standard

Post 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
Post Reply