G
Guest
I have a form that I use to create routes using mappoint and return a route
name to a table. It worked fine until I split the database into a front and
backend.
Now it tells me "operation not supported" when I try to find and write to a
record in the backend table.
Here is some of my code:
................................
Dim RstMembers As Recordset
Set RstMembers = db.OpenRecordset("Members")
‘……………………………………………………………
‘. . . . a bunch of code to create routes in MapPoint …
‘……………………………………………………………
'MATCH RECORDS USING SEEK ON MEMBER ID
RstMembers.Index = "PrimaryKey"
RstMembers.Seek "=", objRoute.Waypoints.Item(inx).NAME
RstMembers.Edit
RstMembers!HVPacket = "Route " & grp
RstMembers.Update
Next inx
At the "RstMembers.Index =" line it tells me that the operation is not
supported for this type of object.
Do I have to do something different now that "Members" table is linked?????
Thanks for any help.
Dave Werlin
name to a table. It worked fine until I split the database into a front and
backend.
Now it tells me "operation not supported" when I try to find and write to a
record in the backend table.
Here is some of my code:
................................
Dim RstMembers As Recordset
Set RstMembers = db.OpenRecordset("Members")
‘……………………………………………………………
‘. . . . a bunch of code to create routes in MapPoint …
‘……………………………………………………………
'MATCH RECORDS USING SEEK ON MEMBER ID
RstMembers.Index = "PrimaryKey"
RstMembers.Seek "=", objRoute.Waypoints.Item(inx).NAME
RstMembers.Edit
RstMembers!HVPacket = "Route " & grp
RstMembers.Update
Next inx
At the "RstMembers.Index =" line it tells me that the operation is not
supported for this type of object.
Do I have to do something different now that "Members" table is linked?????
Thanks for any help.
Dave Werlin