M
Maury Markowitz
I decided to use temp tables to implement a feature in my app, and I've found
that under Access 2000 it failes with the "a multi-step operation has
generated errors" error.
Looking into it, I find it fails every time at the same point in this code:
fieldcount = 0
While fieldcount < rstOrders.Fields.count
rstTempOrders.Fields(rstOrders.Fields(fieldcount).Name) =
rstOrders.Fields(fieldcount)
fieldcount = fieldcount + 1
Wend
I always dies when trying to copy field 31, "bookingNotes", which is a Text
field.
Any ideas? I can't find anything on google.
Maury
that under Access 2000 it failes with the "a multi-step operation has
generated errors" error.
Looking into it, I find it fails every time at the same point in this code:
fieldcount = 0
While fieldcount < rstOrders.Fields.count
rstTempOrders.Fields(rstOrders.Fields(fieldcount).Name) =
rstOrders.Fields(fieldcount)
fieldcount = fieldcount + 1
Wend
I always dies when trying to copy field 31, "bookingNotes", which is a Text
field.
Any ideas? I can't find anything on google.
Maury