I've been using Pdoxwin5 to develop an application for a client who
has version 1, taking care not to use any non-v1 methods and
properties.
The following bit of code in the open method of an undefined
field gets the date of the most recent record and displays it:
var
TCdate TCursor
endVar
TCdate.open("insertad.db")
self.value = TCdate.cMax("Date")
TCdate.close()
Works fine in v5, but running on v1 I get an error message saying
that date is not a number.
Sure enough, the reference guide for v1 says that cMax takes a
number as its argument. And so does the ref. guide for v5.
It's not an insurmountable problem, but does anyone have any idea
what's changed?
Stephen Brown
London