I wrote quite a large program a few years ago with Access 97, using a lot of references to fields such as :
Dim dbPf As Database
Dim rcdInvDet As Recordset
Dim fldClo As Field
Set dbPf = DBEngine.Workspaces(0).Databases(0)
Set rcdInvDet = dbPf.OpenRecordset(“InvoiceDetails”)
Set fldClo = rcdInvDet![Closed]
But MSAccess 2002 doesn’t seem to recognize the last statement anymore, provoking an error at that last line.
Has something changed in 2002 ? I would like to get it working again, for a new user. Any help would be appreciated.