Create Customized Wizard for Data Entry

J

jt

Hello,

I am interested in creating a couple of wizards for my database application,
so that the user can enter data easily.

I am having difficulty in writing the necessary code for the 'back', 'next',
'finish' buttons to make the wizard run properly.

Do you have an insight?

Your help will be greatly appricated!
 
A

Arvin Meyer [MVP]

Here's the code for each of the 4 command buttons:

DoCmd.GoToRecord , , acFirst
DoCmd.GoToRecord , , acPrevious
DoCmd.GoToRecord , , acNext
DoCmd.GoToRecord , , acLast

You'll need to perform some conditional tests to avoid errors, like checking
your position.

--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads
http://www.datastrat.com
http://www.mvps.org/access
 
Top