The Backwards. Can rs move bacKwards?

O

ooxx

hi,

If this is the code to do next,then what would be for the backwards?

Do Until .EOF
If ![NameX] = Me.TheName Then
I = ![DLefted]
End If
.MoveNext
Loop

then what will be if

Do Until .BOF
....
....

Thanks, woo
 
S

Stuart McCall

ooxx said:
hi,

If this is the code to do next,then what would be for the backwards?

Do Until .EOF
If ![NameX] = Me.TheName Then
I = ![DLefted]
End If
.MoveNext
Loop

then what will be if

Do Until .BOF
...
...

Thanks, woo

..MoveLast
Do Until .BOF
If ![NameX] = Me.TheName Then
I = ![DLefted]
End If
.MovePrevious
Loop
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top