
how can I move the cursor between fields......
The command to position a cursor on a field is setfocus.
In order for a field to receive the focus it must have it's taborder
property set to
true. Positioning order varies per the tabindex property. See VB help for
more details.
Example: Text1.setfocus will position the cursor on textbox1.
Hope this helps,
Mike D.