Colleagues,
The question in subject says it.
I, actually, need a date type expression in a comparison clause, i.e.
I'm kinda spoiled by VFP, where DATE() can return not only the current date, but any (valid) date if its call is given the arguments, i.e.
displays 12/31/2011.
Another way of composing a date data (in VFP, at least) is
I tried that in VdB - and it erred with "Expression expected" message.
AHWBGA!
Regards,
Ilya
The question in subject says it.
I, actually, need a date type expression in a comparison clause, i.e.
Code:
REPLACE Field1 WITH Field2 FOR DateField >= {certain date}
Code:
WAIT WINDOW DATE(2011,12,31)
Another way of composing a date data (in VFP, at least) is
Code:
m.ldMemVar = {^2011-12-31}
AHWBGA!
Regards,
Ilya