As discussed in tip #33, the Move method has some interesting uses that aren't apparent at first glance.
Another use is as follows:
rstData.Edit ... rstData.Move 0 ' Cancel the edit.
As the comment indicates, Move 0 will have a similar affect to MoveNext by canceling the Edit (or AddNew). However, this is achieved without the hassles of testing or trapping for EOF as would normally be required.