D
dhstein
I have code like this:
Set rs1 = CurrentDb.OpenRecordset("MyTable")
rs1.Index = "MyCompositeIndex"
rs1.Seek "=", Field1, Field2, Field3
If Not rs1.NoMatch Then
' Calculations and Edits to fields are done here
..
..
End If
This all works fine on my stand-alone database. Now I've split the database
so it can run on the network and I get the error message:
Error 3251 Operation is not supported for this type of object.
So my question is, how do I seek - or find a record that satisfies a
composite group of criteria in a networked database. I need to get the
record and perform a number of calculations and then do an update to the
fields. Thanks for any help you can provide.
Set rs1 = CurrentDb.OpenRecordset("MyTable")
rs1.Index = "MyCompositeIndex"
rs1.Seek "=", Field1, Field2, Field3
If Not rs1.NoMatch Then
' Calculations and Edits to fields are done here
..
..
End If
This all works fine on my stand-alone database. Now I've split the database
so it can run on the network and I get the error message:
Error 3251 Operation is not supported for this type of object.
So my question is, how do I seek - or find a record that satisfies a
composite group of criteria in a networked database. I need to get the
record and perform a number of calculations and then do an update to the
fields. Thanks for any help you can provide.