Hi - is it possible to cycle through a recordset in com+ from the client i.e.
with objCom
.recCom.MoveFirst
while not .recCom.EOF
'do some stuff
.recCom.MoveNext
wend
end with
When I do this each call to recCom appears to reset the recordset so that I always return the first record hence infinite loop - is there a settng in com which can stop this happening or do I have to load the recordset onto the client? TIA
with objCom
.recCom.MoveFirst
while not .recCom.EOF
'do some stuff
.recCom.MoveNext
wend
end with
When I do this each call to recCom appears to reset the recordset so that I always return the first record hence infinite loop - is there a settng in com which can stop this happening or do I have to load the recordset onto the client? TIA