Hi,

It's easy to add a (tableless) date field to a form.
But how can I make use of the calendar lookup functionality?
It is possible to call the calender itself (in a testjob):

static void selectDateJob(Args _args)
{
// Testjob: otherwise override the lookup method of the date field
    Args    args = new Args();
    FormRun formRun;
    Date myDate;
    ;
    args.name(formstr(sysDateLookUp));
    formRun = classFactory.formRunClass(args);
    formRun.init();
    formRun.run();
    formRun.wait();
    //myDate = formRun.DateValue(); // ???
}

But how can I retrieve the value of this calendar?
And how can I make this calendar stick to the date field?

Thanks,
/b









YAHOO! GROUPS LINKS




Reply via email to