I've been reimplementing some Access 97 programming to Access 2000, perhaps my first mistake.
I created a recordset:
Dim RateSet as Recordset
Set RateSet = CurrentDb.OpenRecordset ("RateSet",dbOpenDynaset)
I found the RateSet.FindFirst, .FindNext, and .FindLast methods were unavailable. I looked up the Recordset methods in the help, and find that a Recordset is no longer a DAO but an ADO. All I can use with and ADO is the .Find method which is restricted to a single comparison on a single column.
This is not progress in the right direction for me.
Have I overlooked an installation option, or an alternate method of opening an Access table as a DAO in a VBA module? Or am I going to be staying on Access 97 for a very long time to preserve my algorithms?
Thanks,
Harry
I created a recordset:
Dim RateSet as Recordset
Set RateSet = CurrentDb.OpenRecordset ("RateSet",dbOpenDynaset)
I found the RateSet.FindFirst, .FindNext, and .FindLast methods were unavailable. I looked up the Recordset methods in the help, and find that a Recordset is no longer a DAO but an ADO. All I can use with and ADO is the .Find method which is restricted to a single comparison on a single column.
This is not progress in the right direction for me.
Have I overlooked an installation option, or an alternate method of opening an Access table as a DAO in a VBA module? Or am I going to be staying on Access 97 for a very long time to preserve my algorithms?
Thanks,
Harry