I am opening a recordset from a table and trying to set the index of the recordset and then go to the first record.
Set rst = dbs.OpenRecordset(“tblRates”, dbOpenDynaset)
rst.Index = “SYM” ‘ . . . . . . . < = = = = = = = = = = = = ''KWVH this line tells me that "Operation is not supported for this type of object"
rst.MoveFirst
The second line shows that the operation is not supported. The tblRates has two indices, Pkey (Unique) and SYM(not unique). Is this another openDynaset vs Opentable thing?
Any help is greatly appreciated.
Ken